/* Layout */
.spotdev-subpage-hero {
  min-height: 577px;
  height: auto;
  display:flex;
  align-items:stretch;
  justify-content: center;
  position: relative;
  inset: 0;
  overflow: hidden;
}
.spotdev-subpage-hero::before{
  content:"";
  position:absolute; inset:0;
  background: rgb(249 194 77 / 45%);
  z-index: 1;
}
.spotdev-subpage-hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, #FFBE29 30.25%, rgba(255, 190, 41, 0.00) 58.33%);
}

.spotdev-subpage-hero-images {
  overflow: hidden;
  width: 100%;
  position: absolute;
  height: auto;
  z-index: 0;
}

.spotdev-subpage-hero-images img {
  object-position: right center;
  object-fit: cover;
  width: 100%;
  max-height: 577px !important;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  display: none;
}
.spotdev-subpage-hero-images img.active {
  opacity: 1;
  display: block;
  z-index: 2;
}
.spotdev-subpage-hero-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

/* Left column (copy) */
.spotdev-subpage-hero-inner .copy{
  flex:1 1 610px;
  padding: 0px;
  display:flex;
  flex-direction:column;
  gap:0px;
  justify-content:center;
  z-index:2;
}
.spotdev-subpage-hero-inner .heading{
  display: block;
  color: #10263D;
  font-family: Roboto;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  max-width: 610px;
}
.spotdev-subpage-hero-inner .subhead{
  color: #10263D;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin: 0 0 24px 0;
  max-width: 610px;
}
.spotdev-subpage-hero-inner .lead{
  color: #10263D;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  margin: 0 0 60px 0;
  max-width: 420px;
}
.spotdev-subpage-hero-inner .cta {
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-top:6px;
}

.spotdev-subpage-hero-inner .cta .btn--white-dark-blue,
.spotdev-subpage-hero-inner .cta .btn--pink-dark-blue{
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 10px;
  color: #10263D;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.spotdev-subpage-hero-inner .cta .btn--pink-dark-blue {
  background: #EF69D7;
}
.spotdev-subpage-hero-inner .cta .btn--pink-dark-blue:hover {
  background: #8e6de6;
  color: #FFFFFF;
}


.spotdev-subpage-hero-inner .cta .btn--white-dark-blue {
  background: #FFFFFF;
}
.spotdev-subpage-hero-inner .cta .btn--white-dark-blue:hover {
  background: #10263D;
  color: #FFFFFF;
}

/* Right column (image with yellow tint) */
.spotdev-subpage-hero__media{
  position:relative;
  flex:1 1 auto;
  min-height:380px;
  overflow:hidden;
}
.spotdev-subpage-hero__img{
  position:absolute;
  inset:0;
/*   background-image:
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?q=80&w=1600&auto=format&fit=crop"); /* replace with your asset */ */
  background-size:cover;
  background-position:center right;
  filter: grayscale(.2) contrast(1.05);
  transform:scale(1.02);
}
/* yellow wash */
.spotdev-subpage-hero__img::after{
  content:"";
  position:absolute; inset:0;
  background:var(--viooh-yellow);
  mix-blend-mode:multiply;
  opacity:.9;
}

.section-wrapper {
  position: relative;
}

/* Bottom banner */
.banner {
  position:absolute;
  right: 0;
  bottom: -90px;
  background: #07B5FF;
  color:#052231;
  display:flex;
  overflow:hidden;
  z-index:2;
  max-width: 950px;
  margin-right: max(16px, calc(50vw - 580px));  
  margin-left: 20px;
}

.banner__body{
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex:1;
}
.banner .title{
  color: #10263D;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.banner h5{
  color: #10263D;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 37.24px; /* 133% */
  margin: 0px;
}
.watch{
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 16px;
  flex: 380px;
  color: #10263D;
  background: #FFBE29;
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-height: 45px;
}
.watch:hover {
  color: #FFBE29;
  background: #10263D;
}

.watch:hover svg path {
  fill: #FFBE29;
}

/* Responsive tweaks */
@media (max-width: 767px){
  .banner {
    flex-direction: column;
    bottom: -140px;
  }
  .spotdev-subpage-hero {
    padding-bottom: 90px;
  }
  .banner__thumb {
    display: none;
  }
  .banner__body {
    flex-direction: column;
  }
  .banner .title,
  .banner h5 {
    text-align: center;
  }
}
@media (max-width: 550px){
  .banner h5 {
    font-size: 20px;
    line-height: 100%;
  }
}