.flavoria footer {
  background: var(--primary);
  padding: 64px 80px 36px;
  border-top: 3px solid var(--text);
}

/* Footer bottom */
.flavoria .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--secondary);
  flex-wrap: wrap;
  gap: 12px;
}

.flavoria .footer-bottom-credit {
  display: flex;
  flex-direction: column;
}

.flavoria .footer-bottom-links {
  display: flex;
  gap: 24px;
}

.flavoria .footer-bottom-links a {
  text-decoration: none;
  color: var(--secondary);
  transition: color .2s;
}

.flavoria .footer-bottom-links a:hover {
  color: var(--tertiary);
}

/* Footer responsive */
@media (max-width: 991px) {
  .flavoria footer { padding: 48px 32px 28px; }
}

@media (max-width: 767px) {
  .flavoria footer { padding: 40px 20px 24px; }

  .flavoria .footer-bottom {
		flex-direction: column;
		text-align: center;
	}

  .flavoria .footer-bottom-links {
		justify-content: center;
		margin-top: 10px;
	}
}