/*
Theme Name: Divi Child Theme
Description: Child Theme for Divi
Author:  Hand to Sky
Template: Divi
Version:  1.0.2
*/

/*
---------------------------
	CSS DIRECTORY
---------------------------
	=Font Setup
	=Global
	=Header
	=Footer
	=Media Queries
*/

/* ====Font Setup /////////////////////////////////////////////////*/

/* ====Global /////////////////////////////////////////////////*/
.customer-group-title {
  font-weight: bold;
}

.customer-group-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
  padding-block: 20px 40px;
}

.customer {
  padding: 30px 20px;
  border: 1px solid #000;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.customer:hover,
.customer:focus {
  transform: translateY(-5px);
}

.customer img {
  max-height: 70px;
}

/* ====Header /////////////////////////////////////////////////*/

/* ====Footer /////////////////////////////////////////////////*/
footer {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
}

.et_pb_gutters3.et_pb_footer_columns_3_5__1_5 .footer-widget:first-child .fwidget {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6em;
}
/* ====Media Queries /////////////////////////////////////////////////*/
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
