.image-gallary-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  min-height: 80dvh;
  transition: all 0.5s ease-in-out;

  &:hover {
    > :not(:hover) {
      opacity: 0.4;
    }
  }

  .card {
    transition: transform 0.5s ease;
    height: 264px;
    width: 252px;
    border-radius: 10px;
    overflow: hidden;

    &:hover {
      cursor: zoom-in;
      transform: scale(1.1);
    }

    img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }
}

@media(max-width:756px) {
  .company-img-wrap img {
    position: relative !important;
  }
  .company-img-wrap{
    height: auto !important;
  }
      .section-heading p {
        margin-top: 10px !important;
      }
}