.footer-mc {
  padding: 6rem var(--large-margin) 12rem;
  margin: 0 auto;
  gap: 4rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-column-right, .footer-column-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.logo-footer {
  fill: var(--color-text-secondary);
  transition: fill 0.3s ease;
  width: 2rem;
}

.logo-footer:hover {
  filter: drop-shadow(0px 0px 6px rgb(255, 255, 255, 0.4));
}

.logo-footer:hover .cls-1, .logo-footer:hover .cls-2 {
  fill: var(--color-text-primary);
}


/************************************* INFOS **************************************/


.footer-overlay {
  position: fixed;
  width: 100%;
  z-index: 10;
  bottom: 0;
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  background: linear-gradient(0deg, var(--color-bg-primary) 0%, rgba(0, 0, 0, 0.01) 100%);
}

.time {
  display: flex;
  gap: 0.3rem;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.footer-overlay .container {
  display: flex;
  gap: 1rem;
  min-width: 200px;
}

.footer-overlay .container:nth-child(1) {
  justify-content: left;
}
.footer-overlay .container:nth-child(2) {
  justify-content: center;
    display: none;
}
.footer-overlay .container:nth-child(3) {
  justify-content: right;
}


/******************************** RESPONSIVE ********************************/


@media (min-width: 768px) {
  .footer-mc {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .footer-column-right {
    align-items: flex-start;
  }

  .footer-column-left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }
  .footer-overlay .container:nth-child(2) {
  display: inline-flex;
}
}

@media (min-width: 992px) {

  .footer-overlay {
    padding: 4rem 2rem 2rem 2rem;
    font-size: 0.7rem;
  }

  .footer-overlay .container {
    gap: 2rem;
  }
  .footer-overlay .container {
  min-width: 260px;
}
}

@media (min-width: 1200px) {
  .footer-overlay {
    padding: 6rem 3rem 3rem 3rem;
    font-size: 0.8rem;
  }
}