/* TYPE YOUR OWN CSS HERE */
body
{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#sub-nav a:hover
{
    color: #c4b479;
}

/* Header */
#header
{
  height: 100px !important;
}

/* Sub-nav */
#sub-nav
{
  height: 70px !important;
}

/* Logo vertical position */
.logo-container
{
  line-height: 100px !important;
}

/* Footer CSS */
#footer
{
    background-color: #0c2340;
}

.ft-container
{
  display: flex;
  justify-content: center;
  padding: 48px;
  gap: 32px;
}

.logo-and-content-container
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 500px;
}

.logo-position
{
  display: flex;
  justify-content: left;
  gap: 8px;
  align-items: center;
  flex-direction: column;
}

.content-container
{
  display: flex;
  justify-content: center;
  gap: 64px;
}

.link-col
{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-header
{
  font-size: 20px;
  color: #fff;
}

.ft-link a
{
  font-size: 16px;
  color: #fff !important;
}

.ft-link a:hover
{
  color: #c4b479 !important;
  text-decoration: none;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 24px; /* Icon size */
  text-decoration: none;
  transition: color 0.3s ease;
  gap: 16px;
  justify-content: center;
}

.social-icons a:hover {
  color: #c4b479; /* Light blue on hover */
}


@media (max-width: 700px) {

  .content-container {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: column;
    gap: 32px;
  }

  .logo-and-content-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }

  .logo-position {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    flex-direction: column;
  }
}

/* Update ILL Form */
.documentdelivery .edit-document {display:none;}