

  .company-header-desktop {
    display: block;
    background-image: url('../image/company-header.webp'); /* Replace with your header image path */
    background-size: cover;
    background-position: center;
    height: 400px; /* Adjust the height as needed */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 75px;
  }
  .company-header-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .company-header-desktop {
      display: none;
    }
    .company-header-mobile {
      display: block;
      background-image: url('../image/company-header-m.webp'); /* Replace with your header image path */
      background-size: cover;
      background-position: center;
      height: 210px; /* Adjust the height as needed */
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: 75px;
    }

  }


  .header-text {
    color: #333; /* Adjust the color as needed */
    font-weight: bold;
  }


  /*image section*/
  .gallery-container {
    column-count: 4;
    column-gap: 1rem;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 992px) {
    .gallery-container {
      column-count: 3;
    }
  }

  @media (max-width: 768px) {
    .gallery-container {
      column-count: 2;
    }
  }

  @media (max-width: 576px) {
    .gallery-container {
      column-count: 2;
    }
  }

  .company-desktop {
    display: block;
  }
  .company-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .company-desktop {
      display: none;
    }
    .company-mobile {
      display: block;
    }

  }

