/* ========== CLIENT LOGOS ========== */
.clients-section .client {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section .client img {
  max-height: 120px;
  width: auto;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.clients-section .client img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========== LANGUAGE SWITCHER ========== */
.navbar .lang-switcher {
  display: flex !important;
  align-items: center;
  padding: 0 10px;
}

.navbar .lang-switcher a {
  display: inline !important;
  padding: 0 4px !important;
  font-size: 12px;
  line-height: inherit;
  color: inherit;
  opacity: 0.8;
}

.navbar .lang-switcher a:hover {
  opacity: 1;
  text-decoration: none;
}

/* ========== FOOTER ========== */
footer {
  background: #ffffff;
}

/* ========== FORM LABELS ========== */
label small {
  color: #ccc;
  margin-left: 10px;
}
