/* BB Scroll Timeline */
.bbtl{
  --bb-accent:#34c2df!important;
  --bb-rail:rgba(255,255,255,.18);
  --bb-dot:rgba(255,255,255,.22);
  --bb-text:rgba(255,255,255,.92);
  --bb-muted:rgba(255,255,255,.72);

  --bb-rail-x: 26px;
  --bb-gap: 64px;
  --bb-fill: 0px;

  position:relative;
  color:var(--bb-text);
}

/* Rail base */
.bbtl__rail{
  position:absolute;
  left: var(--bb-rail-x);
  top: 0;
  bottom: 0;
  width:5px;
  background: var(--bb-rail);
  border-radius:2px;
}

/* Rail fill */
.bbtl__rail::after{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%;
  height: var(--bb-fill);
  background: linear-gradient(to bottom, rgba(53,198,214,.95), rgba(53,198,214,.25)); 
/*   background: linear-gradient(to bottom, rgba(255,255,255,.99), rgba(255,255,255,.25)); */
  border-radius:2px;
  transition: height 650ms cubic-bezier(.2,.8,.2,1);
}

/* Items column */
.bbtl__items{
  padding-left: var(--bb-gap);
  display:flex;
  flex-direction:column;
  gap: 92px;
}

/* Item (reveal) */
.bbtl__item{
  position:relative;
  max-width: 560px;
  padding-top: 10px;

  opacity:0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.bbtl__item.is-reveal{
  opacity:1;
  transform: translateY(0);
}

/* Dot locked to rail */
.bbtl__dot{
  position:absolute;
  left: -35.5px;
  top: 22px;
  width:12px; height:12px;
  border-radius:999px;
  background: var(--bb-dot);
  transform: translateX(-50%);
}

/* Active */
.bbtl__item.is-active .bbtl__dot{
  background: var(--bb-accent);
  box-shadow: 0 0 0 10px rgba(53,198,214,.10);
}

.bbtl__step{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}

.bbtl__icon{
  width:44px; height:44px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.92);
}
.bbtl__icon svg{ width:100%; height:100%; display:block; }

.bbtl__title{
  margin:0 0 12px;
  font-size: clamp(28px, 2.2vw, 36px);
  line-height:1.15;
  font-weight:500;
  color: var(--bb-accent);
}
.bbtl__text{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color: var(--bb-muted);
  max-width:540px;
}

@media (max-width: 980px){
  .bbtl{ --bb-rail-x: 18px; --bb-gap: 52px; }
  .bbtl__items{ gap: 72px; }
}
@media (max-width: 600px){
  .bbtl{ --bb-rail-x: 14px; --bb-gap: 44px; }
  .bbtl__items{ gap: 60px; }
  .bbtl__icon{ width:38px; height:38px; }
  .bbtl__text{ font-size:15px; }
}