/* colors */
/* navigation */
/* text colors: */
/* Department Sidebar Background Color */
/* Fonts */
/* Utility Styles */
/* partial _utilities.scss */
/* colors */
/* navigation */
/* text colors: */
/* Department Sidebar Background Color */
/* global */
.padding-5 {
  padding: 5px;
}

/* home-page */
.home-content .padding-x-20 {
  padding-left: 20px;
  padding-right: 20px;
}
.home-content .padding-x-30 {
  padding-left: 30px;
  padding-right: 30px;
}
.home-content .padding-t-10 {
  padding-top: 10px;
}
.home-content .padding-10-20 {
  padding: 10px 20px;
}
.home-content .bg-navigation-green {
  background-color: #3a401d;
}

.kb-button {
  display: inline-flex;
  overflow: hidden;
  position: relative;
  text-align: center;
  z-index: 1;
}

.kb-button:not(.kb-btn-global-inherit) {
  transition: none !important;
}

hr.divider {
  border-top: 1px solid #ddd;
  margin: 0 auto;
  margin-top: 2px;
  margin-bottom: 3px;
  padding: 0px;
}

div.divider-outer {
  text-align: center;
  padding: 0 170px 0 170px;
}

@media (max-width: 550px) {
  div.divider-outer {
    padding: 0 95px 0 95px;
  }
}
body {
  font-size: 18px;
}

ol,
ul {
  margin-left: 1em;
  margin-bottom: 20px;
}

#widgets ul li {
  margin-left: 0px;
}

.widget-title,
.widget-title-home h3 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 23px;
  margin: 0;
  padding: 0 0 20px 0;
  text-align: left;
}

.home-below-nav {
  height: 75px;
}

.top-menu {
  padding: 10px 6px;
  margin: 0 5px;
  margin-bottom: 15px;
  background: none;
  border: none;
  border-radius: 3px;
  color: #204e78;
  line-height: 1.25;
}
.top-menu li > a {
  padding: 2px 4px !important;
  color: #204e78;
  border-left: none;
}

#menu-top_menu {
  display: none;
}

@media (max-width: 550px) {
  #menu-top_menu {
    display: block;
  }
}
/* selectNav.js styles */
.selectnav {
  display: none;
}

/* small screen */
@media screen and (max-width: 640px) {
  .js #menu-main_menu {
    display: none;
  }
  .js .selectnav {
    display: block;
  }
  #top-menu-logo-container {
    display: flex;
    flex-direction: column-reverse;
  }
}
#header select.selectnav {
  padding: 7px;
  width: 100%;
}

/* partial _selectnav.scssclass - applies to select element itself, not a wrapper element. */
.selectnav {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 100%; /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #3a401d;
  /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. 
  for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference

   */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #3a401d 0%, #3a401d 100%);
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right 0.7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 0.65em auto, 100%;
}

/* Hide arrow icon in IE browsers */
.selectnav::-ms-expand {
  display: none;
}

/* Hover style */
.selectnav:hover {
  border-color: yellow;
}

/* Focus style */
.selectnav:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #f5f8fc;
  outline: none;
}

/* Set options to normal weight */
.selectnav option {
  font-weight: normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir=rtl] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
  background-position: left 0.7em top 50%, 0 0;
  padding: 0.6em 0.8em 0.5em 1.4em;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
  color: graytext;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
  border-color: #aaa;
}

/* =Globals
-------------------------------------------------------------- */
#container {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 1400px;
  padding: 0px 25px;
}

/* menus */
#menu-main_menu a {
  border-left: 1px solid #585858;
  font-size: 19px;
  font-weight: 500 !important;
  height: 45px;
  line-height: 45px;
  margin: 0;
  padding: 0 16px;
  text-decoration: none;
  text-shadow: none;
}

#menu-main_menu li li a:hover {
  background: #e1eaf6 !important;
}

#menu-main_menu .current_page_item a, #menu-main_menu .current_page_ancestor a, #menu-main_menu .current-menu-item a, #menu-main_menu .current-menu-ancestor a {
  background-color: #4d063a;
}

.menu li li a,
.sub-menu li a {
  background-color: transparent !important;
  border: none;
  border-left: none !important;
  color: #444 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  height: auto !important;
  height: 20px !important;
  line-height: 20px !important;
  padding: 9px 15px !important;
  text-shadow: none;
}

.sub-menu li.current_page_item a, .sub-menu li.current-menu-item a {
  background: #dae5f4 !important;
}

.sub-menu li li:first-of-type a {
  border-top: 1px solid #b2b2b2;
}

/** / SUB-HEADER NAVIGATION ///////////////////////////// */
/** / SUB-HEADER NAVIGATION ///////////////////////////// */
/** / SUB-HEADER NAVIGATION ///////////////////////////// */
/** / SUB-HEADER NAVIGATION ///////////////////////////// */
#menu-sub_head_menu a {
  font-size: 16px;
}

.sub-header-menu a:hover {
  background-color: #e1eaf6;
}

.sub-header-menu .current_page_item a,
.sub-header-menu .current-menu-item a {
  background-color: #e1eaf6;
}

.sub-header-menu li ul.sub-menu .menu-item a {
  font-weight: 500 !important;
  color: #444 !important;
}
.sub-header-menu li ul.sub-menu .menu-item a:hover {
  background-color: #e1eaf6 !important;
}

#breadcrumbs {
  font-size: 16px;
  font-weight: 500;
  margin: 0px 0;
  margin: 5px 0;
  margin-left: 10px;
  color: white;
}
#breadcrumbs a {
  color: white;
}
#breadcrumbs a:hover {
  color: #255580;
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  font-weight: 600 !important;
  font-size: 18px;
}
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
  color: #6b8942;
}

/*
.home #wrapper {
	//background-color: transparent;
	//border: none;
	//margin: 20px auto 20px auto;
	//padding:0;
}

#header {
	margin:0;
}

#footer {
	clear:both;
	margin:0 auto;
	max-width:960px;
	padding:10px 25px 0 25px;
}

#footer-wrapper {
	margin:0;
	padding:0;
} */
/* =Featured Content
-------------------------------------------------------------- */
/* partial _new-buttons.scss */
button, a.button, input[type=reset], input[type=button], input[type=submit] {
  background-color: #255580;
  /* background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eaeaea)); */
  /* background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea); */
  background-image: none;
  box-shadow: none;
  border: none;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-shadow: none;
  vertical-align: middle;
  white-space: nowrap;
}

button:hover {
  background-color: #5696ce;
  background-image: none;
  filter: none;
  border: none;
  text-shadow: none;
  color: white;
}

button.toggle-me, button.toggle-me2 {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  background-color: #3a401d;
  background-image: -webkit-linear-gradient(top, #3a401d, #3a401d);
  background-image: -moz-linear-gradient(top, #3a401d, #3a401d);
  background-image: -ms-linear-gradient(top, #3a401d, #3a401d);
  background-image: -o-linear-gradient(top, #3a401d, #3a401d);
  background-image: linear-gradient(top, #3a401d, #3a401d);
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$navigation-green, endColorstr=$navigation-green);
  border: 1px solid #3a401d;
  border-bottom-color: #3a401d;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  margin-top: 5px;
  padding: 5px 8px;
  text-decoration: none;
  text-shadow: none;
  vertical-align: middle;
  white-space: nowrap;
}
button.toggle-me .dashicons, button.toggle-me2 .dashicons {
  font-size: 12px;
}

button.toggle-me:hover, button.toggle-me2:hover, button.toggle-me.active, button.toggle-me2.active {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  background-color: #99a94d;
  background-image: -webkit-linear-gradient(top, #99a94d, #99a94d);
  background-image: -moz-linear-gradient(top, #99a94d, #99a94d);
  background-image: -ms-linear-gradient(top, #99a94d, #99a94d);
  background-image: -o-linear-gradient(top, #99a94d, #99a94d);
  background-image: linear-gradient(top, #99a94d, #99a94d);
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=$navigation-green-hover, endColorstr=$navigation-green-hover);
  border: 1px solid #99a94d;
  border-bottom-color: #99a94d;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  margin-top: 5px;
  padding: 5px 8px;
  text-decoration: none;
  text-shadow: none;
  vertical-align: middle;
  white-space: nowrap;
}
button.toggle-me:hover .dashicons, button.toggle-me2:hover .dashicons, button.toggle-me.active .dashicons, button.toggle-me2.active .dashicons {
  font-size: 12px;
}

a.button.pay-tax {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 16px;
}
a.button.pay-tax:hover {
  background-color: #6b8942;
  background-image: none;
  color: white;
  border: none;
}

a.button-new.dark-blue {
  background-color: #306fa8;
  background-image: none;
  border: 1px solid #306fa8;
  color: #fff;
  text-shadow: none;
  font-weight: 500;
}

a.button-new.dark-blue:hover {
  background-color: #255580;
  background-image: none;
  border: 1px solid #255580;
  color: #fff;
}

a.button-new.eggplant {
  background-color: #65084c;
  background-image: none;
  border: 1px solid #65084c;
  color: #fff;
  text-shadow: none;
  font-weight: 500;
}

a.button-new.eggplant:hover {
  background-color: #4d063a;
  background-image: none;
  border: 1px solid #4d063a;
  color: #fff;
}

a.button-new.chocolate {
  background-color: #563b28;
  background-image: none;
  border: 1px solid #563b28;
  color: #fff;
  text-shadow: none;
  font-weight: 500;
}

a.button-new.chocolate:hover {
  background-color: #442f20;
  background-image: none;
  border: 1px solid #442f20;
  color: #fff;
}

a.button-new.olive-green {
  background-color: #6b8942;
  background-image: none;
  border: 1px solid #6b8942;
  color: #fff;
  text-shadow: none;
  font-weight: 500;
}

a.button-new.olive-green:hover {
  background-color: #5e783a;
  background-image: none;
  border: 1px solid #5e783a;
  color: #fff;
}

a.button-new {
  color: #fff;
  border: 1px solid transparent;
  display: inline-block;
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  padding: 7px 10px;
  text-decoration: none;
  cursor: pointer;
  vertical-align: middle;
  white-space: nowrap;
}

.toggle-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: left;
  margin-bottom: 8px;
  margin-top: 5px;
}
.toggle-wrapper button.toggle-me,
.toggle-wrapper button.toggle-me2 {
  margin-right: 5px;
}

@media (max-width: 550px) {
  .toggle-wrapper {
    justify-content: center;
  }
}
.main-button-bar-heading {
  text-align: center;
}
.main-button-bar-heading h4 {
  color: gray;
  margin-top: 15px;
  margin-bottom: 0px;
  line-height: 1;
}

.main-button-bar-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(343px, 1fr));
  grid-gap: 10px;
  padding-top: 0px;
}
.main-button-bar-wrapper a.button1 {
  display: block !important;
  text-align: center;
  font-size: 26px !important;
  border-radius: 0 !important;
  padding: 20px 10px !important;
}
.main-button-bar-wrapper a .phone-text {
  font-size: 20px;
  color: #ee7;
  font-weight: 600 !important;
  display: none;
}
.main-button-bar-wrapper a .description-text {
  margin: 0;
  padding: 0;
  display: none;
}
.main-button-bar-wrapper a .phone-text.active {
  display: inline;
}
.main-button-bar-wrapper a .description-text.active {
  display: block;
}
.main-button-bar-wrapper p {
  font-size: 18px;
  font-weight: 300 !important;
  line-height: 27px;
  padding: 0 40px 0 40px;
  text-align: center;
}

.wp-block-group-image-strip {
  border-bottom: 5px solid #83a851;
}

#wrapper {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  clear: both;
  margin: 0px auto 20px auto !important;
  padding: 20px 40px 20px 20px !important;
  position: relative;
}
@media (max-width: 550px) {
  #wrapper {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
  }
}
#wrapper #content {
  flex-grow: 2;
  flex-basis: 300px;
}
#wrapper #widgets {
  flex-grow: 2;
  flex-basis: 300px;
  margin-top: 1.1em;
  margin-bottom: 0 !important;
  margin-left: 20px;
}
#wrapper .post-content-wrapper {
  margin-top: 35px;
  padding-left: 40px;
  padding-right: 40px;
}
#wrapper .post-content-wrapper .department-contact {
  font-style: italic;
  color: #332318;
}
@media (max-width: 550px) {
  #wrapper .post-content-wrapper {
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 0px;
  }
}
#wrapper h1.page-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #cdcdcd;
}
#wrapper .news-title-wrapper {
  padding: 40px 40px 20px 40px;
}

#featured {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 0px;
  margin-bottom: 10px;
}

#featured2 {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0px;
  margin-bottom: 10px;
}

#featured2 p {
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
  padding: 0 40px 0 40px;
  text-align: center;
}

#featured-image {
  margin: 40px 0 0 0;
}

#featured-image .fluid-width-video-wrapper {
  margin-left: -20px;
}

.featured-title {
  font-size: 60px;
  letter-spacing: -1px;
  margin: 0;
  padding-top: 40px;
  text-align: center;
}

.featured-subtitle {
  padding: 0 10px;
  text-align: center;
}

.featured-image img {
  margin-top: 44px;
}

/** Home Content styles */
.home-content-wrapper {
  background-color: white;
  border: 2px solid white;
  margin: 0;
  padding: 0px;
}

.content-title-home h3 {
  display: block;
  font-size: 16px;
  color: gray;
  font-weight: 700;
  line-height: 23px;
  margin: 0;
  padding: 0 0 20px 0;
  text-align: left;
}

/** *********************************************************************************************************************************  */
/** ***************************************** HOME CONTENT STYLES *******************************************************************  */
/** *********************************************************************************************************************************  */
.home-content p {
  font-size: 18px;
  line-height: 1.35;
  margin: 0.6em 0 1em 0;
}
.home-content h2 {
  margin: 0.7em 0 0.535em;
}
.home-content h3 {
  margin: 0.57em 0 0.25em;
}
.home-content h4 {
  margin: 0.35em 0 0.4em;
}
.home-content .wp-block-columns {
  margin-bottom: 0;
}
.home-content .wp-block-column {
  border: none;
}
.home-content .padding-10 {
  padding: 10px;
}
.home-content .wp-block-image img,
.home-content .wp-block-image.is-style-default img,
.home-content .wp-block-image.is-style-rounded img {
  -webkit-box-shadow: 3px 3px 5px 0px rgb(184, 184, 184);
  -moz-box-shadow: 3px 3px 5px 0px rgb(184, 184, 184);
  box-shadow: 3px 3px 5px 0px rgb(184, 184, 184);
}
.home-content .wp-block-kadence-posts .entry {
  box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.5);
  border-radius: 0.25rem;
  border: 1px solid #7f7f7f;
  margin-right: 5px;
  margin-left: 5px;
}
.home-content .wp-block-kadence-posts .content-bg.category-pb-zba {
  background-color: rgba(246, 223, 242, 0.4);
}
.home-content .wp-block-kadence-posts .content-bg.category-cac-csc {
  background-color: rgba(108, 136, 70, 0.25);
}
.home-content .wp-block-kadence-posts .content-bg.category-tb {
  background-color: rgb(225, 236, 251);
}
.home-content .wp-block-kadence-posts .category-tb .entry-title > a,
.home-content .wp-block-kadence-posts .category-general .entry-title > a,
.home-content .wp-block-kadence-posts .category-legislation .entry-title > a,
.home-content .wp-block-kadence-posts .category-recreation .entry-title > a {
  color: #204e78;
  font-size: 20px;
  font-weight: 700;
}
.home-content .wp-block-kadence-posts .category-tb .entry-title > a:hover,
.home-content .wp-block-kadence-posts .category-general .entry-title > a:hover,
.home-content .wp-block-kadence-posts .category-legislation .entry-title > a:hover,
.home-content .wp-block-kadence-posts .category-recreation .entry-title > a:hover {
  color: #3582c9;
}
.home-content .wp-block-kadence-posts .category-pb-zba .entry-title > a {
  color: #4d063a;
  font-size: 20px;
  font-weight: 700;
}
.home-content .wp-block-kadence-posts .category-pb-zba .entry-title > a:hover {
  color: #ac0d81;
}
.home-content .wp-block-kadence-posts .category-cac-csc .entry-title > a {
  color: #506731;
  font-size: 20px;
  font-weight: 700;
}
.home-content .wp-block-kadence-posts .category-cac-csc .entry-title > a:hover {
  color: #92b463;
}
.home-content h2.tribe-events-widget-events-list__header-title {
  font-size: 1.6em;
  font-weight: var(--tec-font-weight-bold);
  color: #255580;
  font-family: "Roboto", sans-serif;
}
.home-content .tribe-events-widget .tribe-events-widget-events-list__event-date-tag-month {
  color: #6b8942 !important;
  font-family: var(--tec-font-family-sans-serif);
  font-size: var(--tec-font-size-1);
  font-weight: var(--tec-font-weight-bold);
  line-height: var(--tec-line-height-2);
  color: var(--tec-color-text-secondary);
  text-transform: uppercase;
}
.home-content .tribe-events-widget-events-list__event-date-tag-daynum {
  color: #255b8c !important;
}
.home-content .tribe-events-widget-events-list__event-title-link {
  font-size: 16px !important;
}
.home-content .tribe-events-widget-events-list__event-venue-name {
  color: #8d8d8d !important;
}
.home-content .tribe-events-widget-countdown__number {
  color: #3075b4 !important;
  color: #ba4b2e !important;
  font-weight: 700 !important;
}
@media (max-width: 768px) {
  .home-content p {
    margin: 0.6em 0 1em 0;
  }
}
@media (max-width: 1380px) {
  .home-content .wp-block-kadence-posts .entry {
    margin-right: 10px;
    margin-left: 10px;
  }
}
/** *********************************************************************************************************************************  */
.page-template-government .post-entry ul {
  margin-left: 23px;
}
.page-template-government .post-entry li {
  font-size: 20px;
  line-height: 1.75;
}
.page-template-government .post-entry li a {
  font-size: 20px;
}

.post-entry table {
  margin-left: 0px !important;
}

.post-314 table {
  width: 90%;
}
.post-314 table tr {
  padding-bottom: 2px;
}

/** Department Sidebar styles */
.widget-wrapper {
  background-color: #f5f8fc;
  border: 1px solid #f5f8fc;
  border-radius: 0 !important;
  font-size: 16px;
  margin: 0 0 20px;
  padding: 25px;
  color: black !important;
}
.home .grid-fred .widget-wrapper {
  background-color: white !important;
  border: 1px solid white !important;
}

/* Responsive iFrame */
.responsive-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  overflow: hidden;
}

.responsive-iframe-container iframe,
.vresponsive-iframe-container object,
.vresponsive-iframe-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

@media (max-width: 550px) {
  .big-container {
    display: none;
  }
  .small-container {
    height: 600px;
  }
  .small-container iframe {
    min-height: 600px;
  }
  .page-template-government #widgets {
    display: none;
  }
}
@media (min-width: 550px) {
  .small-container {
    display: none;
    height: 600px;
  }
  .small-container iframe {
    min-height: 600px;
  }
}
/** *********************************************************************************************************************************  */
ul.rec-page-nav {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
}
ul.rec-page-nav > li {
  margin-right: 15px;
  margin-left: 0px;
  margin-bottom: 5px;
}
ul.rec-page-nav > li > a {
  font-size: 18px;
  letter-spacing: 0.1px;
  color: #255580;
  text-decoration: none;
  font-weight: 500;
}
ul.rec-page-nav > li > a:hover {
  color: #99a94d;
  text-decoration: underline;
}

@media (min-width: 660px) {
  ul.rec-page-nav {
    flex-direction: row;
  }
}
/** *********************************************************************************************************************************  */
#footer {
  margin: 0 auto;
  margin-top: 0px;
  max-width: 1348px;
  padding: 0px 25px;
  padding-top: 20px;
  color: white;
  font-size: 18px;
  background-color: #3a411d;
}
#footer a {
  font-size: 18px;
  font-weight: 500 !important;
}
#footer .copyright,
#footer .scroll-top,
#footer .powered {
  margin-bottom: 1px;
}

/*# sourceMappingURL=styles-mar2023.css.map */
