/* Footer Layout */
#footer {
	display: flex;
	flex-flow: column;
	background-color: var(--brand-primary);
  }
  
  /* Mission Section */
  #footer-mission {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.5rem 1.25rem;
	background-color: var(--background-secondary);
  }
  
  #footer-mission div {
	color: var(--text-primary);
	font-weight: bold;
  }
  
  /* Header Section */
  #footer-head {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 2rem 0.75rem 0;
	font-size: 100%;
	color: var(--text-alt);
  }
  
  #footer-head div {
	margin: 0.2rem;
	font-size: 80%;
  }
  
  #footer-head div:first-child {
	font-size: 100%;
	font-weight: bold;
  }
  
  #footer-head div:nth-child(3) {
	padding: 0 0 1rem;
	border-bottom: solid 2px var(--gray-600);
  }
  
  #footer-head a,
  #relay a {
	font-size: 100%;
  }
  
  #relay a {
	color: var(--brand-accent);
  }
  
  /* Links Section */
  #footer-links {
	justify-content: center;
	padding: 2rem 1rem;
  }
  
  .footer-column {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 1rem;
	font-size: 100%;
	color: var(--text-alt);
	line-height: 190%;
  }
  
  .footer-column:first-child {
	flex: 2 2 auto;
  }
  
  .footer-column a {
	font-size: 90%;
	color: #A8A8A8;
	transition: color 0.8s ease-in-out;
  }
  
  .footer-column a:hover {
	color: var(--text-alt);
  }
  
  /* Google Translate Override */
  .goog-te-gadget,
  .goog-logo-link {
	color: #A8A8A8 !important;
  }
  
  /* Media Queries */
  @media only screen and (min-width: 1160px) {

	#footer-head div:nth-child(3) {
	  padding: 0 2rem 1rem;
	}
	
	#footer-links {
	  padding: 2rem 12.5%;
	}
  }
  
  @media only screen and (min-width: 1920px) {
	#footer-links {
	  font-size: 100%;
	  padding: 2rem 25%;
	}
  }