.logos {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: calc(100% + 3rem);
}

.logo__wrapper {
  padding: 0.5rem;
}

.logo {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.logo a {
  line-height: 0;
}

.logo__button {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: row;
  height: 2rem;
  justify-content: center;
  position: absolute;
  transition: all 0.3s;
  right: 0;
  width: 2rem;
}

.logo__button:hover {
  width: 100%;
}

.logo__button-text {
  opacity: 0;
  transition: all 0s;
}

.logo__button:hover .logo__button-text {
  color: #ffffff;
  opacity: 1;
  transition: all 0.3s;
}

.logo__button--arrow {
  align-items: center;
  display: flex;
  height: 2rem;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 2rem;
}

.logo__button--arrow svg {
  fill: #ffffff;
}

@media (min-width: 768px) {

  .logos {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

}