/** Shopify CDN: Minification failed

Line 146:0 Unexpected "`"

**/
:root{
  --nf-red:#d71e28;
  --nf-bg:#0f1115;
  --nf-card:#181b20;
  --nf-text:#ffffff;
  --nf-muted:#b8bec8;
  --nf-radius:18px;
}

.nf-timeline{
  background:var(--nf-bg);
  padding:80px 0;
}

.nf-header{
  text-align:center;
  margin-bottom:60px;
}

.nf-header h2{
  color:#fff;
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:10px;
}

.nf-header p{
  color:var(--nf-muted);
  max-width:720px;
  margin:auto;
}

.nf-items{
  position:relative;
  max-width:900px;
  margin:0 auto;
  padding-left:70px;
}

.nf-items::before{
  content:"";
  position:absolute;
  left:24px;
  top:0;
  bottom:0;
  width:4px;
  background:var(--nf-red);
  border-radius:99px;
}

.nf-item{
  position:relative;
  margin-bottom:48px;
}

.nf-dot{
  position:absolute;
  left:-55px;
  top:38px;
  width:18px;
  height:18px;
  background:var(--nf-red);
  border:4px solid #fff;
  border-radius:50%;
  box-shadow:0 0 16px rgba(215,30,40,.6);
}

.nf-card{
  background:var(--nf-card);
  color:#fff;
  border-radius:var(--nf-radius);
  padding:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  transition:.3s ease;
}

.nf-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(215,30,40,.25);
}

.nf-image{
  margin:-28px -28px 22px;
}

.nf-image img{
  width:100%;
  display:block;
  border-radius:18px 18px 0 0;
}

.nf-year{
  display:inline-block;
  background:var(--nf-red);
  color:#fff;
  padding:6px 14px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  margin-bottom:14px;
}

.nf-card h3{
  margin:0 0 12px;
  font-size:1.7rem;
  color:#fff;
}

.nf-card p{
  color:var(--nf-muted);
  line-height:1.7;
}

.nf-item{
  opacity:0;
  transform:translateY(25px);
}

.nf-item.nf-visible{
  opacity:1;
  transform:none;
  transition:.7s ease;
}

@media(max-width:749px){
  .nf-items{
    padding-left:55px;
  }

  .nf-dot{
    left:-40px;
  }

  .nf-card{
    padding:22px;
  }

  .nf-card h3{
    font-size:1.35rem;
  }
}
```
