/**
 *
 * info: Estilo Futcamp
 * handle: futcamp-widgets
 * version: 1.0.0
 *
 */
.futcamp__header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  padding: 16px 0;
  background-color: var(--clr-grey-1);
}
.futcamp__header img {
  width: 80px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media ((min-width: 768px)) {
  .futcamp__header {
    padding: 20px 0;
  }
  .futcamp__header img {
    width: 100px;
  }
}
@media ((min-width: 992px)) {
  .futcamp__header {
    padding: 24px 0;
  }
  .futcamp__header img {
    width: 120px;
  }
}

.futcamp__header a:hover {
  filter: brightness(0.8);
}