/*
Company:  Assessing Parenting
File:   main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - this is handled by the reset-fonts.css file from YUI
HTML, Body - for the html and body tags
Layout - styles that define the layout of the site
Modules - styles for content modules
Nav - navigation bar
Default Headings - headings like h1, h2, etc
Common Text Styles - Styles for text
Default Lists - unordered and ordered lists
Forms - html forms
Default Links - links
Misc - anything that doesn't fit elsewhere
*/

:root{
	--color-primary: #bf6f54;
	--color-secondary: #869349;
	--bg-none: #fff;
	--bg-muted: #f5f0ef;
	--font-sans-serif: "Lucida Grande", Arial, sans-serif;
	--font-serif: Georgia, Times, serif;
	--masthead-offset: 0px;
	--notice-offset: 0px;
	--hamburger-top: 14px;
}

/* @group HTML, Body */
html {
	background-color: #78868d;
}
body {
	color: #4b4139;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-family: var(--font-sans-serif, "sans-serif");
	font-size: 16px;
	padding-top: var(--masthead-offset);
}
/* @end */

/* Lock background scroll when mobile menu is open */
body.mobile-menu-open,
html.mobile-menu-open {
	overflow: hidden;
	height: 100%;
}

/* @group Default Links - link visited hover active */
a:not(.btn) {
  color: #ae654c;
  text-decoration: none;
}
a:not(.btn):hover {
  text-decoration: underline;
}
/* @end */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif, "serif");
	font-weight: normal;
	margin-top: 0;
}

h4 {
	font-weight: bold;
}

* + h2,
* + h3,
* + h4,
p + section {
	margin-top: 30px;
}

li + li h3 {
	margin-top: 1em;
}

ol, ul {
	padding-left: 1.5em;
}
li {
	margin-bottom: 10px;
}

img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 991px) {
	h1, .h1 {
		font-size: 32px;
	}
	h2, .h2 {
		font-size: 26px;
	}
	h3, .h3 {
		font-size: 18px;
	}
}

/* make notices match the bootstrap warning style */
.alert-notice {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
  background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#f8efc0));
  background-image: -moz-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
  background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);
  background-repeat: repeat-x;
  border-color: #f5e79e;
}

@media (min-width: 1200px) {
  .pull-md-right.col-lg-offset-1 {
    margin-right: 8.33333333%;
		margin-left: 0;
	}
}

@media (min-width: 992px) {
  .pull-md-right { float: right; }
  .pull-md-right.col-md-offset-1{
    margin-right: 8.33333333%;
    margin-left: 0;
  }
}

@media (min-width: 991px) {
  .padding-sm-none { padding-right: 0; padding-left: 0; }
}


@media (max-width: 991px) {
	body > * {
		-webkit-box-ordinal-group: 4;
		-webkit-order: 3;
		   -moz-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
	#notice {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		   -moz-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
	#header {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		   -moz-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
	#masthead {
		-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
		        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 99;
	}
}

#header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 1000;
	-webkit-transition: padding 160ms ease, -webkit-box-shadow 160ms ease;
	transition: padding 160ms ease, -webkit-box-shadow 160ms ease;
	-o-transition: padding 160ms ease, box-shadow 160ms ease;
	-moz-transition: padding 160ms ease, box-shadow 160ms ease;
	transition: padding 160ms ease, box-shadow 160ms ease;
	transition: padding 160ms ease, box-shadow 160ms ease, -webkit-box-shadow 160ms ease;

	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
/* When stuck, pin it */
/* #header.is-stuck {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
} */

@media (min-width: 992px) {
	#header #logo img,
	#header #util-nav {
		-webkit-transition: all 160ms ease;
		-o-transition: all 160ms ease;
		-moz-transition: all 160ms ease;
		transition: all 160ms ease;
	}

	#header #logo img {
		height: 77px;
	}
	#header.is-stuck #logo img {
		height: 67px;
	}

	/* Shrink styles */
	#header.is-stuck.is-shrink #util-nav {
		padding-bottom: 8px;
	}
}

#util-nav li {
	margin: 0;
}

/* @group Layout */
/* Head */
#masthead {
	background: var(--bg-muted);
	padding: 10px 0;
}

/* Body */
#bd-top {
  background: url(../images/brown-bkg-repeat.png) repeat-x 0 0;
}
#bd-repeat {
  background: url(../images/brown-bkg.png) no-repeat 50% 0;
}
#bd-btm {
  background: url(../images/white-bar.gif) repeat-x 0 581px;
  padding: 3px 0 0 0;
}
#bd {
  width: 911px;
  margin-left: auto;
  margin-right: auto;
}

/* @group Modules */
/* Logo */
#logo a {
  display: block;
}

#tagline p {
	margin: 0;
}

#logo {
	padding-bottom: 10px;
	width: -webkit-calc(100% - 50px);
	width: -moz-calc(100% - 50px);
	width: calc(100% - 50px);
}
.tagline {
	color: #86934a;
	font-size: 14px;
	line-height: normal;
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 21px;
	text-align: left;
}
.tagline strong {
	color: #4b4139;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.tagline {
		font-size: 11px;
	}
}
@media (max-width: 424px) {
	.tagline {
		font-size: 9.6px;
	}
}

/* Tagline */
#tagline {
  color: #4b4139;
  float: right;
}

/* Main */
.site-main {
  background-color: #83929a;
  position: relative;
}
.site-main .container {
  position: relative;
  z-index: 10;
}
.site-main .col {

}
.site-main .background {
  background-color: #5d514a;
  border-bottom: 4px solid #fff;
  position: absolute;
  top: 0;
  width: 100%;
  height: 230px;
}
.home-index .site-main .background {
  height: 565px;
}

/* Side */
.widget-area img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.content-section {
  padding: 10px 15px;
}

/* Home Feature Pic */
.home-feature-pic {
  background: url(../images/main-feature-pic2.jpg) no-repeat 0 0;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  padding-top: 32.6%;
}
.home-feature-pic a {
  display: block;
  width: 128px;
  height: 31px;
  background: url(../images/tour-btn.gif) no-repeat 0 0;
  text-align: center;
  line-height: 31px;
  margin: 150px 16px 0 0;
  font-size: 108%;
  font-family: Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  float: right;
}
.home-feature-pic a:link, .home-feature-pic a:visited {
  color: #fffefd;
  text-decoration: none;
}
.home-feature-pic a:hover {
  background-position: 0 -31px;
}

/* Pics */
.rightpic {
  margin: 0 0 10px 20px;
  float: right;
}
.leftpic {
  margin: 0 20px 10px 0;
  float: left;
}

#notice {
  background: #dadec8;
  border-bottom: 1px solid #7a8247;
  font-size: 18px;
  text-align: center;
}

#notice.is-docked {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  top: auto;
  max-width: 1100px;
  margin: 0 auto;

  transform: translateY(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;

  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform, opacity;

  border-radius: 6px;;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: var(--bg-muted);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

#notice.is-docked.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#notice .notice-title,
#notice-toast .notice-title {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
  color: #2b2b2b;
}

#notice .notice-sub,
#notice-toast .notice-sub {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: #4b4b4b;
}

#notice .notice-inner {
	padding: 15px;
}
#notice.is-docked .notice-inner {
	border-left: 5px solid var(--color-secondary);
}

#notice-toast {
  display: block;
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 8px;
  top: auto;

  max-width: 1100px;
  margin: 0 auto;

  transform: translateY(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;

  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform, opacity;

  border-radius: 6px;;
  border: 1px solid #7a8247;
	border-left: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #dadec8;
  backdrop-filter: blur(6px);
  z-index: 9999;
}

#notice-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Keep your inner styles */
#notice-toast .notice-inner {
  padding: 15px;
	position: relative;
  border-left: 5px solid var(--color-secondary);
	border-radius: 6px;
	text-align: center;
}

#notice-toast .notice-dismiss {
  position: absolute;
  top: 2px;
  right: 2px;

  width: 30px;
  height: 30px;

  border: 0;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.06);
  color: inherit;

  cursor: pointer;
  line-height: 1;
}

#notice-toast .notice-dismiss:hover {
  background: rgba(0, 0, 0, 0.10);
}

#announcement *:first-child,
#notice *:first-child {
	margin-top: 0;
}
#announcement *:last-child,
#notice *:last-child {
	margin-bottom: 0;
}

#banner .content-wrapper,
#content .content-wrapper,
#secondary .content-wrapper {
	padding: 30px;
}

@media (max-width: 991px) {
	#banner .content-wrapper {
		padding-right: 0;
		padding-left: 0;
	}
	#banner .content-wrapper,
	#content .content-wrapper,
	#secondary .content-wrapper {
		padding-right: 15px;
		padding-left: 15px;
	}
}

#content,
#announcement {
	padding: 30px 0;
}

#banner {
	background: var(--bg-muted, #fff);
	background: -webkit-gradient(linear, left bottom, left top, from(var(--bg-muted, #fff)), to(#fff));
	background: -webkit-linear-gradient(bottom, var(--bg-muted, #fff) 0%, #fff 100%);
	background: -moz-linear-gradient(bottom, var(--bg-muted, #fff) 0%, #fff 100%);
	background: -o-linear-gradient(bottom, var(--bg-muted, #fff) 0%, #fff 100%);
	background: linear-gradient(0deg, var(--bg-muted, #fff) 0%, #fff 100%);
	position: relative;
	z-index: 1;
}

#announcement {
	background: #dadec8;
	border: 1px solid #7a8247;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	margin-bottom: 30px;
	padding: 30px;
}

#content .content-wrapper {
	background: var(--bg-none, #fff);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

@media (max-width: 767px) {
	#content .col + .col {
		padding-top: 30px;
	}
}

#secondary .content-wrapper {
	background: var(--bg-muted, #fff);
}

.content .row + .row {
	margin-top: 30px;
}

.news-item {
	border-top: 1px solid #d8c9c2;
	margin-top: 30px;
	padding-top: 30px;
}
.news-item:last-of-type {
	padding-bottom: 30px;
}

.callout {
	background: var(--bg-muted, #fff);
	margin-bottom: 30px;
	padding: 10px;
}
.newsletter-signup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.newsletter-signup input[type="text"] {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	   -moz-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	height: 36px;
	margin-right: 4px;
}

@media (max-width: 1200px) {
	.newsletter-signup {
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
	}
	.newsletter-signup input {
		margin-bottom: 4px;
	}
}

.cta {
	background: #5d514a;
	border-top: 4px solid #fff;
	padding: 30px 0;
}
.cta .btn {
	font-size: 18px;
}
.cta .content-wrapper {
	background: var(--bg-none, #fff) !important;
	border: 1px solid #d8c9c2;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	padding: 0 0 0 30px !important;
}
.cta-content {
	border-left: 20px solid var(--color-primary);
	padding: 30px;
}
.cta-content *:first-child {
	margin-top: 0;
}
.cta-content *:last-child {
	margin-bottom: 0;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 15px;
}
.cta-actions > * {
	margin-right: 10px;
}
.cta-actions > *:last-child {
	margin-right: 0;
}
.cta-disclaimer {
	font-style: italic;
	font-size: 14px;
}

.cta.cta-celebration {
	background: transparent;
	border: none;
	padding: 30px 0 0;
}
.cta.cta-celebration .content-wrapper {
	border: none;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/*
.cta.cta-celebration .content-wrapper {
	border-color: #7a8247;
}
.cta.cta-celebration .cta-content {
	border-color: var(--color-secondary);
}
*/

@media (min-width: 1100px) {
	.cta.cta-celebration .content-wrapper {
		margin-right: -50px;
		margin-left: -50px;
	}
}

@media (max-width: 991px) {
	.cta .btn {
		font-size: 16px;
	}
	.cta .content-wrapper {
		padding-left: 15px;
	}
	.cta .content-wrapper .col {
		width: -webkit-calc(100% - 15px);
		width: -moz-calc(100% - 15px);
		width: calc(100% - 15px);
	}
	.cta h2 {
		font-size: 28px;
	}
	.cta-actions > * {
		margin-bottom: 10px;
	}
	.cta-actions > *:last-child {
		margin-bottom: 0;
	}
}

#secondary + .cta {
	background: var(--bg-none, #fff);
}
#secondary + .cta .container {
	background: var(--bg-muted, #fff);
}

.btn,
a.btn {
	color: #fff;
	padding: 8px 30px;
}
.btn-primary {
	background: var(--color-primary, #fff);
	background: -webkit-gradient(linear,left bottom, left top,from(rgba(168, 92, 68, 1)), to(rgba(191, 111, 84, 1)));
	background: -webkit-linear-gradient(bottom,rgba(168, 92, 68, 1) 0%, rgba(191, 111, 84, 1) 100%);
	background: -moz-linear-gradient(bottom,rgba(168, 92, 68, 1) 0%, rgba(191, 111, 84, 1) 100%);
	background: -o-linear-gradient(bottom,rgba(168, 92, 68, 1) 0%, rgba(191, 111, 84, 1) 100%);
	background: linear-gradient(0deg,rgba(168, 92, 68, 1) 0%, rgba(191, 111, 84, 1) 100%);
	border-color: #9e533e;
}
.btn-primary:hover {
	background: #8F4A36;
	background: var(--color-primary, #fff);
	background: -webkit-gradient(linear,left bottom, left top,from(rgba(143, 74, 54, 1)), to(rgba(168, 92, 68, 1)));
	background: -webkit-linear-gradient(bottom,rgba(143, 74, 54, 1) 0%, rgba(168, 92, 68, 1) 100%);
	background: -moz-linear-gradient(bottom,rgba(143, 74, 54, 1) 0%, rgba(168, 92, 68, 1) 100%);
	background: -o-linear-gradient(bottom,rgba(143, 74, 54, 1) 0%, rgba(168, 92, 68, 1) 100%);
	background: linear-gradient(0deg,rgba(143, 74, 54, 1) 0%, rgba(168, 92, 68, 1) 100%);
	border-color: #7f3f2e;
}

.content-cards {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.content-card {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	   -moz-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	padding: 10px;
	width: 100%;
	width: -webkit-calc(100% / 3);
	width: -moz-calc(100% / 3);
	width: calc(100% / 3);
}
.content-card-content {
	background: var(--bg-muted, #fff);
	border: 1px solid #e7ded9;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	height: 100%;
	padding: 10px
}
.content-card-content > :first-child {
	margin-top: 0;
}
.content-card-content > :last-child {
	margin-bottom: 0;
}

#secondary .content-card-content {
	background: var(--bg-none, #fff);
}

@media (max-width: 991px) {
	.content-cards {
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
	}
	.content-card {
		width: 100%;
	}
}

/* Tabs section container */
/* ------------------------------
   Section container
------------------------------ */

/* .content-tabs {
	margin-top: 28px;
	padding: 22px 0 0;
	border-top: 1px solid #e3d9d4;
} */

.content-tabs-inner {
	/* background: var(--bg-muted);
	padding: 18px 18px 22px; */
	/* border-top: 1px solid #e3d9d4;
	border-bottom: 1px solid #e3d9d4;
	border-radius: 6px; */
}

.content-tabs-title {
	margin: 0 0 12px;
	font-size: 20px;
}

/* ------------------------------
   Desktop tabs
------------------------------ */

.tablist {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #d8c9c2; /* anchor line */
}

/* Look like tabs: flat, attached, not "buttony" */
.tab {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background: transparent;
	border: 1px solid transparent;
	/* border-bottom: 0; */
	-webkit-border-radius: 6px 6px 0 0;
	        border-radius: 6px 6px 0 0;
	color: #3b2f2b;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	margin: 0 6px 0 0;
	padding: 10px 12px;
	position: relative;
	top: 1px; /* sit on the border line */
}

/* Selected tab becomes a "connected" surface */
.tab:hover,
.tab[aria-selected="true"] {
	background: #ffffff;
	border-color: #d8c9c2;
	color: #3b2f2b;
	text-decoration: none;
}
.tab[aria-selected="true"] {
	border-bottom-color: #fff;
}

/* small accent line on selected tab */
.tab[aria-selected="true"]::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 3px;
	background: #bf6f54;
	-webkit-border-radius: 6px 6px 0 0;
	        border-radius: 6px 6px 0 0;
}

/* Panel styling */
.tabpanel {
	background: #ffffff;
	border: 1px solid #d8c9c2;
	border-top: 0; /* connects to tabs */
	/* border-radius: 0 0 6px 6px; */
	padding: 16px 18px;
}

.tabpanel h4 {
	margin-top: 0;
}

/* .tabpanel ul {
	margin: 8px 0 16px 18px;
}

.tabpanel p {
	margin: 10px 0 8px;
} */

/* ------------------------------
   Mobile accordion mode
------------------------------ */

/*
We will toggle a .is-accordion class via JS.
When in accordion mode:
- hide the tablist
- show an accordion header for each panel
*/

.tabs.is-accordion .tablist {
	display: none;
}

.accordion-header {
	display: none;
}

.tabs.is-accordion .accordion-header {
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #d8c9c2;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	color: #3b2f2b;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.2;
	margin: 0 0 10px;
	padding: 12px 14px;
	position: relative;
	text-align: left;
}

.tabs.is-accordion .accordion-header:hover {
	border-color: #bf6f54;
}

.tabs.is-accordion .accordion-header:focus {
	outline: 2px solid #bf6f54;
	outline-offset: 2px;
}

/* caret */
.tabs.is-accordion .accordion-header::after {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #6d6a68;
	border-bottom: 2px solid #6d6a68;
	-webkit-transform: translateY(-60%) rotate(45deg);
	   -moz-transform: translateY(-60%) rotate(45deg);
	    -ms-transform: translateY(-60%) rotate(45deg);
	     -o-transform: translateY(-60%) rotate(45deg);
	        transform: translateY(-60%) rotate(45deg);
}

.tabs.is-accordion .accordion-header[aria-expanded="true"]::after {
	-webkit-transform: translateY(-40%) rotate(-135deg);
	   -moz-transform: translateY(-40%) rotate(-135deg);
	    -ms-transform: translateY(-40%) rotate(-135deg);
	     -o-transform: translateY(-40%) rotate(-135deg);
	        transform: translateY(-40%) rotate(-135deg);
}

/* In accordion mode, panels are fully bordered and separated */
.tabs.is-accordion .tabpanel {
	border: 1px solid #d8c9c2;
	border-top: 0;
	-webkit-border-radius: 0 0 6px 6px;
	        border-radius: 0 0 6px 6px;
	margin: -10px 0 16px; /* tuck under header */
	padding: 14px 14px 12px;
}

/* In accordion mode, we do not want "connected tab" behavior */
.tabs.is-accordion .tabpanel {
	border-top: 0;
}

/* If JS fails, show all panels (optional) */
.no-js .tabpanel[hidden] {
	display: block;
}


/* Contact */
#contact {
  background: url("../images/fdr-logo.png") no-repeat 0 50%;
  color: #fff;
  float: right;
  text-align: center;
  margin: -10px 0 0 0;
  padding-left: 60px;
}
#contact p {
  margin: 0;
  padding: 10px 0;
}
#contact a:link,
#contact a:visited {
  color: #fff;
  text-decoration: none;
}
#contact a:hover {
  text-decoration: underline;
}

#colophon {
	padding-bottom: var(--notice-offset);
}

#socket {
	color: #fff;
	font-size: 13px;
}

@media (max-width: 991px) {
	#contact {
		background: none;
		float: none;
		padding: 20px 0;
		text-align: left;
	}
}

@media (max-width: 767px) {
	.form-horizontal .form-group {
		margin-bottom: 0;
		padding-bottom: 7px;
	}
}

/* Email Newsletters */
.email-signup {
  background-color: #bf6f54;
  padding: 15px;
}
.email-signup h3 {
  font-size: 153.9%;
  font-weight: normal;
  color: #fff;
  font-family: Georgia, Times, serif;
  margin: 0 0 5px 0;
}
.side .email-signup p {
  font-size: 93%;
  color: #fff;
  font-family: Verdana, Arial, sans-serif;
}
.email-signup input.txt {
  font-size: 77%;
  vertical-align: middle;
  padding: 2px;
}
.email-signup input.btn {
  border: none;
  background: url(../images/sub-btn.gif) no-repeat 0 0 transparent;
  width: 110px;
  height: 27px;
  padding: 0;
  color: #fff;
  letter-spacing: 1px;
  font-size: 108%;
  font-family: Verdana, Arial, sans-serif;
  vertical-align: middle;
}
.email-signup input.btn:hover {
  background: url(../images/sub-btn-hover.gif) no-repeat 0 0 transparent;
  cursor: pointer;
}
/* @end */



/*= Utility Navigation
==============================================================================*/
#util-nav {
  float: right;
  font-size: 14px;
  padding: 10px 0 15px;
}
#util-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#util-nav ul li {
  display: inline-block;
}
#util-nav ul li a {
  display: block;
  padding: 5px 15px;
  text-align: center;
}
#util-nav ul li a {
  text-decoration: none;
}
#util-nav ul li a:active,
#util-nav ul li a:focus,
#util-nav ul li a:hover {
  text-decoration: underline;
}
#util-nav .btn {
  color: #fff;
  font-size: 16px;
}
#util-nav .btn:active,
#util-nav .btn:focus,
#util-nav .btn:hover {
  text-decoration: none;
}
#util-nav .btn-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#util-nav .btn-icon i {
  font-size: 20px;
  margin-right: 10px;
}
#util-nav .btn-icon .btn-text {
  display: inline-block;
  vertical-align: middle;
}

/* Nav */
#nav-wrap {
  height: 39px;
  background-color: #bf6f54;
}
#nav {
  width: 910px;
  margin-left: auto;
  margin-right: auto;
}
#nav ul {
  width: 910px;
  position: absolute;
  margin: -13px 0 0 0;
  padding: 0;
}
#nav ul li {
  list-style: none;
  float: left;
}
#nav ul li a {
  display: block;
  line-height: 39px;
  padding: 13px 0 0 0;
  text-align: center;
  font-size: 182%;
  font-variant: small-caps;
  font-family: Georgia, Times, serif;
}
#nav ul li a:link, #nav ul li a:visited {
  color: #fffefd;
  text-decoration: none;
}

#nav ul li#n-about a {
  width: 150px;
  padding-right: 9px;
}
#nav ul li#n-about a:hover {
  background: url(../images/nav-about-bkg.png) no-repeat 0 0;
}
#nav ul li#n-about li a {
  width: 100%;
}

#nav ul li#n-assessment a {
  width: 180px;
  padding-right: 9px;
}
#nav ul li#n-assessment a:hover {
  background: url(../images/nav-assessment-bkg.png) no-repeat 0 0;
}

#nav ul li#n-how a {
  width: 180px;
  padding-right: 9px;
}
#nav ul li#n-how a:hover {
  background: url(../images/nav-assessment-bkg.png) no-repeat 0 0;
}

#nav ul li#n-benefits a {
  width: 147px;
  padding-right: 9px;
}
#nav ul li#n-benefits a:hover {
  background: url(../images/nav-benefits-bkg.png) no-repeat 0 0;
}
#nav ul li#n-benefits li a {
  width: auto;
}

#nav ul li#n-order-online a {
  width: 195px;
  padding-right: 9px;
}

#nav ul li#n-order-online a:hover {
  background: url(../images/nav-order-online-bkg.png) no-repeat 0 0;
}

#nav ul li#n-signup {
  padding: 15px 0 0 0;
  float: right;
}
#nav ul li#n-signup a {
  width: 135px;
  height: 35px;
  background: url(../images/signup-btn.gif) no-repeat 0 0;
  padding: 0;
  line-height: 35px;
}
#nav ul li#n-signup a:hover {
  background-position: 0 -35px;
}
/* Nav Drop Down */
#nav ul ul {
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	background: url(/images/nav-drop-bkg.png) no-repeat 0 100%;
	width: 213px;
	white-space: normal;
	z-index: 200;
}
#nav ul li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding-top: 0;
	padding-bottom: 10px;
}
#nav ul li ul li {
	background-image: none;
	height: 22px;
	float: none;
}
#nav ul li ul li.shadow {
	height: 9px!important;
	width: 207px!important;
	margin: 0 0 0 1px;
	padding: 0;
	overflow: hidden;
	background: url(/images/nav-drop-top.gif) no-repeat 0 0;
	display: block;
	float: left;
}
#nav ul li ul li a {
	text-align: left;
	line-height: 22px;
	padding: 0 10px;
	margin: 0 5px 0 1px;
	font-size: 108%;
	display: block;
	font-weight: normal;
	text-transform: none;
	background: url(/images/nav-drop-div.gif) no-repeat 0 100%!important;
	letter-spacing: 0;
}
#nav ul li ul li a:link, #nav ul li ul li a:visited {
	color: #2e2e2e!important;
}
#nav ul li:hover ul, #nav ul li.sfhover ul {
	left: auto;
}
#nav ul li ul li a:hover {
	background: url(/images/nav-drop-rollover.jpg) no-repeat 0 100%!important;
	color: #156fa0!important;
}


/* Bottom Nav */
#btm-nav {
  width: 600px;
  float: left;
  display: inline;
}
#btm-nav ul {
  margin: 0;
  padding: 0 0 20px 0;
}
#btm-nav ul li {
  list-style: none;
  padding: 0 30px 0 0;
  float: left;
}
#btm-nav ul li a {
  display: block;
}
#btm-nav ul li a:link, #btm-nav ul li a:visited {
  color: #fff;
  text-decoration: none;
}
#btm-nav ul li a:hover {
  text-decoration: underline;
}
/* @end */

/* Toggle button positioning: stays fixed in same spot */
.mobile-menu-toggle {
	position: fixed;
	top: var(--hamburger-top);
	right: 14px;
	z-index: 1002;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	display: none; /* shown via media query */
	cursor: pointer;
}

/* Hamburger icon */
.hamburger {
	display: inline-block;
	width: 22px;
	height: 16px;
	position: relative;
}

.hamburger-line {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	background: #3b2f2b;
	-webkit-border-radius: 2px;
	        border-radius: 2px;
	-webkit-transition: opacity 200ms ease, top 200ms ease, -webkit-transform 200ms ease;
	transition: opacity 200ms ease, top 200ms ease, -webkit-transform 200ms ease;
	-o-transition: opacity 200ms ease, top 200ms ease, -o-transform 200ms ease;
	-moz-transition: transform 200ms ease, opacity 200ms ease, top 200ms ease, -moz-transform 200ms ease;
	transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
	transition: transform 200ms ease, opacity 200ms ease, top 200ms ease, -webkit-transform 200ms ease, -moz-transform 200ms ease, -o-transform 200ms ease;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 7px; }
.hamburger-line:nth-child(3) { top: 14px; }

/* Active state => X */
.mobile-menu-open .hamburger-line:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.mobile-menu-open .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-open .hamburger-line:nth-child(3) {
	top: 7px;
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

/* Overlay */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 200ms ease, visibility 200ms ease;
	-o-transition: opacity 200ms ease, visibility 200ms ease;
	-moz-transition: opacity 200ms ease, visibility 200ms ease;
	transition: opacity 200ms ease, visibility 200ms ease;
	z-index: 1000;
}

.mobile-menu-open .mobile-menu-overlay {
	opacity: 1;
	visibility: visible;
}

/* Open */
.mobile-menu-open .mobile-menu {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	     -o-transform: translateX(0);
	        transform: translateX(0);
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 320px;
	max-width: 86vw;
	background: #ffffff;
	border-left: 1px solid #d8c9c2;
	-webkit-transform: translateX(100%);
	   -moz-transform: translateX(100%);
	    -ms-transform: translateX(100%);
	     -o-transform: translateX(100%);
	        transform: translateX(100%);
	-webkit-transition: -webkit-transform 240ms ease;
	transition: -webkit-transform 240ms ease;
	-o-transition: -o-transform 240ms ease;
	-moz-transition: transform 240ms ease, -moz-transform 240ms ease;
	transition: transform 240ms ease;
	transition: transform 240ms ease, -webkit-transform 240ms ease, -moz-transform 240ms ease, -o-transform 240ms ease;
	z-index: 1001;
	padding-top: 0; /* stays under hamburger */

	overflow: hidden; /* prevent body scroll inside container */
}

.mobile-menu li {
	margin: 0;
}

.mobile-menu-inner {
	height: 100vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	-ms-scroll-chaining: none;
	    overscroll-behavior: contain;
	padding: 16px 16px 16px 6px;
}

.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu-section-title a:not(.btn) {
	color: #3b2f2b;
}
.mobile-menu-item a.btn {
	margin-bottom: 6px;
	margin-left: 10px;
	width: 100%;
	max-width: 50%;
}


.mobile-menu-item a:not(.btn):hover {
	border-color: #bf6f54;
	background: #f7f1ee;
}

.mobile-menu .mobile-menu-divider {
	height: 1px;
	background: #e3d9d4;
	margin: 10px 0;
}

/* Submenu */
.mobile-menu-section-title {
	padding: 4px 10px;
	font-size: 14px;
	font-weight: 700;
	color: #3b2f2b;
}

.mobile-submenu {
	list-style: none;
	margin: 0 0 12px 10px;
	padding: 0;
	border-left: 2px solid #e3d9d4;
}

.mobile-submenu li a:not(.btn) {
	display: block;
	padding: 4px 10px;
	font-size: 14px;
	-webkit-border-radius: 6px;
	        border-radius: 6px;
	color: #3b2f2b;
	text-decoration: none;
	border: 1px solid transparent;
}

.mobile-submenu li a:not(.btn):hover {
	border-color: #bf6f54;
	background: #f7f1ee;
}


/* Caret */
.mobile-submenu-caret {
	float: right;
	width: 8px;
	height: 8px;
	border-right: 2px solid #6d6a68;
	border-bottom: 2px solid #6d6a68;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	margin-top: 4px;
	-webkit-transition: -webkit-transform 200ms ease;
	transition: -webkit-transform 200ms ease;
	-o-transition: -o-transform 200ms ease;
	-moz-transition: transform 200ms ease, -moz-transform 200ms ease;
	transition: transform 200ms ease;
	transition: transform 200ms ease, -webkit-transform 200ms ease, -moz-transform 200ms ease, -o-transform 200ms ease;
}

#mobile-menu a:not(.btn).current-menu-item {
	color: #ae654c;
}

/* Only show on xs */
@media (max-width: 991px) {
	.mobile-menu-toggle {
		display: -webkit-inline-box;
		display: -webkit-inline-flex;
		display: -moz-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		   -moz-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		   -moz-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.mobile-menu {
		display: block;
	}
}

@media (min-width: 992px) {
	.mobile-menu,
	.mobile-menu-overlay {
		display: none;
	}
}



/* @group Default Headings */
/* .content h1,
.content h2 {
  padding: 5px 0 0 0;
  margin: 0 0 10px 0;
} */

.content * + h2,
.content * + h3 {
	margin-top: 30px;
}

.widget-area h2 {
  margin: 0 0 10px 0;
}
/* .widget-area h3 {
  font-size: 14px;
} */
/* .widget-area h4 {
  font-size: 85%;
  font-family: "Lucida Grande", Arial, sans-serif;
  font-weight: bold;
  color: #4b4139;
  margin: 0 0 7px 0;
} */
/* @end */

/* @group Common Text Styles */
.page-titlebox h1 {
	margin: 0 0 0 0;
	padding: 15px 0 0 21px;
	color: #bfd5e1;
	text-transform: capitalize;
	font: small-caps bold 231% "CapitalsRegular", Georgia, Times, serif;
	letter-spacing: 2px;
}
.page-titlebox h2 {
	font-size: 182%;
	margin: 0 0 15px 0;
	padding: 0 0 0 22px;
  font-family: Georgia, Times, serif;
  font-style: italic;
	font-weight: normal;
	color: #fffefd;
	line-height: 120%;
}
.bg-header {
  background: #90847b;
  color: #fff;
  padding: 25px;
}
.bg-header h1 { color: #fff; }
.bg-header p { margin: 0; }
.bg-header a:link,
.bg-header a:visited {
  color: #fff;
  text-decoration: underline;
}
.bg h1 {
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 36px;
  line-height: 1.5;
  margin: 0;
}
.bg h1 small {
  color: #ddd;
}
.bg h2 {
  color: #fff !important;
  font-weight: normal;
}

.login { margin: 15px 0; }
#login { margin-right: 8px; }

.form-group { margin-bottom: 7px; }
.form-text {
  padding-top: 30px;
  padding-bottom: 30px;
}
.form-text p { font-size: 16px; }

.form-help {
  font-style: italic;
  padding-top: 60px;
  font-size: 15px;
}

.form-section {
  background: #eee;
  margin-top: 1px;
  margin-bottom: 1px;
  padding-top: 7px;
}
.form-group .form-section {
  padding-top: 7px;
  padding-bottom: 7px;
}
.form-section:hover { background: #ddd; }
.form-submit { padding: 25px 15px; }

.forgot-link {
  padding-top: 12px;
  font-size: 14px;
  font-weight: bold;
}

.error { color: #c00; }

.home-no_route .content {
	padding: 40px;
}
.content .intro {
  font-weight: bold;
}

.content p.sig {
  text-align: right;
  color: #685c53;
}
.content p.sig span {
  display: block;
  padding: 0 170px 10px 0;
}

/* Read More Link */
.read-more-btm {
	margin-top: 30px;
}
.read-more-btm a {
	font-weight: bold;
}
.read-more-btm a:link,
.read-more-btm a:visited {
	color: #4b4139;
}
.read-more-btm a:link span,
.read-more-btm a:visited span {
	color: #bf6f54;
	text-decoration: underline;
}
.read-more-btm a:hover,
.read-more-btm a:hover span {
	text-decoration: none;
}

.side-photo-wrap {
	width: 201px;
	height: 295px;
	float: left;
}
.side-photo {
	width: 281px;
	height: 375px;
	background: url(/images/front_end/side-photo-bkg.png) no-repeat 0 0;
	position: absolute;
	z-index: 100;
	margin: -295px 0 0 -80px;
}
.side-photo .paperclip {
	width: 71px;
	height: 108px;
	background: url(/images/front_end/side-photo-paperclip.png) no-repeat 0 0;
	position: absolute;
	z-index: 300;
	margin: 5px 0 0 5px;
}
.side-photo img {
	position: absolute;
	z-index: 200;
	margin: 8px 0 0 9px
}


/* .sidebar-content {
  background: #fff;
  margin-top: 30px;

}
.home-index .sidebar-content { margin-top: 0;} */
/* .widget-area p {
  margin: 0 0 3px 0;
  line-height: 140%;
} */
.widget-area p.allnews {
  text-align: right;
  color: #849148;
  font-weight: bold;
}
.widget-area p.allnews a:link,
.widget-areap.allnews a:visited {
  color: #849148;
}

/* Accordion Nav */
.sidebar-accordion {
	background: var(--bg-muted);
	padding: 20px;
}

/* .accordion {
	border-bottom: 1px solid #74763b;
}
.accordion h3 {
	border-bottom: none !important;
	color: #fffefd;
	cursor: pointer;
	font-size: 138.5%;
	font-weight: normal;
	font-family: Georgia, Times, serif;
	line-height: 38px;
	margin: 0;
  padding: 0 36px 0 15px;
  position: relative;
} */

.accordion h3 {
	background: #fff;
	cursor: pointer;
	margin: 2px 0;
	padding: 10px;
	position: relative;
}
.accordion h3:active,
.accordion h3:focus {
	outline: 0;
}
.accordion h3.ui-state-active {
	background-color: #e1ded0;
}

.accordion h4 {
	margin-bottom: 1em;
}

.accordion .accordion-content {
	background: #fff;
	padding: 5px;
	width: 100%!important;
}

/* .accordion h3.acnav1,
.accordion h3.acnav1-open {
	background: #898b45;
	background: -moz-linear-gradient(top, #898b45 0%, #a4a753 100%);
	background: -webkit-linear-gradient(top, #898b45 0%,#a4a753 100%);
	background: linear-gradient(to bottom, #898b45 0%,#a4a753 100%);
	border: 1px solid #74763b;
}
.accordion h3.acnav2,
.accordion h3.acnav2-open {
	background: #83929a;
	background: -moz-linear-gradient(top, #83929a 0%, #9eb1ba 100%);
	background: -webkit-linear-gradient(top, #83929a 0%,#9eb1ba 100%);
	background: linear-gradient(to bottom, #83929a 0%,#9eb1ba 100%);
	border: 1px solid #75838a;
}
.accordion h3.acnav3,
.accordion h3.acnav3-open {
	background: #bf6f54;
	background: -moz-linear-gradient(top, #bf6f54 0%, #db7f60 100%);
	background: -webkit-linear-gradient(top, #bf6f54 0%,#db7f60 100%);
	background: linear-gradient(to bottom, #bf6f54 0%,#db7f60 100%);
	border: 1px solid #af664d;
}
.accordion h3.acnav4,
.accordion h3.acnav4-open {
	background: #4b4139;
	background: -moz-linear-gradient(top, #4b4139 0%, #5c5046 100%);
	background: -webkit-linear-gradient(top, #4b4139 0%,#5c5046 100%);
	background: linear-gradient(to bottom, #4b4139 0%,#5c5046 100%);
	border: 1px solid #4b4139;
} */

/* .accordion p {
	font: 400 14px/1.5 Times, serif;
  margin-bottom: 10px;
}
.accordion p:last-child { margin-bottom: 0; }

.accordion .accordion-content {
  background: #f9f7f3;
	border: 1px solid #4b4139;
	border-top: none;
  border-bottom: none;
	color: #4b4139;
	font: 400 14px/1.5 Times, serif;
	padding: 15px;
  width: 100% !important;
}
.accordion .accordion-content h4 {
  font: 700 14px/1.5 Times, serif;
}
.accordion .accordion-content p {
	line-height: 150%;
}
.accordion .accordion-content ul {
  padding-left: 15px;
}
.accordion .accordion-content li {
  line-height: 120%;
  padding-bottom: 10px;
}
.accordion .accordion-content li:last-child { padding-bottom: 0; } */

.ui-icon {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.accordion .ui-icon {
  font-size: 22px;
  opacity: 0.6;
  position: absolute;
  top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
  right: 15px;
}
.accordion .ui-icon:before { content: "\f055"; }
.accordion .ui-state-active .ui-icon:before { content: "\f056"; }

.admin-agency-activity-tabs {
  margin-bottom: 20px;
}

.admin-agency-activity-panels {
  padding-top: 15px;
}

.g-recaptcha-parent {
  margin: 40px 0;
}
.g-recaptcha {
  -webkit-transform-origin:0 50%;
     -moz-transform-origin:0 50%;
      -ms-transform-origin:0 50%;
       -o-transform-origin:0 50%;
          transform-origin:0 50%;
}

/* @end */

textarea.message {
  margin-bottom: 1em;
}
/* @group Default Lists */
.widget-area ul.news {
  margin: 0;
  padding: 0;
}
.widget-area ul.news li {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 1px solid #bf6f54;
}
/* @end */

/* @group Forms */

/* @end */

/* @group Misc */
.clear {
  clear: both;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* @end */
.spinner {
  background:#FFFFFF url(../../../../images/ajax-loader-white.gif) no-repeat scroll center center;
  opacity:0.75;
  z-index:2000;
}
a.edit-content {
  float: right;
}

/** integritive */
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
.cf {
  *zoom: 1;
}

.site-footer {
  background-color: #78868d;
  font-size: 16px;
  padding: 20px 0;
  -webkit-box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.33);
  box-shadow: inset 0px 3px 5px 0px rgba(0,0,0,0.33);
}

.site-footer a {
  color: #fff;
}
.site-footer a:active,
.site-footer a:focus,
.site-footer a:hover {
  text-decoration: underline;
}

.site-footer h5 {
	font-size: 18px;
  font-weight: 700;
  margin: 15px 0 5px;
  text-transform: uppercase;
}

.site-footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
