  /*footer*/
  #directedit {
    display: none;
  }
  
  #de {
    display: none;
  }
  
  .fgcu-footer {
    background-color: #004785;
    color: #fff;
    padding: 70px 20px 50px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
  }
  
  .footer-left {
    flex: 1 1 250px;
    max-width: 300px;
  }
  
  .footer-left img {
    width: 60%;
	margin-bottom: 10px;
  }
  
  .footer-left p {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	text-align: left;
	margin-bottom: 20px;
  }
  
  .footer-left a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-info {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
  }
  
  .footer-left a:hover {
    text-decoration-line: underline;
  }
  
  nav.footer-copyright a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
  }
  
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 5%;
    padding-top: 3%;
  }
  
  .footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    font-size: 16px;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border: 3px solid #004785;
  }
  
  .footer-nav a:hover {
    text-decoration: none;
  }
  
  /* Default: first link has border */
  .footer-nav a:first-child {
    border: 3px solid #0a86a5;
  }
  
  /* On hover of any link, remove border from the first child */
  .footer-nav:hover a:first-child {
    border: 3px solid #004785;
  }
  
  /* On hover, give border to the hovered link */
  .footer-nav a:hover {
    border: 3px solid #0a86a5;
  }
  
  .footer-nav:hover a:first-child:hover {
    border: 3px solid #0a86a5;
  }
  
  .footer-social {
    display: flex;
    gap: 40px;
    padding: 20px 0px;
  }
  
  .footer-social img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
  }
  
  .footer-social img:hover {
    filter: brightness(1.1);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Mobile layout */
  @media (max-width: 769px) {
    .footer-container {
      /* flex-direction: column; */
      align-items: center;
      border-bottom: none;
    }
  
    .footer-left {
      text-align: center;
      max-width: 100%;
    }
  
    .footer-right {
      align-items: center;
      margin-top: 20px;
      border-left: 0px;
      padding-left: 0px;
      padding-top: 0px;
    }
  
    .footer-left img {
      width: revert-layer;
    }
  
    .footer-nav {
      gap: 30px;
      font-size: 10px;
      display: flex;
      justify-content: space-between;
      font-size: 13px;
  
    }
  
    .footer-social {
      justify-content: center;
      margin: 20px 0;
      padding: 0px;
      gap: 20px;
    }
  
    .footer-nav a {
      font-size: 20px;
      margin: 1%;
      padding: 6px 26px;
    }
  }
