.color1 {
    color: var(--Dark-gray, #474747);
    font-family: Tajawal;
}

.color2 {
    color: var(--Dark-gray-1, #666);
    font-family: Tajawal;
}

.social-img {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    color: var(--Dark-gray, #474747);
    font-family: Tajawal;

}

@media (max-width: 767px) {

    .item3 {
        order: 3;
    }

    .item4 {
        order: 4;
    }

    /* Repeat the pattern for other items */
}

@media (min-width: 768px) {
    .item3 {
        order: 4;
    }

    .item4 {
        order: 3;
    }

    /* Repeat the pattern for other items */
}
@media (max-width: 767px) {
    .container {
      grid-template-columns: 1fr;
    }
  
    .first {
      order: 1;
    }
  
    .second {
      order: 2;
    }
  
    .third {
      order: 3;
    }
  }
  
  @media (min-width: 768px) {
    .first {
      order: 2;
    }
  
    .second {
      order: 3;
    }
  
    .third {
      order: 1;
    }
  }