footer a {
    color: var(--wp--preset--color--white);
}

body.support footer {
    border-top: 1px solid var(--wp--preset--color--white);
}

footer .site-logo {
  position: relative;
}

footer .logo-icon {
    content: " ";
    height: 80px;
    width: 225px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url('../icons/nyu-stern-cbhr-logo-stacked-footer-white.svg');
    background-color: transparent;
    margin-right: 1rem;
}

  footer .logo-link {
    text-decoration: none;
    flex-direction: column;
    display: flex;
    font-weight: normal;
    font-family: var(--global--font-medium);
    font-size: 1.25rem;
    position: absolute;
    height: 100%;
    width: 100%;
  }

#footer-menu-list a {
    color: var(--wp--preset--color--white);
    text-decoration: none;
}

footer .menu-wrapper {
    top: 0px;
}

a.linkedin {
  color: var(--wp--preset--color--white) !important;
  position: relative;
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}

a.linkedin::before {
  padding-right: 0px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 0px;
  top: 0px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../icons/linkedin.svg');
  background-color: transparent;
}

a.twitter {
  color: var(--wp--preset--color--white) !important;
  position: relative;
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}

a.twitter::before {
  padding-right: 0px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 0px;
  top: 0px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../icons/twitter.svg');
  background-color: transparent;
}

a.facebook {
  color: var(--wp--preset--color--white) !important;
  position: relative;
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
}

a.facebook::before {
  padding-right: 0px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 0px;
  top: 0px;
  left: 0px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url('../icons/facebook.svg');
  background-color: transparent;
}

.social-links a {
  opacity: .4;
}

.social-links a:hover {
  opacity: 1;
}

footer.menu-open {
   display: none;
}

body.d-flex button.btnScrollToTop {
    position: fixed;
    background-color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--plum) !important;
    border-radius: 50px;
    right: 10px;
    bottom: 10px;
    text-align: right;
    padding-right: 15px;
    height: 44px;
    color: var(--wp--preset--color--plum);
    padding-top: 0px;
    width: 90px;
    border: none;
    z-index: 99;
    display: none;
    cursor: pointer;
  }

  @media screen and (max-width: 600px) {
    body.d-flex button.btnScrollToTop {
      bottom: 15px;
    }
  }

body.d-flex .btnScrollToTop:hover {
    background-color: var(--wp--preset--color--lilac);
    color: var(--wp--preset--color--plum);
    border: 1px solid var(--wp--preset--color--plum) !important;
  }

  .back-to-top::before {
    padding-right: 0px;
    content: "";
    display: inline-block;
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 50px;
    top: 6px;
    left: 8px;
    border: 1px solid currentColor;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(-90deg);
    background-image: url('../icons/arrow-plum.svg');
    background-color: var(--wp--preset--color--white);
  }
  
  .back-to-top:hover::before {
    background-color: var(--wp--preset--color--white);
    background-image: url('../icons/arrow-plum.svg');
  }