.path-box {
  .path-header {
    background: #ffffff1a;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #ffffff;
    padding: 19px;
    text-align: center;

    header.container-head {
      padding: 0;

      .box-logo {
        margin-bottom: 52px;
      }
    }

    h1 {
      font-size: 50px;
      font-weight: 900;
      line-height: 58.59px;
      color: #022d80;
    }

    p {
      font-size: 25px;
      font-weight: 400;
      line-height: 29.3px;
      color: #022d80;
    }
  }

  .content {
    margin: 0 auto;

    .list-items {
      width: 679px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 7px 25px;
      border-radius: 5px;

      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      background: #ffffff;

      .item-title {
        font-size: 20px;
        font-weight: 400;
        line-height: 23.44px;
        color: #022d80;
      }

      .btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 114px;
        height: 43px;
        border-radius: 5px;

        font-size: 20px;
        font-weight: 500;
        line-height: 23.44px;

        color: #fff;
        background: #f17209;
      }
    }
  }
}

/* Responsive for small mobile devices */
@media (max-width: 480px) {
  .path-box {
    .path-header {
      padding: 10px;

      header.container-head {
        .box-logo {
          margin-bottom: 5px;
        }
      }

      h1 {
        font-size: 28px;
        line-height: 35px;
      }

      p {
        font-size: 18px;
        line-height: 22px;
      }
    }

    .content {
      padding: 0 10px;

      .list-items {
        width: 100%;
      }

      .item {
        padding: 10px;

        .item-title {
          font-size: 16px;
        }

        .btn {
          width: 90px;
          height: 35px;
          font-size: 16px;
        }
      }
    }
  }
}
