<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&amp;family=Quicksand:wght@300..700&amp;family=Reddit+Sans:ital,wght@0,200..900;1,200..900&amp;display=swap');

body {font-family: 'Reddit Sans', sans-serif; color: #000; margin:0; font-size: 16px; font-weight: 500; overflow-x: hidden; position: relative;}

dl, ol, ul {margin:0!important;}
li {margin:10px 0; line-height: 1.25em; list-style-position: outside;}

p {font-family: 'Reddit Sans', sans-serif; font-size: 16px; font-weight: 500; line-height: 1.5em;}

.list {margin-bottom:-10px;}

.max-container {max-width:856px;}

#start {scroll-margin-top: 110px!important;}

/*ON SCROLL*/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(35%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInTop {
  0% {
    opacity: 0;
    transform: translateY(-35%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled {
  &amp;,
  [data-animation] {
    animation: none !important;
    opacity: 1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  button {
    animation: none;
  }
}

.zoomIn {animation-name: zoomIn;}
.zoomReverseIn {animation-name: zoomReverseIn;}
.slideInLeft {animation-name: slideInleft;}
.slideInRight {animation-name: slideInRight;}
.slideInBottom {animation-name: slideInBottom;}
.slideInTop {animation-name: slideInTop;}
/*END ON SCROLL*/

/*SKIP TO CONTENT*/
.skip-to-content-link {
    left: 0px;
    position: absolute;
    transform: translateY(-100%);
    background: #fff;
    height: 40px;
    padding: 10px;
    transition: transform 0.3s;
	margin-top: 0px;
    z-index: 1;
	width: 100%;
	text-align: center;
}
.skip-to-content-link:hover {
	color:#000;
}
/*.skip-to-content-link:focus {
    transform: translateY(0%);
}*/
.skip-to-content-link:focus {
    transform: translateY(0%);
	width:100%;
	background-color:#fff;
	z-index:99999999999;
	/*line-height:50px;*/
	font-weight:bold;
	color:#000!important;
	border:none;
	text-align: center!important;
}
.skip-to-content-link:focus-visible {
	color:#000!important;
}
/* END SKIP TO CONTENT*/

/*BACK TO TOP*/
#button {
  display: inline-block;
  background-color: #79C033;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 0;
  position: fixed;
  bottom: 30px;
  right: 0;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #000;
}
#button:active {
  background-color: #000;
}
#button.show {
  opacity: 1;
  visibility: visible;
}
/*END BACK TO TOP*/

a {text-decoration: none!important; display: inline;}
a:hover {text-decoration: none!important;}
a:focus {color:#000!important; text-decoration: none; outline: -webkit-focus-ring-color auto 1px;}
a:focus-visible {color:#676767!important; text-decoration: none; outline: -webkit-focus-ring-color auto 5px;}

.green {color:#79C033;}
.gray {color:#676767;}
.white {color:#fff;}
.black {color:#000;}

.small {font-size: 90%!important;}
.smaller {font-size: 85%!important;}
.smallest {font-size: 75%!important;}
.large {font-size: 110%!important;}
.larger {font-size: 125%!important;}
.largest {font-size: 150%!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.largest:hover {text-decoration: underline;}

.bar-green {width:100px; border-top:15px solid #79C033; border-radius: 25px;}
.bar-gray {width:100px; border-top:15px solid #676767; border-radius: 25px;}
.bar-white {width:100px; border-top:15px solid #fff; border-radius: 25px;}
.bar-black {width:100px; border-top:15px solid #000; border-radius: 25px;}
.bar-gray-sm {width:75px; border-top:5px solid #676767; border-radius: 25px;}
.bar-green-sm {width:75px; border-top:5px solid #79C033; border-radius: 25px;}

.divider {border-top:1px solid #aaa;}
.divider-green {border:3px solid #79C033;}
.divider-gray {border:3px solid #676767;}
.divider-gray-sm {border:2px solid #676767;}
.divider-form {border-top:1px solid #aaa;}

.border-green {border:4px solid #79C033;}
.border-gray {border:3px solid #676767;}
.border-btm-green {border-bottom:8px solid #79C033;}
.border-rounded {border-radius: 15px;}
.pic-shadow {-webkit-box-shadow: 0 10px 10px -5px #999; -moz-box-shadow: 0 10px 10px -5px #999; box-shadow: 0 10px 10px -5px #999;}

h1 {
	font-family: 'Outfit', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color:#000;
	text-transform: uppercase;
}

h2 {
	font-family: 'Quicksand', serif;
	font-size: 35px;
	font-weight: 700;
	color:#676767;
}
.h2-sm {font-size: 32px;}
.h2-lg {font-size: 48px;}

h3 {
	font-family: 'Quicksand', serif;
	font-size: 30px;
	font-weight: 700;
	color:#79C033;
	letter-spacing: -.5px;
}

h4 {
	font-family: 'Quicksand', serif;
	font-size: 24px;
	font-weight: 700;
	color:#000;
	letter-spacing: -.5px;
}

.header {
  background: #fff;
  z-index:999999;
  -webkit-box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.15); 
  box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.15);
  height: 110px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background:#fff;
  z-index: 10;
}

.sticky + .content {
  padding-top: 102px;
}

.bg-top {background:#79C033; overflow: hidden;}
.btn-top {
	background-color:#000;
	font-family: 'Outfit', sans-serif;
	font-size:18px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none!important;
	color:#fff!important;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 15px;
	border:5px solid #000;
}
.btn-top:hover {
	background:#676767;
	color:#fff!important;
	cursor: pointer;
	border:5px solid #676767;
	text-decoration: underline!important;
}
.btn-top:focus {border:2px solid #fff;}
.btn-top:focus-visible {border:2px solid #fff;}

.offcanvas {border-top: none!important; padding:0!important; background: #fff;}
.offcanvas-header {padding:0!important;}
.offcanvas-header img {height:85px!important; padding:10px; margin:0 0 -15px 0;}
.offcanvas-header .btn-close {padding: 0.5rem 0.5rem; margin-top: -0.5rem; margin-right: 0.5rem; margin-bottom: -0.5rem; background-image: url("graphics/close.png"); opacity: 1.0!important;}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  padding:15px .85rem!important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1em;
  border-bottom: 3px solid #fff;
}
.navbar-light .navbar-nav .nav-link:hover {color:#676767!important; border-bottom: 3px solid #79C033;}

.navbar-toggler {border-color:#000!important; background-color:transparent!important; border:0!important; color:(0,0,0,1.0)!important;}
.navbar-light .navbar-toggler {outline: none;}

.navbar-brand {height:auto; padding:0!important;}
.navbar-brand img {height:85px; margin: 0;}
.navbar-brand.js-scrolling img {
	height: 50px;
	-webkit-transition: height 0.3s ease; 
	-moz-transition: height 0.3s ease; 
	-ms-transition: height 0.3s ease; 
	-o-transition: height 0.3s ease; 
	transition: height 0.3s ease;
}

.navbar-light .navbar-nav .active&gt;.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show&gt;.nav-link {color:#79C033!important;}
.nav-link:focus-visible {outline: none!important; box-shadow:none!important; border:3px solid #767676; border-bottom: 3px solid #767676!important;}

.content-index {min-height: 500px; font-weight: 500; letter-spacing: -.5px;}
.content-index a {
	display: inline; 
	color:#000 !important; 
	font-weight: 700; 
	text-decoration: none !important; 
	text-transform: none !important; 
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;}
.content-index a:hover:not(:has(&gt; .btn-content)) {color:#676767!important; text-decoration: underline!important; font-weight: 900;}
.content-index a:focus:not(:has(&gt; .btn-content)) {border:2px solid #000; color:#000; padding:8px;}
.content-index a:focus-visible:not(:has(&gt; .btn-content)) {border:2px solid #000; color:#000; padding:8px;}


.content {min-height: 750px; font-weight: 500; letter-spacing: -.5px;}
.content a {
	/*display: block;*/ 
	display: inline!important;
	flex-wrap: wrap;
	white-space: nowrap;
	color:#000 !important; 
	font-weight: 700; 
	text-decoration: none; 
	text-transform: none !important; 
	-webkit-transition: all 0.3s ease; 
	-moz-transition: all 0.3s ease; 
	-o-transition: all 0.3s ease; 
	transition: all 0.3s ease;}
.content a:hover:not(:has(&gt; .btn-content)) {color:#676767!important; font-weight: 900; text-decoration: underline!important;}
.content a:focus:not(:has(&gt; .btn-content)) {border:2px solid #000; color:#000; padding:8px;}
.content a:focus-visible:not(:has(&gt; .btn-content)) {border:2px solid #000; color:#000; padding:8px;}
.btn-content {
	background-color:#79C033;
	font-family: 'Outfit', sans-serif;
	font-size:16px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	text-decoration: none!important;
	letter-spacing: 0px;
	color:#000!important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 20px;
	border:2px solid #79C033;
	box-shadow: 2px 2px 4px #767676;
	/*padding:20px!important;*/
}
.btn-content:hover {
	background:#676767;
	color:#fff!important;
	text-decoration: underline!important;
	cursor: pointer;
	border:2px solid #676767;
}
.btn-content:focus {border:2px solid #000;}
.btn-content:focus-visible {border:2px solid #000;}

.content-only {font-weight: 500; letter-spacing: -.5px;}
.content-only a {color:#000!important; font-weight: 800; text-decoration: none!important; text-transform: none!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.content-only a:hover {color:#676767!important; text-decoration: underline!important;}
.content-only a:focus {border:2px solid #000; color:#000; padding:8px;}
.content-only a:focus-visible {border:2px solid #000; color:#000;}

.bg-tagline-index {background-image: url("graphics/bg-tagline.jpg"); margin-top: 545px;}
.bg-tagline {background-image: url("graphics/bg-tagline.jpg");}
.h2-tagline {font-size: 40px; color:#fff!important; font-weight: 700;}
.btn-tagline {
	background-color:#79C033;
	font-family: 'Outfit', sans-serif;
	font-size:28px;
	font-weight: 400;
	text-align: center;
	text-shadow: none!important;
	text-transform: uppercase;
	color:#000!important;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border:4px solid #79C033;
	border-radius: 35px;
	position: relative;
}
.btn-tagline:hover {
	background:transparent;
	color:#fff!important;
	cursor: pointer;
	border:4px solid #79C033;
	text-decoration: underline!important;
}
.btn-tagline:focus {border:2px solid #fff;}
.btn-tagline:focus-visible {border:2px solid #fff;}

.footer {background:#fff; font-family: 'Reddit Sans', sans-serif; font-size: 16px; font-weight:400; color:#000;}
.footer a {color: #000; font-weight: 600; text-decoration: none; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.footer a:hover {color: #676767; font-weight: 800; text-decoration: underline!important;}
.footer a:focus {border:2px solid #79C033; color:#676767;}
.footer a:focus-visible {border:2px solid #79C033; color:#676767;}
.footer ul {padding:0; margin:0; text-align:center;}
.footer ul li {list-style-type:none; display:inline;}
.footer ul li:before {content:'';}
.footer ul li:after {content:''; margin:0 0 0 65px;}
.footer ul li:last-child:after {content:''; margin-left: 0;}

.footer-fb {font-size: 48px; color:#676767;}
.footer-fb a {color: #676767; text-decoration: none; font-size: 48px; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.footer-fb a:hover {color: #000; text-decoration: none; font-size: 54px;}
.footer-fb a:focus {border:2px solid #79C033; color:#000;}
.footer-fb a:focus-visible {border:2px solid #79C033; color:#000;}

.btn-footer {
	background-color:#79C033;
	font-family: 'Outfit', sans-serif;
	font-size:16px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	text-decoration: none!important;
	color:#000!important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 20px;
	padding:17.5px!important;
	box-shadow: 2px 2px 4px #767676;
}
.btn-footer:hover {
	background:#676767;
	color:#fff!important;
	text-decoration: none!important;
	cursor: pointer;
	text-decoration: underline!important;
}
.btn-footer:focus {border:2px solid #000;}
.btn-footer:focus-visible {border:2px solid #000;}

.bg-anchor {background:#222; color:#fff; font-family: 'Reddit Sans', sans-serif; font-size: 12px; font-weight: 400;}
.bg-anchor a {color:#fff; text-decoration:underline!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.bg-anchor a:hover {color:#79C033; text-decoration:underline!important;}

.bg-anchor ul {padding:0; margin:0; text-align:center;}
.bg-anchor ul li {list-style-type:none; display:inline;}
.bg-anchor ul li:before {content:'';}
.bg-anchor ul li:after {content:'|'; color:#79C033; margin:0 10px; font-weight: 900;}
.bg-anchor ul li:last-child:after {content:'';}

.anchor-L a {color:#fff; text-decoration:underline!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.anchor-L a:hover {color:#bbb; text-decoration:underline;}
.anchor-L ul {padding:0; margin:0; text-align:center!important;}
.anchor-L ul li {list-style-type:none; display:inline;}
.anchor-L ul li:before {content:'';}
.anchor-L ul li:after {content:'|'; color:#79C033; font-weight: 900; margin:0 10px;}
.anchor-L ul li:last-child:after {content:'';}

.anchor-R a {color:#fff; text-decoration:underline!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.anchor-R a:hover {color:#bbb; text-decoration:underline;}
.anchor-R ul {padding:0; margin:0; text-align:right!important;}
.anchor-R ul li {list-style-type:none; display:inline;}
.anchor-R ul li:before {content:'';}
.anchor-R ul li:after {content:'|'; color:#9C1C1F; font-weight: 900; margin:0;}
.anchor-R ul li:last-child:after {content:'';}

.bg-hero {background-image: url("graphics/bg-hero.jpg");}
.hero-text {font-size: 18px; font-weight: 400; line-height: 1.65em; letter-spacing: 0!important;}
.btn-hero {
	background-color:#79C033;
	font-family: 'Quicksand', serif;
	font-size:38px;
	font-weight: 400;
	line-height: 1.2em;
	text-transform: uppercase;
	text-align: left;
	text-shadow: none!important;
	text-decoration: none!important;
	color:#000!important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 20px;
	padding:30px;
	box-shadow: 4px 4px 8px #767676;
}
.btn-hero:hover {
	background:#000;
	color:#79C033!important;
	text-decoration: underline!important;
	cursor: pointer;
}
.btn-hero:focus {border:2px solid #000;}
.btn-hero:focus-visible {border:2px solid #000;}

.bg-what {background-image: url("data:image/svg+xml,&lt;svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'&gt;&lt;defs&gt;&lt;pattern id='a' patternUnits='userSpaceOnUse' width='25' height='25' patternTransform='scale(2) rotate(0)'&gt;&lt;rect x='0' y='0' width='100%' height='100%' fill='%23000000ff'/&gt;&lt;path d='M25 30a5 5 0 110-10 5 5 0 010 10zm0-25a5 5 0 110-10 5 5 0 010 10zM0 30a5 5 0 110-10 5 5 0 010 10zM0 5A5 5 0 110-5 5 5 0 010 5zm12.5 12.5a5 5 0 110-10 5 5 0 010 10z'  stroke-width='1' stroke='%23181818ff' fill='none'/&gt;&lt;path d='M0 15a2.5 2.5 0 110-5 2.5 2.5 0 010 5zm25 0a2.5 2.5 0 110-5 2.5 2.5 0 010 5zM12.5 2.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5zm0 25a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'  stroke-width='1' stroke='%23181818ff' fill='none'/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/&gt;&lt;/svg&gt;"); background-attachment: fixed;}
.bg-what a {color:#79C033!important; font-weight: 800; text-decoration: underline; text-transform: none!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.bg-what a:hover {color:#aaa!important; text-decoration: underline!important;}
.bg-what a:focus {border:2px solid #fff; color:#000; padding:8px;}
.bg-what a:focus-visible {border:2px solid #fff; color:#000;}

.bg-serving {background-image: url("graphics/bg-serving.jpg");}
.btn-serving {
	background-color:#000;
	font-family: 'Outfit', sans-serif;
	font-size:16px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	text-decoration: none!important;
	letter-spacing: 0px;
	color:#fff!important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 20px;
	border:2px solid #000;
	padding:20px!important;
}
.btn-serving:hover {
	background:#676767;
	color:#fff!important;
	text-decoration: underline!important;
	cursor: pointer;
	border:2px solid #000;
}
.btn-serving:focus {border:2px solid #fff;}
.btn-serving:focus-visible {border:2px solid #fff;}

.bg-grants {background: #eee; height:700px;}
.bg-donations {background: #ddd; height:700px;}

.callout-card {background:#fff; border-radius: 20px; min-height: 550px;}
.callout-extra {height: 30px;}
.btn-callout {
	background-color:#79C033;
	font-family: 'Outfit', sans-serif;
	font-size:16px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
	text-shadow: none!important;
	text-decoration: none!important;
	letter-spacing: 0px;
	color:#000!important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 20px;
	border:2px solid #79C033;
	padding:20px!important;
	margin:-40px auto 25px auto;
}
.btn-callout:hover {
	background:#676767;
	color:#fff!important;
	text-decoration: underline!important;
	cursor: pointer;
	border:2px solid #676767;
}
.btn-callout:focus {border:2px solid #fff;}
.btn-callout:focus-visible {border:2px solid #fff;}

.bg-gray {background: #eee;}
.bg-gray a {color:#000!important; font-weight: 700; text-decoration: none; text-transform: none!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.bg-gray a:hover {color:#676767!important; font-weight: 900; text-decoration: underline!important;}
.bg-gray a:focus {border:2px solid #000; color:#000; padding:8px;}
.bg-gray a:focus-visible {border:2px solid #000; color:#000;}

.btn-lg {
	background-color:#79C033;
	font-family: 'Outfit', sans-serif;
	font-size:24px;
	font-weight: 400;
	text-align: center;
	text-shadow: none!important;
	text-transform: uppercase;
	color:#000!important;
	letter-spacing: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border:4px solid #79C033;
	border-radius: 35px;
	position: relative;
	box-shadow: 2px 2px 4px #767676;
}
.btn-lg:hover {
	background:#676767;
	color:#fff!important;
	cursor: pointer;
	border:4px solid #676767;
	text-decoration: underline!important;
}
.btn-lg:focus {border:2px solid #fff;}
.btn-lg:focus-visible {border:2px solid #fff;}

.give-card {background:#fff; border-radius: 20px; min-height: 575px;}

.criteria-card {background:#fff; border-radius: 20px; min-height: 450px;}
.criteria-card a {color:#000!important; font-weight: 700; text-decoration: none!important; text-transform: none!important; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease;}
.criteria-card a:hover {color:#676767!important; text-decoration: underline!important; font-weight: 900;}
.criteria-card a:focus {border:2px solid #000; color:#000; padding:8px;}
.criteria-card a:focus-visible {border:2px solid #000; color:#000;}

.icon-md {font-size: 45px; color:#79C033;}

/*FORM*/
#form {
        width:100%;
        float:left;
		font-family: 'Reddit Sans', sans-serif;
}


form{
        width: 100%;
        }

legend {font-size: 16px; font-weight: 500; color:#000;}

fieldset{
        border: 0;
        padding:2.5% 0;
        clear: left;
		
        }
        
textarea, input, select{
        border-top:0;
		border-right:0;
		border-left:0;
		border:1px solid #676767;
        padding:2.5%;
        width: 100%;
		font-size: 16px;
        }

label{
        font-weight: 600!important;
		font-size: 100%;
		display: block;
        }       
        
textarea:focus, input:focus, select:focus{
        border: 3px solid #000;
        -webkit-transition: all .4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        outline: none;
}

.submit {
	width:85%;
	padding:3%!important;
	background:#79C033; 	
	color:#000!important;
	font-family: 'Outfit', sans-serif;
	font-size:32px;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing: -.5px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 15px;
}
.submit:hover {
	background-color:#000;
	color:#fff!important;
	cursor:pointer;
}

input {padding:7px!important;}
input[type="checkbox"] {height: 1.5rem;}
.checkbox {height: 2.25rem;}
/*END FORM*/


@media (max-width: 1750px) {
.criteria-card {min-height: 475px;}
}

@media (max-width: 1665px) {
.give-card {min-height: 610px;}
.callout-card {min-height: 600px;}
}

@media (max-width: 1530px) {
.callout-card {min-height: 650px;}
}

@media (max-width: 1450px) {
.give-card {min-height: 675px;}
}

@media (max-width: 1399px) {
.give-card {min-height: 625px;}
.criteria-card {min-height: 500px;}
.callout-card {min-height: 700px;}
}

@media (max-width: 1268px) {
.criteria-card {min-height: 525px;}
}

@media (max-width: 1199px) {
.bg-tagline {background-attachment:fixed; background-size:cover;}
.bg-grants {height:775px;}
.bg-donations {height:775px;}
.give-card {min-height: 475px;}
.criteria-card {min-height: 0;}
.callout-card {min-height: 500px;}
}

@media (max-width: 991px) {
.bg-hero {background-attachment: fixed;}
.btn-hero {font-size:34px;}
.bg-serving {background-size: cover;}
.bg-grants {height:850px;}
.bg-donations {height:850px;}
.give-card {min-height: 510px;}
.callout-card {min-height: 625px;}
}

@media (max-width: 767px) {
.anchor-L ul {text-align:center!important;}
.anchor-R ul {text-align:center!important;}
.bg-grants {height:auto;}
.bg-donations {height:auto;}
.callout-card {min-height: 0;}
.btn-callout {margin-bottom: 50px!important;}
}

@media (max-width: 575px) {
.anchor-L ul li {display:block;}
.anchor-L ul li:after {content:''; margin:0;}
.btn-callout {margin:-30px 0 50px 0!important;}
}

@media (max-width: 480px) {
.header {height: 90px;}
.navbar-brand img {height:70px; margin: 0;}
.navbar-brand.js-scrolling img {height: 50px;}
.btn-hero {font-size:30px;}
.icon-md {font-size: 36px;}
}

@media (max-width: 375px) {
/*.footer {font-size: 14px;}*/
.icon-md {font-size: 24px;}
ul {padding-inline-start: 20px!important;}
}
	
@media (max-width: 335px) {
.navbar-brand img {height:60px; margin: 0;}
.navbar-brand.js-scrolling img {height: 40px;}
.btn-tagline {font-size: 24px;}
.btn-hero {font-size:26px;}
.icon-md {font-size: 48px; margin-bottom: 10px;}
li {font-size: 95%!important;}
}</pre></body></html>