/** Shopify CDN: Minification failed

Line 240:0 Expected "}" to go with "{"

**/
@font-face {
  font-family: 'Muli';
  src: url('{{ 'Muli-Regular.ttf' | asset_url }}') format('truetype');
  
  font-style: normal;
}

@font-face {
  font-family: 'PerfectlyNineties';
  src: url('{{ 'PerfectlyNineties-Regular.ttf' | asset_url }}') format('ttf');
  font-weight: normal;
  font-style: normal;
}



@font-face {
  font-family: 'Sequel100Black';
  src: url('{{ "Sequel100Black-65.ttf" | asset_url }}') format('truetype');
  font-weight: 600;
  font-style: normal;
}


.partnership-path {
  background-color: #EFEDEB;
  padding: 80px 0;
  position: relative;
}

.partnership-heading {
  text-align: center;
  font-size: 40px;
  margin-bottom: 80px;
  font-weight: 400;
  font-family: 'PerfectlyNineties', serif;
  font-style: normal;
  text-transform: none;
  color: #202020;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.partnership-heading em {
  font-style: italic;
  color: #202020;
  font-family: "Perfectly Nineties", serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

/* DESKTOP
.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  border-top: 2px solid black;
  padding-top: 60px;
  overflow: visible;
}*/

.timeline-full-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-full-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: black;
  z-index: 0;
}


/* FLEX STEPS */
.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 60px;
  overflow: visible;
  z-index: 1; /* Makes sure dots appear above the line */
}
body, html {
  overflow-x: hidden;
}

.page-width {
  max-width: 100%
  overflow-x: hidden;
}


.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* changed from center */
  text-align: left; /* changed from center */
  width: 25%;
  position: relative;
}

.circle {
  position: absolute;
  top: -73px;
  left: 20%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  z-index: 5;
}

.dot-img {
  width: 100%;
  height: 100%;
  display: block;
}

.step-text {
  margin-top: -50px;
  padding-left: calc(20% - 8px); /* align with dot horizontally */
}

.timeline-step .step-text h3 {
  font-size: 18px;
  font-weight: 590;
  font-style: normal;
  color: #202020;
}


/*
.step-text h4 {
  font-family: 'Sequel100Black-55', sans-serif; /* use exact font if uploaded
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #202020;
}*/

.step-text p {
 font-family: 'Muli', sans-serif; /* fallback to Muli if custom font unavailable */
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.3;
  color: #202020;
  margin-top: -15px;
}

/* MOBILE */
@media screen and (max-width: 767px) {
  .timeline-container{
    flex-direction: column;
    align-items: flex-start;
    border-top: none ;
    border-left: 2px solid black;
    padding-left: 32px;
    gap: 40px;
    position: relative;
    margin-left: 50px;
  }  
  .timeline-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    width: 100%;
    text-align: left;
  }

  .circle {
    position: relative;
    top: 15px;
    left: -45px;
    transform: none;
    width: 24px;
    height: 24px;
  }

 .step-text {
    margin: 0;
    padding: 0;
    max-width: calc(100% - 40px);
  }
  .step-text h4 {
    font-family: 'Sequel100Black', sans-serif;
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.05em; 
  }

  .step-text p {
    font-family: 'Muli-Light', sans-serif;
    font-size: 16px;
    color: #202020;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 0;
    font-weight: 300;
    margin-top: 10px;
  }

   .timeline-full-wrapper::before {
    display: none;
  }
  /* Extend vertical line above first and below last */
  .timeline-container::before {
    top: -20px;
    height: 20px;
  }

  .timeline-container::after {
    bottom: -20px;
    height: 20px;
  }

