
  /*==================================================
Delivery Approach
==================================================*/

  .delivery-section {

    padding: 110px 0;

    background: #f8f9fa;

  }

  /* Timeline */

  .delivery-timeline {

    margin-top: 70px;

    position: relative;

  }

  .delivery-timeline::before {

    content: "";

    position: absolute;

    left: 45px;

    top: 0;

    bottom: 0;

    width: 3px;

    background: #ba1515;

    opacity: .2;

  }

  .delivery-step {

    display: flex;

    gap: 35px;

    position: relative;

    margin-bottom: 55px;

  }

  .delivery-step:last-child {

    margin-bottom: 0;

  }

  /* Circle */

  .step-circle {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: #fff;

    border: 3px solid #ba1515;

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    flex-shrink: 0;

    transition: .35s;

  }

  .step-circle span {

    position: absolute;

    top: -12px;

    right: -12px;

    width: 34px;

    height: 34px;

    background: #ba1515;

    color: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 13px;

    font-weight: 700;

  }

  .step-circle i {

    font-size: 34px;

    color: #ba1515;

    transition: .35s;

  }

  /* Content */

  .step-content {

    background: #fff;

    padding: 28px 35px;

    border-radius: 18px;

    flex: 1;

    border: 1px solid #ececec;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;

  }

  .step-content h4 {

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 15px;

  }

  .step-content p {

    margin: 0;

    font-size: 16px;

    line-height: 1.9;

    color: #666;

  }

  /* Hover */

  .delivery-step:hover .step-circle {

    background: #ba1515;

  }

  .delivery-step:hover .step-circle i {

    color: #fff;

  }

  .delivery-step:hover .step-content {

    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

    border-color: #ba1515;

  }

  /* Responsive */

  @media(max-width:768px) {

    .delivery-timeline::before {

      left: 35px;

    }

    .step-circle {

      width: 70px;

      height: 70px;

    }

    .step-circle i {

      font-size: 26px;

    }

    .step-content {

      padding: 22px;

    }

    .step-content h4 {

      font-size: 22px;

    }

  }