.ref-stack {
  background: #000;
}

.ref-panel {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 50px;
  padding: 80px 7vw;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.ref-panel figure {
  margin: 0;
  height: 70vh;
  overflow: hidden;
  border-radius: 2px;
}

.ref-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-text span {
  display: block;
  margin-bottom: 18px;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #00fac9;
}

.ref-text h2 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: .95;
}


.ref-text p {
  max-width: 420px;
  font-size: 1rem;
  opacity: .8;
}

.ref-partner {
    margin-top: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    letter-spacing: .03em;
}

.ref-partner strong {
    color: #00fac9;
    font-weight: 300;
}

.ref-text .button {
    display: inline-block;
    margin-top: 40px;
}

@media (max-width: 768px) {
  .ref-panel {
    grid-template-columns: 1fr;
    padding: 70px 20px;
  }

  .ref-panel figure {
    height: 55vh;
  }
}


.ref-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    margin: 25px 0 0;
    padding: 0;
}

.ref-badges li {
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 3px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.ref-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 3px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    transition: .25s;
}

.ref-badges span:hover {
    border-color: #00fac9;
    color: #00fac9;
}


.ref-hosting{
    margin-top:18px;
    font-size:.85rem;
    color:rgba(255,255,255,.65);
}

.ref-hosting strong{
    color:#00fac9;
    font-weight:500;
}

.ref-hosting a{
    color:inherit;
    text-decoration:none;
    border-bottom:1px solid rgba(0,250,201,.35);
    transition:.25s;
	margin-left: 8px;
}

.ref-hosting a:hover,
.ref-hosting a:focus{
    color:#00fac9;
    border-bottom-color:#00fac9;
}



.ref-cta-button {
  display: inline-block;
  margin-top: 42px;
  padding: 15px 34px;
  border: 1px solid #00fac9;
  color: #00fac9;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s;
}

.ref-cta-button:hover,
.ref-cta-button:focus {
  background: #00fac9;
  color: #000;
}