body.transform .section.transform-hero {
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 1rem;
}

.section.transform-hero.has-speaker .container {
  margin-bottom: 2rem;
}

body.transform #canvas {
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: auto;
  height: 600px;
  opacity: 0.5;
  top: 8rem;
}
.transform-hero .container > .row-fluid {
  justify-content: center;
}
.transform-hero .col {
  max-width: 35rem;
}
.transform-hero header {
  margin-bottom: 0.75rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  overflow: hidden;
}
.transform-hero .description {
  text-align: center;
  position: relative;
  margin-bottom: 0.75rem;
}

.transform-hero .subheader {
  font-size:  1.6rem;
  letter-spacing: 0.01rem;
  font-weight: 500;
  color: var(--green-med);
  margin-bottom: 1rem;
}
.transform-hero .subheader .highlight {
  font-size: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  color: var(--highlight-med);
}
.transform-hero .description {
  text-align: left;
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 1rem;
}
.transform-hero .description:before {
  content: '';
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0;
  right: auto;
  border-left: 2px solid var(--green-med);
}
.transform-hero .disclaimer {
  color: var(--highlight-med);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .1rem;
  margin-top: 0.5rem;
  opacity: 1;
}
.section.transform-hero .buttons {
  margin-top: 1.25rem;
}
.section.transform-hero .featured-speaker {
  display: flex;
  flex-direction: column;
  background: var(--purple-light);
  position: absolute;
  line-height: 0;
  bottom: 0;
  left: 0; 
  right: 0; 
  margin-inline: auto; 
  width: fit-content;
  z-index: 2;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: fadeInBottom 0.5s forwards 1s ease-out;
  transition: background 0.2s ease;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(1.25rem); 
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.transform-hero .featured-speaker:hover {
  background: var(--white-sub);
}

.section.transform-hero .speaker-header {
  position: relative;
  padding: 0.25rem;
  text-align: center
}
.section.transform-hero .speaker-header span {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
  -webkit-background-clip: text;
  font-weight: 600;
  font-style: italic;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  line-height: 100%;
  background-color: var(--highlight-med);
  background-image: linear-gradient(to right, var(--green-light) 0, var(--highlight-light) 100%);
}
.section.transform-hero .speaker-header:before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--transform-dark);
  opacity: 0.5;
}
.section.transform-hero .speaker-inner {
  padding: 0.5rem 0.65rem;
  display flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--highlight-med);
  display: flex;
}
.section.transform-hero .speaker-photo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--highlight-med);
}
.section.transform-hero .speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section.transform-hero .speaker-details {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.15rem;
}
.section.transform-hero .speaker-name {
  font-family: var(--poppins);
  font-size: 0.85rem;
  line-height: 125%;
  font-weight: 600;
}
.section.transform-hero .speaker-title {
  font-size: 0.5rem;
  text-transform: uppercase;
  line-height: 125%;
  font-weight: 500;
  letter-spacing: 0.015rem;
}
.section.transform-hero .speaker-logo {
  filter: brightness(0) invert(1);
  margin-top: 0.35rem;
}
.section.transform-hero .promo-link {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  text-align: center;
  display: block;
  line-height: 80%;
}
.section.transform-hero .promo-link img {
  line-height: 0;
}
.section.transform-hero .badge-text {
  color: var(--purple-dark);
  font-size: 0.65rem;
}
#header-logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem;
}
#header-logo svg {
  width: 6rem;
}
#header-logo .logo-lmnt {
  fill: var(--purple-dark);
}
@media screen and (min-width: 767px) {
  .section.transform-hero .featured-speaker:after {
    border-top: .5rem solid var(--purple-light);
    bottom: -.45rem;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    margin: 0 auto;
    transition: border-top-color 0.2s ease;
  }
  .section.transform-hero .featured-speaker:hover:after {
    border-top: .5rem solid var(--white-sub);
  }
}
@media screen and (max-width: 767px) {
  .section.transform-hero .featured-speaker {
    bottom: 1.5rem;
  }
  .section.transform-hero.has-speaker .container {
    margin-bottom: 3.5rem;
    padding-top: 0.5rem;
  }
  .promo-badge {
    height: 2rem !important;
    width: auto !important;
  }
  .badge-text {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .transform-hero .subheader {
    font-size: 6.3vw;
    margin-bottom: 6vw;
  }
  .transform-hero .description {
    padding-left: 0;
    font-size: 0.85rem;
    margin-bottom: 6vw;
  }
  .transform-hero .description:before {
    content: none;
  }
  .transform-hero .preheader {
    font-size: 0.85rem;
  }
  .transform-hero .buttons {
    width: 100%;
  }
  .transform-hero a.button {
    margin-top: 0;
  }
  .transform-hero header {
    margin-bottom: 0.25rem;
  }
}