.parallax > use {
    animation: move-forever 12s linear infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 5s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
  }
  
  @keyframes move-forever {
    0% {
      transform: translate(-90px, 0%);
    }
    100% {
      transform: translate(85px, 0%);
    }
  }
  .editorial {
    display: block;
    width: 100%;
    height: 10em;
    max-height: 100vh;
    margin: 0;
  }
  
  .footer-content {
    text-align: center;
    background-color: /* #8eaec3 */#b0c4de;
    text-align: center;
    color: rgb(0, 0, 0);
  }
  
  .footer-content h1 {
    margin-top: -1.3em;
    font-weight: 100;
    font-size: 5em;
    user-select: none;
    cursor: default;
  }
  
  /*prevent many large-by-comparison ripples by shrinking the height*/
  @media (max-width: 50em) {
    .content h1 {
      font-size: 12vmax;
    }
  
    .editorial {
      height: 17vw;
    }
  }
  h1 {
    outline: none;
  }

  ul{
    list-style: none;
    padding: 0;
    margin: 0;}
  
  .contact-us,.thanks{
    font-family: Comic Sans MS;
    font-size: 8vh;
    margin: 0 auto 30px auto;
    color: var(--dark-blue);
  }
  
  .footer-contact{
    height: fit-content; 
    border-radius: 5px;
    margin: 0 auto 60px auto;
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
  }
  
  .footer-contact li:nth-child(n+2){
    margin-left: 60px;
  }
  
  .footer-a{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0 auto;
  }
  
  .footer-b{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 50%;
    width: 90%;
    margin: 0 auto;
  }
  .footer-b a{
    margin: 20px;
  }
  
  .footer-contact-icon img{
    width: 50px;
    height: 50px;
  }
  
  .njmulogo{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  
  .njmu{ 
    width: 100%;
    transform: translateX(50%);
  }
  .firstsponsor{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
  
    
  }
  .footer-container .hvr-underline-from-left::before{
      background: var(--dark-blue) !important;
      height: 1.5px !important;
      bottom: 7px;
  }
  .address{
    padding: 10px;
    background-color: var(--white);
    position: absolute;
    display: none;
    border-radius: 10px;
    font-family: 'Louis';
    color: var(--dark-blue);
  }
  
  .email:hover .address{
    display: block;
    }