@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /*scroll-padding-top: 60px;*/
}

body {
  margin: 0px;
  color: #323232;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #FFFFFF;
}

h1 {
  margin: 1.5rem 0;
  color: #123654;
  font-size: 45px;
  font-weight: 400;
}

h2 {
  margin: 1.5rem 0;
  color: #181818;
  font-weight: 400;
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

a {
  color: #27733A;
  text-decoration: none;
  transition: all ease-in-out 0.12s;
}

a:hover {
  color: #005C9C;
}

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

sup, sub {
  position: relative;
  top: -0.4em;
  vertical-align: baseline;
}

sub {
  top: 0.4em;
}

#wrapper {
  text-align: center;
}

#container {
}

#inner {
}

#header-wrapper {
}

#top {
  padding: 5px 0px;
  color: #FFFFFF;
  background: #27733A;
}

#top-outer {
}

#top-inner {
  text-align: right;
}

#top-social {
  font-size: 21px;
}

#top-social a {
  color: #FFFFFF;
}

#header {
}

#header-outer {
}

#header-inner {
}

#header-left {
  float: left;
}

#logo {
  padding: 20px 0px;
}

#logo a {
  display: block;
}

#logo a img {
  display: block;
}

#header-right {
  float: right;
  padding: 70px 0px 0px 0px;
  text-align: right;
}

#top-links {
}

#top-links a {
  display: inline-block;
  margin: 0px 5px;
}

#navigation {
  background: #FFFFFF;
  border-top: 1px solid #F2F2F2;
}

#navigation-outer {
}

#navigation-inner {
}

#navigation-left {
  float: left;
}

#navigation-right {
  float: right;
}

#top-buttons {
  padding-top: 10px;
}

#content {
}

#footer {
  padding: 40px 0px;
  color: #FFFFFF;
  font-size: 14px;
  background: #27733A;
}

#footer-outer {
}

#footer-inner {
}

#footer a {
  color: #FFFFFF;
  text-decoration: none;
}

#footer a:hover {
}

#footer p.footer-heading {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
}

#footer-social {
  font-size: 21px;
}

#footer-bottom {
  padding: 10px 0px;
  color: #FFFFFF;
  font-size: 14px;
  background: #175B28;
}

#footer-bottom span.powered-by,
#footer-bottom span.powered-by a,
#footer-bottom span.powered-by a:hover {
  color: #FFFFFF;
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  color: #FFFFFF;
  line-height: 42px;
  text-align: center;
  background: #313131;
  border-radius: 6px;
  opacity: 0.75;
  cursor: pointer;
}

#back-to-top::after {
  display: block;
  margin: -1px 0px 0px 0px;
}

.clear-floats::after {
  content: "";
  display: block;
  clear: both;
}

/* Layout Classes */

div.div-outer {
  width: 1500px;
  margin: 0px auto;
  text-align: left;
}

div.div-inner {
  box-sizing: border-box;
}

/* Sticky Nav Styles */

body.sticky-nav #header-wrapper .div-outer,
body.sticky-nav #header-wrapper .div-inner {
  width: auto !important;
  max-width: none !important;
  padding: 0px !important;
}

body.sticky-nav #header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 20px;
  background: #FFFFFF;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

body.sticky-nav #top {
  display: none;
}

body.sticky-nav #header {
  float: left;
}

body.sticky-nav #logo {
  padding: 5px 0px;
}

body.sticky-nav #logo a img {
  height: 70px;
}

body.sticky-nav #header-right {
  display: none;
}

body.sticky-nav #navigation {
  float: right;
  padding: 5px 0px;
}

body.sticky-nav #content {
  padding-top: 270px;
}

@media only screen and (max-width: 1440px) {
  body.sticky-nav #navigation-main ul li a {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 1280px) {
  body.sticky-nav #navigation-right {
    display: none !important;
  }
  
  body.sticky-nav #navigation-main > ul > li > a {
  	padding: 20px 15px !important;
    font-size: 15px !important;
  }
}

/* Misc Styles */