@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:wght@200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');


/* :root {
  --lightbg-blue: #d6e9f3;
  --bright-blue: #008BC9;
  --mid-blue: #2E559D;
  --dark-blue:#1E3358;
  --dull-gray:#BDC6D6;
} */

:root {
  --lightbg-blue: #d6f3e6;
  /* --bright-blue: #00c961; */
  --bright-blue: #087b3f;
  --mid-blue: #05602b;
  --primary: #0b6136;
  --dark-blue:#1E3358;
  --dull-gray:#BDC6D6;
  --heavy-gray:#666c76;
}

.sr-only {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
  }

.cf {overflow:auto; clear:both;}

.clear {clear:both;}

.alignLeft {text-align:left;}
.alignRight {text-align:right;}
.alignCenter {text-align:center;}

.showTablet, .showMobile {
	display:none !important;
}

.alignright {  float:right;}
.alignleft {  float:left;}
.alignnone {  float:none;}

.wp-caption {
  padding:1rem;
  max-width:100%;
  box-sizing:border-box;
  background:#f4f3f6;
  margin:1rem;
}

.wp-caption img {
  width:100%;
  height:100%;
}

.wp-caption .wp-caption-text {
  font-size:0.8rem;
  font-style:italic;
  margin-bottom:0;
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

html {
	min-height:100%;
  overflow-x:hidden;
}

body, html {
	height:100%;
  background:#fff;
  font-family:"Poppins";
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--mid-blue);
}

a:hover {
  background-color:rgba(255,255,165,.5);
}

.wrapper {
  width:95%;
  max-width:1400px;
  position:relative;
  margin-left:auto;
  margin-right:auto;
}

.align-center {text-align:center;}

.customize-support header.primaryHeader {
  top: 2rem;
}

header.primaryHeader {
  width:100%;
  position:fixed;
  z-index:50;
  top:0px;
  transition:.3s all;
}

header.primaryHeader.downpage {
  top:-2.8rem;
}
header.primaryHeader.downpage.scrollup {
  top:0rem;
}

.customize-support header.primaryHeader.downpage {
  top: -.8rem;
}
.customize-support header.primaryHeader.downpage.scrollup {
  top: 2rem;
}

#container {
  width:100%;
  height:100%;
}

header.primaryHeader .headerBlock {
  background:#fff;
}

header.primaryHeader .logo {
  background:rgba(197,245,195,.36);
  width:340px;
  padding:1rem;
  box-sizing:border-box;
  position:absolute;
  top:-10rem;
  bottom:0;
  transition:0.3s all;
}
header.primaryHeader a:hover {
  background:none;
}

header.primaryHeader.downpage .logo {
  width:180px;
}

header.primaryHeader .logo img {
  max-width:100%;

}

header.primaryHeader.downpage .logo img {
  transform: translateY(0.8rem);
}

header.primaryHeader .upperBar {
  background:rgba(23, 108, 84, .70);
  /* background:rgba(0,139,201,.66); */
  padding:0rem;
  width:100%;
  box-sizing:border-box;
}

header.primaryHeader .upperBar nav ul{
  list-style:none;
  margin:0;
  padding:0;
}

header.primaryHeader .upperBar nav ul li {
  padding:0rem 0.3rem;
  text-transform:uppercase;
  font-size:0.8rem;
  font-weight:600;
  letter-spacing:0.05rem;
}

header.primaryHeader .upperBar nav ul li a{
  padding:0.8rem 1rem;
  color:#fff;
  text-decoration:none;
  display:block;
}

header.primaryHeader .upperBar nav ul li:hover a {
  background:rgba(0,0,0,.2);
}


header.primaryHeader .headerBlock {
  border-top:2px solid #0C1D48;
  border-bottom:2px solid #0C1D48;
}

.gtranslate {
  padding:0.5rem;
}

nav.primaryNav {
  margin-left:320px;
  transition:0.3s all;
}

header.primaryHeader.downpage nav.primaryNav{
  margin-left:155px;
}

nav.primaryNav ul {
  list-style:none;
  margin:0;
}

nav.primaryNav ul li a{
  display:flex;
  flex-wrap:wrap;
  flex-direction:column;
  text-decoration:none;
  padding:2.2rem 1rem;
  line-height:1.4;
  transition:0.3s all;
}

nav.primaryNav ul li a:hover {
  background:none;
}

header.primaryHeader.downpage nav.primaryNav ul li a{
  padding:0.8rem 1rem;
}

header.primaryHeader.downpage nav.primaryNav ul li span:not(.head){
  display:none;
}

header.primaryHeader.downpage nav.primaryNav ul li ul li span:not(.head){
  display:block;
}


nav.primaryNav ul li span {
  font-size:0.9rem;
  font-weight:300;
  color:var(--bright-blue);
}

nav.primaryNav ul li span.head {
  font-weight:700;
  text-transform:uppercase;
  font-size:1.2rem;
  color:var(--dark-blue);
  position:relative;
}

nav.primaryNav ul li span.head::before {
  content:'';
  position:absolute;
  top:0;
  height:4px;
  transform:translateY(3.2rem);
  background:var(--dark-blue);
  width:0%;
  transition:0.3s width;
}

nav.primaryNav ul li:hover span.head::before  {
  width:100%;
}

nav.primaryNav ul li ul.sub-menu {
  position: absolute;
  background: hsla(0,0%,100%,.95);
  /* background: #fff; */
  top: 100%;
  left: 0;
  padding: 1rem 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all .25s .1s;
  box-sizing:border-box;
  width:100%;
  transform: translateY(-50px);
  z-index:-1;
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  z-index:-1;
  border: 2px solid #000;
  box-shadow: 2px 0px 25px rgba(0,0,0,.2);

  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 1fr;
  grid-gap: 0rem;

}

nav.primaryNav ul li:hover ul.sub-menu {
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}

nav.primaryNav ul li ul.sub-menu li {
  width:100%;
}

nav.primaryNav ul li ul.sub-menu li a {
  padding:1rem;
  margin:1rem 0rem;
}

nav.primaryNav ul li ul.sub-menu li:hover a {
  border-radius:8px;
  background:rgba(197,245,195,.36);
}

nav.primaryNav ul li ul.sub-menu li a span {
  text-transform:none;
  color:var(--heavy-gray);
}

nav.primaryNav ul li ul.sub-menu li a span.head {
  text-transform:none;
  font-size:1rem;
  color:var(--primary);
}
nav.primaryNav ul li ul.sub-menu span.head::before {
  content:none;
}

main.primaryMain {
  position:relative;
  line-height:1.6;
  font-size:1rem;
  font-family:"Inter";
}

main.primaryMain h1 {
  color:var(--mid-blue);
  font-family:"Roboto Serif";
  font-weight:500;
  font-size:2.5rem;
  line-height: 1.1;
}

main.primaryMain h2 {
  color:var(--dark-blue);
  font-family:"Roboto Serif";
  font-weight:700;
  font-size:2rem;
  line-height: 1.1;
}

main.primaryMain p {
  margin-bottom:2rem;
}

.primaryBanner {
  min-height:700px;
  background-size:cover;
  background-position: center center;
  margin-bottom:4px;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  position:relative;
}

.innerBanner {
  min-height:400px;
  background-size:cover;
  background-position: center center;
  margin-top:8rem;
  margin-bottom:4px;
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}
.innerBanner-empty {
  margin-top:10rem;
  width:100%;
  height:1px;
}
.searchBanner {
  background:var(--dark-blue);
}
.searchBanner h1 {
  color:#fff !important;
  font-weight:bold;
}

.alertNotice {
  width:100%;
  position:absolute;
  background:#e3002d;
  color:#fff;
  bottom:0;
  padding:1rem 2rem;
  text-align:center;
  border-top:2px solid #7b0019;
}

.alertNotice h2 {
  text-align:center;
  color:#fff !important;
  font-size:1.2rem !important;
  margin:0;
}

.alertNotice h2 a {
  color:#fff;
}

.howdoi {
  min-width:250px;
  margin-top: -8rem;
  box-sizing:border-box;
  width:40%;
  padding:0.8rem;
  background:#fff;
  cursor:pointer;
  animation: slidedown 0.5s 1s forwards;
  opacity:0;
  transition:0.3s all;
}

.howdoi header {
  display:flex;
  justify-content:space-between;
  width:100%;
  font-size:1.4rem;
}

.howdoi header > span {
  padding-left:1rem;
}

.howdoi div.menu, .howdoi header.close {
  opacity:0;
  visibility:hidden;
  display:none;
}

.howdoi.active {
  min-width:280px;
  width:70%;
  cursor:default;
  position:fixed;
  z-index:99;
  box-shadow:0px 0px 50px rgba(0,0,0,.4);
  top: 5rem;
  margin-top: 0rem;
}

.howdoi.active header.find {
  display:none;
  opacity:0;
  visibility: hidden;
}

.howdoi.active div.menu, .howdoi.active header.close {
  opacity:1;
  visibility:visible;
  display:flex;
}
.howdoi div.menu > div {
  width:30%;
}

.howdoi div.menu ul {
  padding-left: 1.2rem;
}

.howdoi div.menu ul li {
  padding:0.2rem 0rem;
}

.howdoi.active header.close span.material-symbols-rounded {
  color:#0C1D48;
  background:none;
}

.howdoi.active header.close {
  border-bottom: 1px solid rgba(190, 196, 190, 0.36);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

@keyframes slidedown {
  from {
    transform:translateY(-300px);
    opacity:0;
  }

  to {
    transform:translateY(0px);
    opacity:1;
  }
}

.howdoi span.material-symbols-rounded {
  font-size:2rem;
  padding:0.1rem;
  color:#fff;
  background:#0e8b66;
  border-radius:3px;
}

.howdoi.active div.menu {
  padding: 1rem;
  overflow-y: auto;
  width: 100%;
  box-sizing: border-box;
  max-height: 70vh;
}

.iconlist {
  background:#BAE1F3;
}

.iconlist .wrapper ul {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  grid-auto-rows: 1fr;
  grid-gap: 2rem;
  grid-template-rows: repeat(1,1fr);
}

.iconlist li {
  border-radius:8px;
  background:#0f7a45;
  transform:translateY(1.5rem);
  transition:0.3s all;
  margin:0;
}

.iconlist li {  background:#0b6136;}
/* .iconlist li:nth-child(2){  background:#179254;}
.iconlist li:nth-child(3){  background:#0e8b66;}
.iconlist li:nth-child(4){  background:#0b6136;}
.iconlist li:nth-child(5){  background:#0b4e25;}
.iconlist li:nth-child(6){  background:#0f7a45;} */

.iconlist li a {
  text-decoration:none;
  text-align:center;
  display:block;
  box-sizing:border-box;
  padding:1rem 1rem 2rem 1rem;
  color:#fff;
  line-height:1.3;
}

.iconlist li:hover {
  transform:translateY(0.5rem);
}

.iconlist li a:hover {
  background:none;
}

.iconlist .icon {
  font-size:5rem;
}

.iconlist h4 {
  margin:0;
}

.mainbg {
  padding:5rem 0rem;
}

.bgstamp {
  background: linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)), url("../images/northhillslogostamp.jpg");
  background-repeat:no-repeat;
  background-size:900px;
}


.primaryFooter {
  background:#e9fbf2;
  padding:3rem 0rem;
}

.primaryFooter h3 {
  font-size:1.2rem;
  font-weight:500;
  color:var(--mid-blue);
  margin-bottom:2rem;
}

.primaryFooter .footwidget {
  font-size:0.9rem;
  font-weight:400;
  line-height:1.4;
  color:var(--dark-blue);
}

.primaryFooter .footwidget ul.menu {
  margin:0;
  padding:0;
  list-style:none;
}
.primaryFooter .footwidget ul.menu li {
  margin-bottom:1rem;
}

.primaryFooter .footwidget a {
  text-decoration:none;
  color:var(--bright-blue);
}

.primaryFooter .footwidget a:hover {
  text-decoration:underline;
}

.bottomfooter {
  background:#c9e5d7;
  border-top:2px solid #a8cebb;
  padding:0.2rem 0rem;
}

.bottomfooter p {
  font-size:0.8rem;
  font-weight:400;
  color:var(--dark-blue);
}

.bottomfooter a {
  color:var(--dark-blue);
}

.card {
  padding:2rem 0rem;
  box-sizing:border-box;
  border-bottom:1px solid #d6d9e6;
}

.card h3 {
  font-size:1.5rem;
}

.btn {
  display:inline-block;
  font-family:"Roboto Serif";
  font-size:1.2rem;
  font-weight:700;
  background:var(--dull-gray);
  color:var(--dark-blue);
  text-decoration:none;
  padding:1rem 3rem;
  position:relative;
  cursor:pointer;
}

.btn-primary {
  color:#fff;
  background:var(--mid-blue);
}

.btn-secondary {
  color:#fff;
  background:var(--bright-blue);
}

a.btn:hover {
  background:var(--dull-gray);
}
a.btn-primary:hover {
  background:var(--mid-blue);
}

.sidehighlight {
  position:relative;
}

.sidehighlight:before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  width:1000rem;
  bottom:0;
  background:var(--lightbg-blue);
}

.sidehighlight .content {
  position:relative;
  padding:2rem 3rem 3rem 3rem;
  box-sizing:border-box;
  z-index:1;
}

.sidehighlight .content h2 {
  margin:0rem;

}

.searchbox {
  margin-left: auto;
  width: 3rem;
  position: absolute;
  right: 0;
  transition: 0.3s all;
  margin-top:1.7rem;
}

header.primaryHeader.downpage .searchbox {
  margin-top:-0.3rem;
}

.searchbox input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--dull-gray);
  border-radius: 4px;
  padding: 1rem 1rem 1rem 3rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
}

.searchbox.open {
  width: 40%;
}

.searchbox.open input {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
  outline: none;
}

.searchicon {
  width: 1.4rem;
  height: 1.4rem;
  stroke: #394155;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(1rem, 1.3rem);
  cursor: pointer;
}

.closeicon {
  width: 1rem;
  height: 1rem;
  stroke: #c9d2da;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-1rem, 1.3rem);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.searchbox.open .closeicon {
  opacity: 1;
  visibility: visible;
  transition: 0.3s 0.5s all;
}

.tribe-events .tribe-events-calendar-month__day-cell--selected .tribe-events-calendar-month__day-date-daynum {
  color:#fff !important;
}

button.menu-switch {
  top: 0.5rem;
  right: 0rem;
  display: none;
  position: absolute;
  overflow: hidden;
  background: none;
  padding: 0;
  width: 24px;
  height: 24px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button.menu-switch:focus {
  outline: none;
}

button.menu-switch span {
  display: block;
  position: absolute;
  top: 10px;
  left: 0px;
  right: 0px;
  height: 2px;
  border-radius: 2px;
  background: #394155;
  transition: background 0 0.3s;
}

button.menu-switch span::before,
button.menu-switch span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  border-radius: 2px;
  height: 2px;
  background-color: #394155;
  content: '';
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0;
}

button.menu-switch span::before {
  top: -7px;
}

button.menu-switch span::after {
  bottom: -7px;
}

button.menu-switch span::before,
button.menu-switch span::after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0;
}

button.menu-switch span::before {
  transition-property: top, transform;
}

button.menu-switch span::after {
  transition-property: bottom, transform;
}

/* active state, i.e. menu open */
button.menu-switch.active {
}

button.menu-switch.active span {
  background: none;
}

button.menu-switch.active span::before {
  top: 0;
  transform: rotate(45deg);
}

button.menu-switch.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

button.menu-switch.active span::before,
button.menu-switch.active span::after {
  transition-delay: 0, 0.3s;
}

.mobile-overlay {
  display:none;
}

.contentSection {
  margin:1px 0px;
  display:flex;
  flex-direction:row-reverse;
  font-family: 'Inter', Arial, sans-serif;
  color:var(--dark-blue);
}

aside.sidebar {
  width:25vw;
  background-color: #f4f3f6;
  width:calc( 336px + ( ( 100vw - 1400px ) / 2 ));
}

section.main {
  width:75vw;
  width:calc( 1064px + ( ( 100vw - 1400px ) / 2 ));
}

section.main.fullwidth {
  width:100%;
}

aside.sidebar .sidebar-wrapper {
  float:right;
  width:336px;
  box-sizing:border-box;
  padding-right:3rem;
  padding-top:3rem;
  padding-bottom:5rem;
}

section.main .main-wrapper {
  box-sizing:border-box;
  width:1064px;
  padding-left:5rem;
  padding-top:3rem;
  padding-bottom:5rem;
}

section.main.fullwidth .main-wrapper {
  width:100%;
  padding-left:0rem;
}

section.notices {
  margin-top:5rem;
  margin-bottom:0rem;
}

.submenu-block {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 1fr;
  grid-gap: 2rem;
  justify-content: space-between;
  list-style:none;
  margin:0;
  padding:0;
}

.submenu-block li {
}

.submenu-block li a {
  background: #f4f3f6;
  display: flex;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.communityList {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 2rem;
  justify-content: space-between;
}

.communityList .communitySingle {
  height: 0;
  margin-bottom: 1rem;
  max-width: none;
  padding-bottom: 55%;
  width: 100%;
  position:relative;
  }

.communityList .communitySingle img {
  bottom: 0;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.board {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0;
  padding:0;
  list-style: none;
}

.board li {
  width: 20%;
  box-sizing: border-box;
  padding: 1rem;
  margin: 0;
  text-align: center;
}

.board li img {
  display:block;
  width:100%;
  object-fit:cover;
  aspect-ratio: 3 / 4;
}


.swiper-container {
  overflow-x:hidden;
  margin-bottom:3rem;
}

.swiper-button-next, .swiper-button-prev {
  background:rgba(255,255,255,0.8);
  border-radius:50px;
  width:48px;
  height:48px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size:24px;
}

.swiper-slide {
  width:25%;
}

.swiper-slide .hppost {
  height: 350px;
  overflow: hidden;
  position:relative;
  background:#f5f6fa;
  box-sizing:border-box;
  border-top:0.6rem solid #d6d9e6;
}

.swiper-slide .hppost a {
  display:block;
  text-decoration:none;
  padding:1rem;
}

.swiper-slide .hppost h3 {
  color:#2d334c;
}

.swiper-slide .hppost p {
  color:#5e616c;
}

.swiper-slide .hppost a:hover {
  background-color:transparent;
}


@media (max-width: 1500px) {
  aside.sidebar {
    width:25%;
  }
  aside.sidebar .sidebar-wrapper {
    width:100%;
    padding-right:3rem;
    padding-left:2.5vw;
  }
  section.main {
    width:75%;
  }
  section.main.fullwidth {
    width:100%;
  }
  section.main .main-wrapper {
    width:100%;
    padding-left:5rem;
    padding-right:2.5vw;
  }
  section.main.fullwidth .main-wrapper {
    width:100%;
    padding-left:0;
    padding-right:0;
  }
}

.minutes li.yearhead {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-left: -1rem;
    margin-bottom: 1rem;
}

.sidebar .submenu {
  list-style:none;
  margin:0;
  padding:0;
}

.sidebar .submenu li {
  border-bottom:1px solid #d0cdd4;
}

.sidebar .submenu li a {
  display:block;
  text-decoration:none;
  padding:0.5rem;
}
.sidebar .submenu li a:hover {
  text-decoration:underline;
}

.error404 {
  max-width:600px;
  box-sizing:border-box;
  position:relative;
  margin:2rem auto;
  padding:2rem;
  border:1px solid #666c76;
}

.tblBox {
	border-left:2px solid #f4f3f6;
	border-top:2px solid #f4f3f6;
	margin-bottom:15px;
  box-sizing:border-box;
  border-collapse: collapse;
}

.tblBox td {
	padding:8px;
	border-right:2px solid #f4f3f6;
	border-bottom:2px solid #f4f3f6;
}
