:root {
    --primary: #bd0000;
    
  }
  .section-header {
    text-align: center;
  }
  .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .section-header hr {
    border: 1px solid #fff;
    width: 56px;
  }
  .bg-gradient_solid {
    background: var(--primary-gradient);
    color: #fff;
    padding: 48px 0;
  }
  .steps {
    position: relative;
    margin-top: 32px;
  }
  .steps::after {
    content: "";
    position: absolute;
    width: 3px;
    background-color: rgb(255, 0, 0);
    opacity: 0.4;
    top: 0;
    bottom: 0;
    left: 50%;
  }
  
  .steps .content p {
    color: #dbdbdb;
    font-size: 20px;
  }
  
  .steps .content h2 {
    font-weight: 500;
    font-size: 30px;
    color: #ffffff;
  }
  
  .steps-container {
    position: relative;
    background-color: inherit;
    width: calc(50% + 42px);
  }
  
  .steps-container .content {
    padding: 42px;
    background-color: rgb(0, 0, 0);
    position: relative;
    border-radius: 0px 0px 80px 0px;
    box-shadow: 0px 16px 27px rgb(0 11 30 / 10%);
    width:100%
  }
  
  .steps .steps-container:nth-child(even) {
    left: calc(50% - 42px);
    flex-direction: row-reverse;
  }
  
  .steps-container {
    display: flex;
  }
  
  .steps .steps-container .date {
      font-weight: 900;
      font-size: 16px;
      color: #ffffff;
      margin-bottom: 10px;
      width: 90px;
      height: 90px;
      background-color: var(--primary);
      border-radius: 50%;
      flex-shrink: 0;
      align-items: center;
      display: flex;
      justify-content: center;
      z-index: 1;
  }
  
  .step-line {
    width: 40px;
    background-color: #ca0000;
    height: 3px;
    margin-top: 41px;
    opacity: 1;
    flex-shrink: 0;
  }
  
  @media (max-width: 767px) {
    .steps::after {
      left: 32px;
    }
    .steps-container {
      left: 0;
      flex-direction: row-reverse;
      width: auto;
      margin-bottom: 16px;
    }
    .steps .steps-container:nth-child(even) {
      left: 0;
    }
  }