.sticky-01 {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 3rem;
}
.sticky-01-sidebar {
  position: sticky;
  top: 20rem;
  height: 100%;
  width: 60%;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  padding: 1rem;
}
.sticky-01-sidebar a {
  display: flex;
  gap: 1rem 1rem;
  color: #FFF;
  text-decoration: none;
  border-left: 2px solid transparent;
  font-family: 'Poppins-SemiBold', Arial, sans-serif;;
  font-size: clamp(16px, 2.5vw, 24px); 
  padding: 0.5rem 1rem;
}
.sticky-01-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sticky-01-content .sticky-01-section {
  overflow-y: auto;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2px);
  padding: 4rem;
}
.sticky-01-section-headline {
  margin-bottom: 1.5rem;
}
.sticky-01-section-headline h4 {
  font-family: 'Poppins-Bold', Arial, sans-serif;;
  font-size: clamp(18px, 2.5vw, 24px); 
  color: #FFF;
}
.sticky-01-section-subheadline {
  margin-bottom: 1.5rem;
}
.sticky-01-section-subheadline h5 {
  font-family: 'Poppins-SemiBold', Arial, sans-serif;;
  font-size: clamp(16px, 2.5vw, 18px); 
  color: #FFF;
}
.sticky-01-section-description {
  margin-bottom: 1rem;
}
.sticky-01-section-description p {
  font-family: 'Poppins-Regular', Arial, sans-serif;;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #FFF;
}
.sticky-01-section-list ul li {
  font-family: 'Poppins-Regular', Arial, sans-serif;;
  font-size: clamp(16px, 2.5vw, 18px);
  color: #FFF;
}
.sticky-01-section-button {
  margin-top: 2rem;
}
.sticky-01-section-button a {
  text-decoration: none;
  color: #FFF;
  font-family: 'Poppins-Regular', Arial, sans-serif;;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid  #FFF;
  background: #FFF;
  color: #000;
  padding: 10px 24px;
  transition: ease 0.3s;
}
.sticky-01-section-button a:hover {
  background: transparent;
  border: 1px solid #FFF;
  color: #FFF;
}
.sidebar-line {
  position: absolute;
  left: 0.75rem;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #777;
  z-index: 0;
}
.sidebar-indicator {
  position: absolute;
  left: 0.75rem;
  width: 2px;
  height: 50px; 
  background-color: #069D84;
  transition: top 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .sticky-01-content .sticky-01-section {
    padding: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .sticky-01 {
    flex-direction: column;
    padding: 0 1rem;
    gap: 2rem;
  }
  .sticky-01-sidebar {
    position: static;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: #202222;
  }
  .sticky-01-content .sticky-01-section {
    padding: 1.8rem;
  }
  .sidebar-indicator {
    height: 40px;
  }
}




    




