/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .w-xs-100 {
      width: 100% !important;
    }
  
    .w-xs-75 {
      width: 75% !important;
    }
  
    .w-xs-50 {
      width: 50% !important;
    }
  
    .w-xs-25 {
      width: 25% !important;
    }
  }
  
  /* Small devices (landscape phones, 576px and up) */
  @media (max-width: 767px) {
    .w-sm-100 {
      width: 100% !important;
    }
  
    .w-sm-75 {
      width: 75% !important;
    }
  
    .w-sm-50 {
      width: 50% !important;
    }
  
    .w-sm-25 {
      width: 25% !important;
    }
  }
  
  /* Medium devices (tablets, 768px and up) */
  @media (max-width: 991px) {
  
    .w-md-100 {
      width: 100% !important;
    }
  
    .w-md-75 {
      width: 75% !important;
    }
  
    .w-md-50 {
      width: 50% !important;
    }
  
    .w-md-25 {
      width: 25% !important;
    }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (max-width: 991px) {
  
    .w-lg-100 {
      width: 100% !important;
    }
  
    .w-lg-75 {
      width: 75% !important;
    }
  
    .w-lg-50 {
      width: 50% !important;
    }
  
    .w-lg-25 {
      width: 25% !important;
    }
  
  
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (max-width: 1199px) {
  
    .w-xl-100 {
      width: 100% !important;
    }
  
    .w-xl-75 {
      width: 75% !important;
    }
  
    .w-xl-50 {
      width: 50% !important;
    }
  
    .w-xl-25 {
      width: 25% !important;
    }
  
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (max-width: 1399px) {
  
    .w-xxl-100 {
      width: 100% !important;
    }
  
    .w-xxl-75 {
      width: 75% !important;
    }
  
    .w-xxl-50 {
      width: 50% !important;
    }
  
    .w-xxl-25 {
      width: 25% !important;
    }
  
  }