/*---Footer---------------------------------------------------------------*/
.page-footer {
    background-color: var(--navbar-background-color);
    width: 100%;
    align-self: self-end;
    margin-top: auto;
  }

  .footer-wrapper {
    max-width: var(--bodyMaxWidth);
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-logo {
    background-image: url('/images/logo/rex-industrial-logo.JPG');
    height: 80px;
    width: 160px;
    background-size: contain;
    background-repeat: no-repeat;
    align-self: center;
  }
  
  .footer-list-rows {
    display: flex;
    flex-direction: column;
  }
  
  
  
  .Footer-page-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; 
  }
  .Footer-page-list ul {
    margin: 0;
    padding: 0;
    display: flex;
  }
  .Footer-page-list ul li {
    list-style: none;
  }
  .Footer-page-list ul li a h2, 
  .Footer-page-list ul li a h1{
    text-decoration: none;
    color: var(--navbar-font-color);
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: block;
  }
  .Footer-page-list ul li a h2:hover,
  .Footer-page-list ul li a h1:hover   {
    background-color: #555;
  }
  
  
  
  .Footer-legal-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .Footer-legal-list ul {
    margin: 0;
    padding: 0;
    display: flex;
  }
  .Footer-legal-list ul li {
    list-style: none;
  }
  .Footer-legal-list ul li a p {
    text-decoration: none;
    color: white;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    display: block;
  }
  .Footer-legal-list ul li a p:hover {
    background-color: #555;
  }
  .Footer-company-info {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-right: 15px;
    color: white;
  }
  .Footer-company-info a {
    text-decoration: none;
    color: white;
  }
  .Footer-company-info h5 {
    font-weight: bold;
    font-size: 1.5rem;
  }
  .Footer-company-info p {
    font-size: 1.25rem;
    color: white;
  }
  
  .footer-link-icons{
      display: none;
      flex-direction: row;
      justify-content: space-around;
      align-items: center; 
      margin-bottom: 15px;
  }
  .footerIcon{
      height: 50px;
      width: 50px;
      margin: 5px;
      background-size: contain;
      background-repeat: no-repeat;
      align-self: center;
  }
  .footerIcon.facebook{
      background-image: url(../images/icons/facebook-icon-orange.png);
  }
  .footerIcon.youtube{
      background-image: url(../images/icons/youtube-icon-orange.png);
  }
  .footerIcon.instagram{
      background-image: url(../images/icons/instagram-icon-orange.png);
  }
  .footerIcon.phone{
      background-image: url(../images/icons/phone-icon-orange.png);
  }

  /* @media screen and (max-width: 1150px) {
    .footer-logo {
      display: none;
    }
  } */
  
  @media screen and (max-width: 920px) {
    .footer-logo {
      display: none;
    }
      .footer-list-rows{
          margin: 0;
         width: 100%;
      }
    .Footer-page-list ul {
      flex-direction: column;
      align-items: flex-start;
    }
    .Footer-page-list ul li {
      align-self: center;
    }
    .Footer-page-list ul li a {
      font-size: 1rem;
      padding: 0.5rem;
    }
  
    .Footer-legal-list ul {
      flex-direction: column;
      align-items: flex-start;
    }
    .Footer-legal-list ul li {
      align-self: center;
    }
    .Footer-legal-list ul li a {
      font-size: 0.75rem;
      padding: 0.5rem;
    }
    .page-footer {
      height: auto;
    }
    .footer-wrapper{
      padding-bottom: 1rem;
      padding-top: 1rem;
    }
    .footer-link-icons{
      display: flex;
  }
  .Footer-page-list ul li a{
    margin: 0;
    padding: 0.1rem;
  }
  .Footer-page-list ul li a h2, 
  .Footer-page-list ul li a h1{
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
  }
  }