/* -- CSS Navigation --
	To nagivate this CSS file, simply Search (CTRL + F) 		
		
    Table of Contents:
	1) DNN Fixes
    2) Global Styles
    3) 404 Styles
    4) Home Styles
    5) Internal Page Styles
    6) Blog Styles
    7) Media Queries
    
/* 


/* 1) DNN Fixes */
.numbers {
  font-size: 50px;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  color: #fff;
  font-weight: 600;
}

.numbers__window {
  display: inline-block;
  overflow: hidden;
  width: 0.6em;
  height: 1em;
}

.numbers__window__digit {
  font: inherit;
  word-break: break-all;
  display: block;
  width: 0;
  padding: 0 0.6em 0 0;
  margin: 0 auto;
  overflow: inherit;
  animation: counting 0.5s steps(10) forwards infinite;
  -webkit-animation: counting 0.5s steps(10) forwards infinite;
}

.numbers__window__digit::before {
  content: attr(data-fake);
  display: inline-block;
  width: 100%;
  height: auto;
}

@keyframes counting {
  100% {
    transform: translate3d(0, -5em, 0);
  }
}

.numbers__window__digit--1 {
  animation-iteration-count: 8;
}

.numbers__window__digit--2 {
  animation-iteration-count: 6;
}

.numbers__window__digit--3 {
  animation-iteration-count: 4;
}

.numbers__window__digit--4 {
  animation-iteration-count: 2;
}

.numbers__window__digit--5 {
  animation-iteration-count: 1;
}

/*@property --num {
  syntax: "<integer>";
  initial-value: 45000;
  inherits: false;
}*/
:root {
  --num: 45000;
}

.counter2 {
  animation: spinner 2s ease-in-out;
  -webkit-animation: spinner 2s ease-in-out;
  counter-reset: num var(--num);
  font-size: 50px;
  line-height: 1;
  margin-bottom: 5px;
  font-weight: 600 !important;
}

.counter2::after {
  content: counter(num);
}

@-webkit-keyframes spinner {
  from {
    --num: 0;
  }

  to {
    --num: 45000;
  }
}

@keyframes spinner {
  from {
    --num: 0;
  }

  to {
    --num: 45000;
  }
}

.is-section.layout-hidden-content {
  display: none !important;
}

.dummy-space {
  display: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

#dnn_FullScreenPaneA,
#dnn_FullScreenPaneB {
  margin: 0;
}

.powerforms-03 .btn,
.powerforms-03 .btn:link,
.powerforms-03 .btn:active,
.powerforms-03 .btn:visited,
.powerforms-03 .btn[type="button"],
.powerforms-03 .btn[type="submit"] {
  display: inline-block !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  color: #fff !important;
  padding: 0.6rem 2rem !important;
  background-color: #c4d600 !important;
  border: 4px solid #c4d600 !important;
  transition: all 250ms linear !important;
  height: auto !important;
  border-radius: 0 !important;
}

.powerforms-03 .btn:hover {
  color: #231f20 !important;
  background-color: transparent !important;
  border-color: #231f20 !important;
}

.floating-active a.btn-solid:any-link {
  font-size: 20px;
  padding: 0.4rem 1.2rem;
}

.nav-buttons a.footer-icon:any-link {
  width: 36px;
  height: 36px;
}

/* Mailchimp embed form styles */
#mc_embed_signup_scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.mc-field-group {
  width: 60%;
  min-width: 200px;
  margin: 0 auto;
}

.mc-field-group input {
  width: 100%;
}

.mc-field-group label {
  display: none;
}

/* 2) Global Styles ex. global typography, buttons, variables, anchor links, section backgrounds */

*:not(:defined) {
  display: none;
}

.scroll-to__anchor {
  scroll-margin-top: 150px;
}

#mc_embed_signup {
  background: transparent !important;
}

.header-pad {
  padding: 0 45px;
}

.btn-solid,
a.btn-solid:any-link {
  display: inline-block;
  font-weight: 700;
  font-size: 26px;
  color: #fff !important;
  padding: 0.6rem 2rem;
  background-color: #c4d600;
  border: 4px solid #c4d600;
  transition: all 250ms linear;
}

.btn-solid:hover,
a.btn-solid:any-link:hover {
  color: #231f20 !important;
  background-color: transparent;
  border-color: #231f20;
}

a.btn-border:any-link {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #ff671f;
  padding: 5px 0 0 0px;
  background-color: transparent;
  border-bottom: 10px solid #ff671f;
  transition: all 150ms linear;
}

a.btn-border.white:any-link {
  color: white;
  border-bottom: 10px solid white;
}

a.btn-border-green:any-link:hover {
  padding: 0 25px 5px 0;
  opacity: 0.8;
}

a.btn-border-green:any-link {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #c4d600;
  padding: 5px 0 0 0px;
  background-color: transparent;
  border-bottom: 10px solid #c4d600;
  transition: all 150ms linear;
}

a.btn-border:any-link:hover {
  padding: 0 25px 5px 0;
  opacity: 0.8;
}

.img-back {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.text-border {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 1;
}

.text-border:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 1px;
  border-bottom: 8px solid #ff671f;
  left: 0;
  bottom: 3px;
}

.text-border.tb-large:before {
  border-bottom-width: 12px;
}

.image-border {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.image-border:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 1px;
  border-bottom: 38px solid #ff671f;
  left: 0;
  bottom: 0;
}

hr {
  border-top: 2px solid #231f20;
}

.anchor-fix {
  position: relative;
  top: -160px;
}

/* WM Modal Styles */

wm-modal {
  --modal-width: clamp(320px, 80vw, 900px);
  --modal-height: auto;
}

.modal-content__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-content__container img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

.modal-content-text__container {
  text-align: center;
  margin-top: 1rem;
}

.popup__img {
  width: 50%;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  /* wm-modal {
    --modal-width: 80%;
    --modal-height: 60%;
  } */

  .popup__img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

/* Popup plugin styles */

.load-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  display: flex;
  flex-wrap: wrap;
  transform: translate(-50%, -50%);
  background-color: white;
  max-width: 80vw;
  align-items: center;
  flex-flow: column;
  min-width: 25em;
  padding-bottom: 10px;
  visibility: hidden;
  transition: 150ms all;
  box-shadow: rgb(0 0 0 / 20%) 2px 2px 10px 1px;
  opacity: 0;
}

.load-popup-active {
  visibility: visible;
  transition: 150ms all;
  box-shadow: rgb(0 0 0 / 60%) 5px 5px 30px 2px;
  opacity: 1;
  animation: load-popup 300ms 1;
}

@keyframes load-popup {
  0% {
    transform: translate(-50%, -50%) scale(20%);
    box-shadow: rgb(0 0 0 / 20%) 2px 2px 10px 1px;
  }

  25% {
    transform: translate(-50%, -50%) scale(90%);
    box-shadow: rgb(0 0 0 / 60%) 4px 4px 24px 2px;
  }

  50% {
    transform: translate(-50%, -50%) scale(110%);
    box-shadow: rgb(0 0 0 / 60%) 6px 6px 36px 3px;
  }

  100% {
    transform: translate(-50%, -50%) scale(100%);
    box-shadow: rgb(0 0 0 / 60%) 5px 5px 30px 2px;
  }
}

.load-popup-exit {
  position: absolute;
  top: clamp(0.5rem, 1.25vw, 1rem);
  right: clamp(0.5rem, 1.25vw, 1rem);
  background: none;
  border: none;
  color: white;
  font-size: clamp(1rem, 2.5vw, 2rem);
  height: clamp(1rem, 2.5vw, 2rem);
  width: clamp(1rem, 2.5vw, 2rem);
  padding: 0;
  line-height: 0;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.6));
  transition: 250ms cubic-bezier(0.75, 0, 0.25, 1);
}

.load-popup-exit:hover {
  filter: drop-shadow(-2px -2px 5px rgba(0, 0, 0, 0.6));
  transform: rotate(180deg);
  transition: 250ms cubic-bezier(0.75, 0, 0.25, 1);
}

.load-popup-overlay {
  font-size: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 1001;
  visibility: hidden;
  transition: 150ms all;
}

.load-popup-overlay-active {
  visibility: visible;
  transition: 150ms all;
  background-color: rgba(0, 0, 0, 0.6);
}

.load-popup img {
  max-width: 100%;
}

.load-popup-cta {
}

.drop-shadow {
  filter: drop-shadow(2px 4px 4px black);
}

/* DNN Theme Plugin Variables */

:root {
  --primary-color: #00acd4;
  --secondary-color: #c4d600;
  --accent-color: #ff671f;
  --accent-volunteer: #002f6c;
  --accent-give: #43b02a;
  --accent-programs: #ff671f;
  --accent-about: #a4343a;
}

.color-primary,
a.color-primary:any-link {
  color: var(--primary-color);
}

.bg-primary,
a.bg-primary:any-link {
  background-color: var(--primary-color);
}

.border-primary,
a.border-primary:any-link {
  border-color: var(--primary-color);
}

.border-primary:before,
a.border-primary:any-link:before {
  border-color: var(--primary-color);
}

.color-secondary,
a.color-secondary:any-link {
  color: var(--secondary-color);
}

.bg-secondary,
a.bg-secondary:any-link {
  background-color: var(--secondary-color);
}

.border-secondary,
a.border-secondary:any-link {
  border-color: var(--secondary-color);
}

.border-secondary:before,
a.border-secondary:any-link:before {
  border-color: var(--secondary-color);
}

.color-accent,
a.color-accent:any-link {
  color: var(--accent-color);
}

.bg-accent,
a.bg-accent:any-link {
  background-color: var(--accent-color);
}

.border-accent,
a.border-accent:any-link {
  border-color: var(--accent-color);
}

.border-accent:before,
a.border-accent:any-link:before {
  border-color: var(--accent-color);
}

.color-volunteer,
a.color-volunteer:any-link {
  color: var(--accent-volunteer);
}

.bg-volunteer,
a.bg-volunteer:any-link {
  background-color: var(--accent-volunteer);
}

.border-volunteer,
a.border-volunteer:any-link {
  border-color: var(--accent-volunteer);
}

.border-volunteer:before,
a.border-volunteer:any-link:before {
  border-color: var(--accent-volunteer);
}

.color-give,
a.color-give:any-link {
  color: var(--accent-give);
}

.bg-give,
a.bg-give:any-link {
  background-color: var(--accent-give);
}

.border-give,
a.border-give:any-link {
  border-color: var(--accent-give);
}

.border-give:before,
a.border-give:any-link {
  border-color: var(--accent-give);
}

.color-programs,
a.color-programs:any-link {
  color: var(--accent-programs);
}

.bg-programs,
a.bg-programs:any-link {
  background-color: var(--accent-programs);
}

.border-programs,
a.border-programs:any-link {
  border-color: var(--accent-programs);
}

.border-programs:before,
a.border-programs:any-link {
  border-color: var(--accent-programs);
}

.color-about,
a.color-about:any-link {
  color: var(--accent-about);
}

.bg-about,
a.bg-about:any-link {
  background-color: var(--accent-about);
}

.border-about,
a.border-about:any-link {
  border-color: var(--accent-about);
}

.border-about:before,
a.border-about:any-link {
  border-color: var(--accent-about);
}

#dng-megamenu673076 ul.primary_structure li:nth-of-type(1) .dnngo_slide_menu,
#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(1)
  .dnngo_slide_menu
  .dnngo_submenu,
#dng-megamenu673076 li:nth-of-type(1) .dnngo_slide_menu li.subcurrent > a {
  background-color: rgba(67, 176, 42, 0.85);
}

#dng-megamenu673076 li:nth-of-type(1) .dnngo_slide_menu li:hover > a {
  background-color: rgba(67, 176, 42, 1);
}

#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(1)
  .dnngo_slide_menu
  li
  a {
  color: #fff;
}

#dng-megamenu673076 ul.primary_structure li:nth-of-type(2) .dnngo_slide_menu,
#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(2)
  .dnngo_slide_menu
  .dnngo_submenu,
#dng-megamenu673076 li:nth-of-type(2) .dnngo_slide_menu li.subcurrent > a {
  background-color: rgba(0, 47, 108, 0.85);
}

#dng-megamenu673076 li:nth-of-type(2) .dnngo_slide_menu li:hover > a {
  background-color: rgba(0, 47, 108, 1);
}

#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(2)
  .dnngo_slide_menu
  li
  a {
  color: #fff;
}

#dng-megamenu673076 ul.primary_structure li:nth-of-type(3) .dnngo_slide_menu,
#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(3)
  .dnngo_slide_menu
  .dnngo_submenu,
#dng-megamenu673076 li:nth-of-type(3) .dnngo_slide_menu li.subcurrent > a {
  background-color: rgba(164, 52, 58, 0.85);
}

#dng-megamenu673076 li:nth-of-type(3) .dnngo_slide_menu li:hover > a {
  background-color: rgba(164, 52, 58, 1);
}

#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(3)
  .dnngo_slide_menu
  li
  a {
  color: #fff;
}

#dng-megamenu673076 ul.primary_structure li:nth-of-type(4) .dnngo_slide_menu,
#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(4)
  .dnngo_slide_menu
  .dnngo_submenu,
#dng-megamenu673076 li:nth-of-type(4) .dnngo_slide_menu li.subcurrent > a {
  background-color: rgba(255, 103, 31, 0.85);
}

#dng-megamenu673076 li:nth-of-type(4) .dnngo_slide_menu li:hover > a {
  background-color: rgba(255, 103, 31, 1);
}



#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(4)
  .dnngo_slide_menu
  li
  a {
  color: #fff;
}


#dng-megamenu673076 ul.primary_structure li:nth-of-type(5) .dnngo_slide_menu,
#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(5)
  .dnngo_slide_menu
  .dnngo_submenu,
#dng-megamenu673076 li:nth-of-type(5) .dnngo_slide_menu li.subcurrent > a {
  background-color: #43B02A;
}

#dng-megamenu673076 li:nth-of-type(5) .dnngo_slide_menu li:hover > a {
  background-color: #43B02A;
}

#dng-megamenu673076
  ul.primary_structure
  li:nth-of-type(5)
  .dnngo_slide_menu
  li
  a {
  color: #fff;
}

.dng-megamenu .dnngo_slide_menu li.dir:before {
  border-color: #fff;
}

/* 3) 404 Styles */

.fourohfour {
  font-size: 10em;
  line-height: 1.2;
}

.error {
  font-size: 5em;
  line-height: 1.2;
}

.not_found {
  font-size: 3em;
  line-height: 1.2;
}

.ty-title {
  font-size: 6em;
  line-height: 1.2;
}

.ty-subtitle {
  font-size: 3em;
  line-height: 1.2;
}

/* 4) Home Styles (some of these might be used elsewhere) */

.home-hero {
  min-height: 95vh;
}

.home-hero .hh-content {
  padding: 8rem 4rem 2rem;
}

.cont-pad-left {
  padding: 40px 60px 40px 220px !important;
}

.cont-pad-right {
  padding: 40px 220px 40px 60px !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-row: auto auto;
  grid-column-gap: 0px;
  grid-row-gap: 10px;
}

a.footer-icon:any-link {
  display: inline-flex;
  background-color: var(--secondary-color);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  color: #fff !important;
  transition: all linear 250ms;
}

a.footer-icon:any-link:hover {
  background: #231f20;
}

#footerinfo628747 a:hover,
.wm-plug a:any-link:hover {
  color: #231f20;
}

.footer-content ul li {
  list-style: none;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol {
  list-style: lower-alpha;
}

.wm-plug,
.wm-plug a:any-link {
  color: #fff;
  font-size: 24px;
}

.wm-plug a:any-link {
  font-weight: 700;
}

/* 5) Internal Page Styles */

.ih-mimic {
  background-color: var(--primary-color);
  min-height: 205px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.int-hero {
}

.int-content {
}

.int-content h1 {
}

.sponsor-items > img,
.sponsor-items > a {
  width: 25%;
  padding: 15px;
  max-height: 250px;
}

.sponsor-items > a {
  display: inline-flex;
  justify-content: center;
}

.sponsor-items > a > img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 220px;
}

.drop-shadow {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 1));
}

.partner-items a:any-link {
  max-width: 17%;
  margin: 20px;
  max-height: 250px;
}

/* Text & Image Section */
.text-and-image__section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem 0 0;
}

.text-and-image__section .image {
  width: 40%;
}

.text-and-image__section .image > img {
  margin-left: 3rem;
  width: calc(100% - 3rem);
}

.text-and-image__section .image.right > img {
  margin-left: 0;
  margin-right: 3rem;
}

.text-and-image__section .text-content {
  width: 60%;
  background-color: var(--accent-color2);
  padding: 2rem 5rem;
}

.text-and-image__section .text-content.green {
  background-color: var(--secondary-color);
}

.text-and-image__section .text-content p {
  color: white;
}

/* Board Members List Section */
.board-member {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 66.67%;
  margin: 60px auto;
}

.member-photo,
.member-name {
  width: 50%;
  padding: 0 15px;
}

.member-name h3 {
  margin: 0;
}

.board-member:nth-child(2n) .member-photo,
.board-member:nth-child(2n + 1) .member-name {
  order: 1;
  padding-left: 0;
}

.board-member:nth-child(2n + 1) .member-photo,
.board-member:nth-child(2n) .member-name {
  order: 2;
  padding-right: 0;
}

/* 6) Blog Styles */

.blog-list01 .list-post {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.blog-list01 .list-gallery,
.blog-list01 .list-content,
.blog-list01 .list-viewinfo,
.blog-list01 .list-description,
.blog-list01 .list-btn {
  display: inline-block;
}

.blog-list01 .list-gallery {
  max-width: 35%;
  margin-right: 5%;
}

.blog-list01 .list-content {
  width: 60%;
}

.blog-detail01 .detail-gallery {
  display: flex;
  justify-content: center;
}

.blog-content {
  padding: 20px 5px;
}

.blog-content img {
  padding: 20px 0 10px 0;
}

.blog-content em {
  text-align: center;
  margin: auto;
  font-size: 18px;
}

.blog-timeline2-detail .detail-title {
  font-size: 38px !important;
}

.blog-content h2 {
  padding-top: 15px;
  font-size: 34px;
}

.blog-content h3 {
  padding-top: 15px;
  font-size: 30px;
}

.blog-content h4 {
  margin-top: 10px;
  font-size: 28px;
}

.blog-content h5 {
  margin-top: 10px;
  font-size: 24px;
}

.blog-content h6 {
  margin-top: 10px;
  font-size: 22px;
}

.blog-content li {
  font-size: 18px;
}

.blog-content dt {
  padding: 10px 0;
  font-size: 21px;
}

.blog-content dt:before {
  display: inline-block;
  content: "";
  height: 10px;
  margin-right: 10px;
  background-color: #000;
  width: 10px;
}

.blog-content dd {
  margin-left: 40px;
}

.blog-section {
  padding: 0 55px;
}

.blog-content .row .row-content {
  padding: 20px 0;
}

.blog-content .blog-quote {
  background-color: #f6f6f6;
  padding: 40px;
  margin: 40px 0;
}

.header h1 {
  padding: 35px;
  border: 1px solid #212529;
  margin-top: 60px;
}

.constrain {
  width: 100%;
}

.ai-disclaimer {
  font-size: 10px;
  font-style: italic;
}

.modal-container {
  width: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
}

.modal-cta {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 10px;
}

/* 7) Media Queries */

@media only screen and (min-width: 1921px) {
  /* 1) DNN Fixes */
  /* 2) Global Styles */
  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (min-width: 1600px) {
  /* 1) DNN Fixes */
  /* 2) Global Styles */
  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (max-width: 1600px) {
  /* 1) DNN Fixes */
  .font-size-xxl {
    font-size: 58px !important;
  }

  .font-size-xl {
    font-size: 48px !important;
  }

  .font-size-lg {
    font-size: 26px !important;
  }

  #headerrow-349356 .area-left {
    width: 335px !important;
  }

  #headerrow-349356 .header-center .logo {
    height: 160px;
    line-height: 160px !important;
  }

  /* 2) Global Styles */
  .cont-pad-left {
    padding: 40px 50px 40px 120px !important;
  }

  .cont-pad-right {
    padding: 40px 120px 40px 50px !important;
  }

  /* 3) 404 Styles */
  /* 4) Home Styles */
  .home-hero .hh-content {
    padding: 7rem 4rem 2rem;
  }

  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (max-width: 1445px) {
  .footer-grid {
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 1366px) {
  /* 1) DNN Fixes */
  .font-size-xxl {
    font-size: 52px !important;
  }

  .font-size-xl {
    font-size: 42px !important;
  }

  .font-size-lg {
    font-size: 24px !important;
  }

  .text-and-image__section .image {
    width: 50%;
    margin: 0 auto;
    order: 1;
  }

  .text-and-image__section .image.right {
    margin: 0 auto;
  }

  .text-and-image__section .image.right > img,
  .text-and-image__section .image > img {
    margin: 0;
    width: 100%;
  }

  .text-and-image__section .text-content {
    width: 100%;
    order: 2;
  }

  /* 2) Global Styles */
  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (max-width: 1200px) {
  /* 1) DNN Fixes */
  .font-size-xxl {
    font-size: 48px !important;
  }

  .font-size-xl {
    font-size: 40px !important;
  }

  .font-size-lg {
    font-size: 23px !important;
  }

  #headerrow-349356 .area-left {
    width: 280px !important;
  }

  #headerrow-349356 .header-center .logo {
    height: 140px;
    line-height: 140px !important;
  }

  .nav-buttons a.btn-solid:any-link {
    font-size: 23px;
    padding: 0.45rem 1.6rem;
  }

  .nav-buttons a.footer-icon:any-link {
    width: 34px;
    height: 34px;
  }

  #headerrow-349356 .area-right {
    width: 155px !important;
  }

  /* 2) Global Styles */
  .cont-pad-left {
    padding: 30px 40px 30px 90px !important;
  }

  .cont-pad-right {
    padding: 30px 90px 30px 40px !important;
  }

  a.btn-border:any-link {
    font-size: 28px;
  }

  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (max-width: 992px) {
  /* 1) DNN Fixes */
  .font-size-xxl {
    font-size: 42px !important;
  }

  .font-size-xl {
    font-size: 34px !important;
  }

  .font-size-lg {
    font-size: 22px !important;
  }

  .spacer {
    display: none;
  }

  /* 2) Global Styles */
  .cont-pad-left,
  .cont-pad-right {
    padding: 45px !important;
  }

  a.btn-border:any-link {
    font-size: 26px;
  }

  a.btn-solid:any-link {
    font-size: 24px;
    padding: 0.52rem 1.85rem;
  }

  .text-border.tb-large:before {
    border-width: 10px;
  }

  .image-border:before {
    border-width: 28px;
  }

  .anchor-fix {
    top: -110px;
  }

  /* 3) 404 Styles */
  /* 4) Home Styles */
  .home-hero {
    min-height: auto;
  }

  .home-hero .hh-content {
    padding: 2.5rem;
  }

  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (max-width: 991px) {
  .footer-grid {
    display: inherit;
  }

  .sponsor-items > img,
  .sponsor-items > a {
    width: 33.333%;
  }

  /* Board Members List Section */
  .board-member {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  /* 1) DNN Fixes */
  .font-size-xxl {
    font-size: 36px !important;
  }

  .font-size-xl {
    font-size: 28px;
  }

  .font-size-lg {
    font-size: 21px !important;
  }

  /* 2) Global Styles */
  a.btn-border:any-link {
    font-size: 24px;
  }

  .footer-content h3 {
    font-size: 26px;
  }

  .footer-content ul li {
    font-size: 19px;
    margin: 10px 0;
  }

  #footerinfo628747,
  .wm-plug,
  .wm-plug a:any-link,
  #footerinfo628747,
  #footerinfo628747 a:any-link {
    font-size: 19px;
  }

  a.btn-solid:any-link {
    font-size: 22px;
    padding: 0.45rem 1.7rem;
  }

  .text-border {
    border-width: 6px;
  }

  .text-border.tb-large:before {
    border-width: 8px;
  }

  .image-border:before {
    border-width: 18px;
  }

  .load-popup {
    width: 18em;
    min-width: 15em;
  }

  .anchor-fix {
    top: -85px;
  }

  /* 3) 404 Styles */
  .ty-title {
    font-size: 4em;
  }

  .ty-subtitle {
    font-size: 2em;
  }

  .fourohfour {
    font-size: 5em;
  }

  .error {
    font-size: 3em;
  }

  .not_found {
    font-size: 2em;
  }

  /* 4) Home Styles */
  .hh-image {
    min-height: 65vh;
  }

  /* 5) Internal Page Styles */
  .text-and-image__section .image {
    width: 75%;
  }

  .text-and-image__section .text-content {
    padding: 1.5rem 2.5rem;
  }

  /* Board Members List Section */
  .member-photo,
  .member-name {
    width: 100%;
    padding: 0;
  }

  .board__members .board-member .member-photo {
    order: 1;
  }

  .board__members .board-member .member-name {
    order: 2;
    text-align: center;
    margin-top: 15px;
  }

  /* 6) Blog Styles */
  .blog-list01 .list-post {
    flex-wrap: wrap;
  }

  .blog-list01 .list-gallery {
    margin-right: 0px;
    width: 100%;
  }

  .blog-list01 .list-content {
    width: 100%;
    margin-top: 25px;
  }

  .modal-cta {
    flex-direction: column;
  }
}

@media only screen and (max-width: 599px) {
  /* 1) DNN Fixes */
  .swiper-slide {
    justify-content: center;
  }

  /* 2) Global Styles */
  .cont-pad-left,
  .cont-pad-right {
    padding: 32px;
  }

  .sponsor-items > img,
  .sponsor-items > a {
    width: 50%;
  }

  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}

@media only screen and (max-width: 479px) {
  /* 1) DNN Fixes */
  /* 2) Global Styles */
  .hh-image {
    min-height: 50vh;
  }

  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
  .blog-content {
    padding: 10px 0px;
  }

  .blog-content.row {
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 379px) {
  /* 1) DNN Fixes */
  /* 2) Global Styles */
  /* 3) 404 Styles */
  /* 4) Home Styles */
  /* 5) Internal Page Styles */
  /* 6) Blog Styles */
}


