@charset "UTF-8";
/*
CSS for the footer menu for inclusion on each web page.
*/

/* Revision log:
v21.0.0 Initial release;
v21.0.2 Remove height (60px) from footer.
v21.1.4 Renamed "facebook" objects "soaciamedia" to accommodate other platforms.

*/
footer {
	clear: both;
	bottom: 0;
	z-index: 5;
!	height: 60px;
	width: 100%;
	background-color: #4682B4;
	font-family: 'Titillium Web', Arial, sans-serif;
	color: white;
	border-top: 2px solid #90B4D2;
}
footer .nav {
	position: relative;
	display: block;
	width:100%;
}
footer .nav ul {
	list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	justify-content: space-around;
	padding-inline-start: 0;
}
footer p, footer p a {
  color: #fbfbf8;
}
footer .nav_container {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
footer .nav {
	padding-top: 5px;
}
footer .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .nav ul li {
  float: left;
  position: relative;
}
.footer_button, .socialmedia_button {
  background-color: #4682B4;
  color: white;
  border: 2px solid #4682B4;  
  border-radius: 20px;
  text-align: center; 
  font-size: 16px; 
  font-weight: normal; 
  padding: 2px;
  padding-left: 8px;
  padding-right: 8px;
  text-decoration: none;
}
.socialmedia_button {
	margin: 0;
	padding: 0;
	margin-left: 5px;
	padding-left: 8px;
}
.socialmedia_logo {
	height: 25px;
}
footer div.copyright {
	display: inline-block;
	font-size: 12px;
	width: 100%;
	text-align: center;
	color: white;
	padding-top: 5px;
}

/* On medium screens... */
@media only screen and (max-width: 991px) and (min-width: 688px) {
  footer {
	height: 90px;
  }
}

/* On smaller screens... */
@media only screen and (max-width: 687px) {
  footer {
	height: 110px;
  }
}