.order {
  background-color: #F8F8F8; }
  .order__inner {
    border: 2px solid #D8D8D8;
    border-radius: 1rem;
    padding: 5rem 8.8rem; }
    @media (max-width: 1023px) {
      .order__inner {
        padding: 24px 20px;
        border-radius: 10px; } }
  .order__title {
    margin-bottom: 3rem; }
  .order__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5rem; }
    @media (max-width: 767px) {
      .order__grid {
        grid-template-columns: 100%; } }
    .order__grid--v2 {
      grid-template-columns: 1fr 1fr 1fr; }
      @media (max-width: 767px) {
        .order__grid--v2 {
          grid-template-columns: 100%;
          gap: 30px; } }
  .order__item-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 2rem; }
    @media (max-width: 1023px) {
      .order__item-header {
        margin-bottom: 10px; } }
  .order__item-title {
    font-weight: 600;
    margin-bottom: 1rem; }
    @media (max-width: 1023px) {
      .order__item-title {
        margin-bottom: 6px; } }
  .order__item-text {
    color: #6F7682; }
  .order__item-img {
    position: relative;
    width: 6.4rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff; }
    @media (max-width: 1023px) {
      .order__item-img {
        width: 48px;
        height: 48px; } }
    .order__item-img .lazy-img-wrap {
      position: absolute;
      inset: 0; }
      .order__item-img .lazy-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
  .order__item-step {
    position: relative;
    z-index: 1; }
  .order__item-arrow {
    height: 1px;
    transform: translateY(50%);
    background-color: #00A19B;
    flex-grow: 1;
    border-radius: .2rem;
    position: relative; }
    @media (max-width: 767px) {
      .order__item-arrow {
        display: none; } }
    .order__item-arrow:before {
      content: '';
      position: absolute;
      width: 0.7rem;
      height: 0.7rem;
      border-radius: .2rem;
      top: 0;
      bottom: 0;
      margin: auto 0;
      border-right: 1px solid #00A19B;
      border-top: 1px solid #00A19B;
      transform: rotate(45deg);
      right: .1rem; }
  .order__footer {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #D8D8D8; }
  .order__btn {
    width: 100%;
    max-width: 26rem; }
    @media (max-width: 575px) {
      .order__btn {
        max-width: none; } }
