/* Custom additions layered on top of the original theme CSS. */

/* Footer "Group of Companies" block */
.ftr-group {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 45px;
}
.ftr-group-title {
  color: #fff;
  font-family: "Muller";
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.85;
}
.ftr-group-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  flex-wrap: wrap;
}
.ftr-group-logos a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.ftr-group-logos a:hover {
  opacity: 0.65;
}
.ftr-group-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .ftr-group-logos {
    gap: 32px;
  }
  .ftr-group-logos img {
    height: 22px;
  }
}
