/*Customers*/
.customers-images-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
/*   grid-template-rows: repeat(2, 1fr); */
  gap: 40px;
  row-gap: 40px;
  column-gap: 40px;
  grid-auto-flow: row;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.customers-images-grid img {
	height: 70px;
	width: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	cursor: pointer;
	transition: all 1s ease;
	border: 0px solid;
	border: 1px solid #0000;
	padding: 10px 15px;
	border-radius: 10px
}

.customers-images-grid img:hover {
	filter: grayscale(0%);
	border: 1px solid #ddd;
	background-color: #fff;
}

@media (max-width: 1024px) {
  .customers-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
/*     grid-template-rows: repeat(2, 1fr); */

      gap: 25px;
  }
  .customers-images-grid img {
/*     height: 84px;
    padding: 20px 20px 20px 20px; */
  }
}

@media (max-width: 767px) {
  .customers-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}


/*brands*/
.brands-images-grid {
  display: flex;
  justify-content: center;
  align-items: center;
/*   gap: 150px; */
  gap: 100px;
/*   padding: 40px 207px; */
  padding: 40px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  direction: ltr!important;

  .brand-image {
    position: relative;
	  display: flex;
	  justify-content: center;

    img {
      height: 80px;
      width: auto;
      position: relative;
		cursor: ponter;
    }
  }
}

.brands-images-grid .brand-image::after {
  content: "";
  position: absolute;
  top: 0;
/*   right: -74.5px; */
  right: -49.5px;
  height: 100%;
  width: 1px;
  background-color: #e8e8e8;
}

.brands-images-grid .brand-image:last-of-type::after {
  width: 0;
}

@media (max-width: 1024px) {
  .brands-images-grid {
    gap: 80px;
    padding: 20px 60px;
  }

  .brands-images-grid .brand-image::after {
    right: -39.5px;
  }

  .brands-images-grid {
    & .brand-image {
      & img {
        height: 57.292px;
        width: auto;
      }
    }
  }
}

@media (max-width: 767px) {
  .brands-images-grid .brand-image:nth-of-type(2n)::after {
    width: 0;
  }

  .brands-images-grid {
    display: flex;
    gap: 40px 50px !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .brand-image {
    width: calc(50% - 25px);
    padding: 0;
    margin: 0;
  }
/* 	.brand-image:nth-of-type(2n) {
		text-align: right;
		justify-content: end;
	} */

  .brand-image::after {
    right: -24.5px !important;
  }
}