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

.customers-images-grid img {
  background-color: #ffffff;
  padding: 20px 20px 20px 20px;
  border-style: solid !important;
  border-width: 1px 1px 1px 1px !important;
  border-color: #e8e8e8 !important;
  border-radius: 6px 6px 6px 6px !important;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.06) !important;

  width: 100%;
  height: 120px;
  border-style: none;
  object-fit: contain;
	
	cursor: ponter;
}

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

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

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


/*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;
		object-fit: contain;
    }
  }
}

.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;
  }
}