.footerHolder {
  /* height: var(--footerHeight); */

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  padding: 10px 20px;

  background-color: white;
  font-size: 18px;
}

.rightFooter {
  display: flex;
  gap: 10px;
}

.socialFooter {
  padding: 20px;
  background-color: lightgray;
}

.innerSocialFooter {
  display: flex;
  gap: 20px;
}

.followSection ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px;
  margin-bottom: 100px;
  font-size: 48px;
}

.followElem {
  display: flex;
  gap: 20px;
  font-family: "Garamond-reg", sans-serif;
  font-size: clamp(var(--bigFontMob), 5vw, var(--bigFont));
}

.footer-contact address {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .footerHolder {
    height: unset;
  }

  .followSection {
    flex-direction: column;
    gap: 10px;
  }

  /* #interactiveSection {
    display: none;
    } */

  .footerHolder {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .rightFooter {
    gap: 20px;
    width: 100%;
  }
}
