/*----- Footer -----*/

.footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0;
  background-color: var(--black);
}

.footer .title {
  margin-bottom: 16px;
  font-size: 4.8rem;
  color: var(--off-white);
  font-family: "Rasa", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.footer section {
  text-align: center;
}

.icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.facebook {
  background-image: url('../assets/icons/facebook.svg');
  margin-right: 30px;
}

.instagram {
  background-image: url('../assets/icons/instagram.svg');
}

.mail {
  display: inline-block;
  padding: 16px 20px;
  text-align: center;
  border-radius: 5px;
  background-color: var(--off-white);
  color: var(--off-black);
}