:root {
  --lt-green: #97c222;
	--lt-green-rgb: 151,194,34;
	
	--green: #00af41;
	--green-rgb: 0,175,65;
	
	--dk-green: #4d7208;
	--dk-green-rgb: 77,114,8;
	
	--ltr-blue: #69e5ff;
	--ltr-blue-rgb: 105,229,255;

	--lt-blue: #00bce4;
	--lt-blue-rgb: 0,188,228;

	--blue: #357fae;
	--blue-rgb: 53,127,174;

  --dk-blue: #003a63;
	--dk-blue-rgb: 0,58,99;
	
  --dkr-blue: #00122c;
	--dkr-blue-rgb: 0,18,44;
	
	--gray-blue: #32465d;
	--gray-blue-rgb: 50,70,93;
  
  --form-blue: #003d74;

	--red: #d46664;
	--red-rgb: 212,102,100;	
	
	--lt-gray: #f5f5f5;
	--lt-gray-rgb: 245,245,245;		

	--gray: #555555;
	--gray-rgb: 85,85,85;	

  --nav-gray: #777777;
	--nav-gray-rgb: 119,119,199;	

	--white: #ffffff;
	--white-rgb: 255,255,255;		
}
html {
  min-height: 100%;
}
body.expanded-menu {
  overflow: hidden;
}


/* Social Links
------------------------------------ */

.social {
}

.social a {   
  display: block;
  width: 3.5em;  
  padding: .5em;
  vertical-align: middle;
}
.social svg {   
  fill: var(--lt-blue);
  width: 100%;
  max-height: 3em;
  -webkit-transition: fill .2s ease-in-out;
  -moz-transition:    fill .2s ease-in-out;
  -o-transition:      fill .2s ease-in-out;
  -ms-transition:     fill .2s ease-in-out;
  transition:         fill .2s ease-in-out;   
}
.social a:hover svg {   
  fill: var(--green);
}

/* ---- Colored Layers/Aricles ---- */
.white {
   background: #fff;
   color: #000;
}
.blue {
  background: var(--blue);
  color: #fff;
}
.green {
  background: var(--green);
  color: #fff;
}
.dark-blue {
  background: var(--dk-blue);
  color: #fff;
}
.light-blue {
  background: var(--lt-blue);
  color: #fff;
}
.form-blue {
  background: var(--form-blue);
  color: #fff;
}
.red {
  background: var(--red);
  color: #fff;
}
.light-gray {
  background: var(--lt-gray);
  color: #555;
}
.gray {
  background: var(--gray);
  color: #fff;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .blue {
    background: #007bb6;    
  }
  .green {
    background: #4eae4f;
  }
  .dark-blue {
    background: #00334c;
  }
  .light-blue {
    background: #72bdd9;
  }
  .form-blue {
    background: #003d74;
  }
  .red {
    background: #db363a;
  }
  .light-gray {
    background: #f5f5f5;
  }
  .gray {
    background: #555555;
  }
}

.white h2 {
  color: #459d4d;
  color: var(--green);
}
.white p {
  color: #4e4e4e;  
  color: var(--gray);
}

/* ---- Grid ---- */

.grid {
  display: block;
} 
.grid article {
	width: 100%;
	display: block;
}
.grid article.photo {
  background-color: var(--blue);
}
.grid article.video {
  background-color: var(--green);
}
@media only screen and (min-width: 520px) and (min-device-width: 480px) {    
  .grid {
    display: -ms-flexbox;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
  	grid-template-columns: repeat(2, 1fr);
  	margin: 0;
  }   
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .grid {
  	width: 100%;
    margin: 0 auto;
	}  
  .grid article {
		width: 48%;
		display: inline-block;
    margin: 0 auto;
	}
}
.grid article  {
  margin:  0;
  position: relative;
  text-align: center;
}  
.grid article a {
  display: block;
}  
.grid article .aspect-ratio {
  max-width: 100%;
  display: block;  
  position: relative; 
  overflow: hidden;   
}
.grid .photo .aspect-ratio {
  padding-bottom: 100%; 
  height: 0;   
}

.grid article .vert {
  width: 100%;  
  padding: 2em;
  z-index: 100;  
} 
.grid .photo .vert {
  position: absolute;
  top: 50%;
  -moz-transform:    translateY(-50%);
  -ms-transform:     translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform:         translateY(-50%);      
}    
.grid article .max {
  max-width: 720px;
  max-width: calc(720px + 2em);
  padding: 1em;
}  
@media only screen and (min-width: 740px) and (min-device-width: 480px) {    
  .grid article .aspect-ratio,
  .grid .photo .aspect-ratio {
    padding-bottom: 100%; 
    height: 0;  
  }  
  .grid article .vert {
    padding: 1em; 
    position: absolute;
    top: 50%;
    z-index: 100;
    -moz-transform:    translateY(-50%);
    -ms-transform:     translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform:         translateY(-50%);      
  }     
}
@media only screen and (min-width: 1000px) and (min-device-width: 480px) {    
  .grid article .vert-center {
    padding: 2em; 
  }     
}

/* ---- Grid Element - Photo ---- */
.grid figure {
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size:    cover;
  -o-background-size:      cover;
  background-size:         cover; 
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all .7s ease-in-out;
  -moz-transition:    all .7s ease-in-out;
  -o-transition:      all .7s ease-in-out;
  -ms-transition:     all .7s ease-in-out;
  transition:         all .7s ease-in-out;    
}
.grid .video figure {
  opacity: .3;
}
.grid .video:hover figure {
  opacity: .15;
  -moz-transform:    scale(1.05);
  -ms-transform:     scale(1.05);
  -webkit-transform: scale(1.05);
  transform:         scale(1.05);   
}
/* ---- Grid Element - Video ---- */
.video a {
  position: relative;
  z-index: 100;
}
.video a .max {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out;   
}
.video a:hover .max {
  -moz-transform:    translateY(-5%);
  -ms-transform:     translateY(-5%);
  -webkit-transform: translateY(-5%);
  transform:         translateY(-5%);  
}
.video .play {
  width: 4em;
  height: 4em;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-bottom: 1em;
  display: block;
  -webkit-transition: all .7s ease-in-out;
  -moz-transition:    all .7s ease-in-out;
  -o-transition:      all .7s ease-in-out;
  -ms-transition:     all .7s ease-in-out;
  transition:         all .7s ease-in-out;   
}
.video a:hover .play {
}
.video .play .play-circle {
  fill: transparent; 
  -webkit-transition: fill .3s ease-in-out;
  -moz-transition:    fill .3s ease-in-out;
  -o-transition:      fill .3s ease-in-out;
  -ms-transition:     fill .3s ease-in-out;
  transition:         fill .3s ease-in-out;    
}
.video:hover .play .play-circle {
}
.video .play .play-icon {
  fill: #fff;
  -webkit-transition: fill .3s ease-in-out;
  -moz-transition:    fill .3s ease-in-out;
  -o-transition:      fill .3s ease-in-out;
  -ms-transition:     fill .3s ease-in-out;
  transition:         fill .3s ease-in-out;    
}
.video video {
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  min-width: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: .3;
  -webkit-transition: opacity .3s ease-in-out;
  -moz-transition:    opacity .3s ease-in-out;
  -o-transition:      opacity .3s ease-in-out;
  -ms-transition:     opacity .3s ease-in-out;
  transition:         opacity .3s ease-in-out;    
}
.video:hover video {
  opacity: .4;
}
@media only screen and (min-width: 740px) and (min-device-width: 480px) {  
  .video .play {
    width: 6em;
    height: 6em;
  }
}
@media only screen and (min-width: 1000px) and (min-device-width: 480px) { 
  .video .play {
    width: 8em;
    height: 8em;
  }
}
@media only screen and (min-width: 1200px) and (min-device-width: 480px) { 

}
@media only screen and (min-width: 1400px) and (min-device-width: 480px) {     
}

/* ---- Text Promo ---- */
.text-promo h2 {
  font-weight: 700;
  line-height: 1.1;
}
.text-promo p {
  font-size: 110%;
  line-height: 1.5;
}
@media only screen and (min-width: 740px) and (min-device-width: 480px) {  
  .text-promo p {
    font-size: 100%;  
  }
}
@media only screen and (min-width: 1000px) and (min-device-width: 480px) {  
  .text-promo p {
    font-size: 115%;  
  }
}
@media only screen and (min-width: 1200px) and (min-device-width: 480px) { 
  .text-promo p {
    font-size: 130%;  
  }
}
@media only screen and (min-width: 1400px) and (min-device-width: 480px) {  
  .text-promo p {
    font-size: 135%;  
  }
}

/* Site Wrap
------------------------------------ */
.wrap {
  position: relative;
  padding: 2em;  
  z-index: 200;
} 
.main .wrap {
  padding: 0;  
} 
.content {
  max-width: 900px;
  line-height: 1.5;
}
.content.center {
  text-align: center;
}
.main .pad {
  padding: 2em;  
}   
@media only screen and (min-width: 740px) and (min-device-width: 480px) {  
  .wrap {
    padding: 2em;  
  }  
}
@media only screen and (min-width: 1000px) and (min-device-width: 480px) {  
  .wrap {
    max-width: 900px;
    padding: 3em 1em;    
  }   
}
@media only screen and (min-width: 1200px) and (min-device-width: 480px) {  
  .wrap {
    max-width: 1100px;
    padding: 5em 0;    
  }   
}
@media only screen and (min-width: 1400px) and (min-device-width: 480px) {  
  .wrap {
    max-width: 1400px;
    padding: 8em 0;  
  }   
  .main .pad {
    padding: 3em;  
  }    
}
.content p,
.content ol,
.content ul {
  font-size: 115%;
}
.content li {
  padding-top: .6em;
}

/* --- Layer --- */
.layer {
  position: relative;
}

.layer .aspect-ratio {
  position: relative;
}


/* --- Basic Buttons --- */
.button { 
  background: #fff;
  text-transform: uppercase;
  color: #007bb6;
  color: var(--blue);
  font-size: 1.2em;
  padding: .4em .85em;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  margin-top: .5em;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.20, 0.95, 0.30, 0.95);
  -moz-transition:    all 0.5s cubic-bezier(0.20, 0.95, 0.30, 0.95);
  -o-transition:      all 0.5s cubic-bezier(0.20, 0.95, 0.30, 0.95);
  -ms-transition:     all 0.5s cubic-bezier(0.20, 0.95, 0.30, 0.95);
  transition:         all 0.5s cubic-bezier(0.20, 0.95, 0.30, 0.95);
} 
.button:hover  { 
  background-color: var(--dark-blue);  
  color: #fff;
  -webkit-box-shadow: inset 0 0 0 3px #ffffff;
    box-shadow: inset 0 0 0 3px #ffffff;
  -moz-transform:    translateY(-7%);
  -ms-transform:     translateY(-7%);
  -webkit-transform: translateY(-7%);
  transform:         translateY(-7%);  
} 
.white .button { 
  background-color: #459d4d;
  background-color: var(--green);
  color: #fff;
} 
.white .button:hover  { 
  background-color: var(--blue);
  color: #fff;
} 

@media only screen and (min-width: 740px) and (min-device-width: 480px) {  
  .button {
    margin-top: 1em;    
    font-size: 1.3em;
  }
} 
@media only screen and (min-width: 1000px) and (min-device-width: 480px) {  
  .button {
    font-size: 1.4em;
  }
} 
@media only screen and (min-width: 1200px) and (min-device-width: 480px) {  
  .button {
    font-size: 1.6em;
  }
} 

/* --- Footer --- */

footer { 
   background: white;
   padding: 3em 2em 4em;
   position: relative;
   text-align: center; 
   width: 100%;
   border-top: 20px #f5f5f5 solid;
}

footer a { 
  color: var(--blue);
  padding: .5em 1em;
  white-space: nowrap;
  line-height: 1.8;
}
footer a:hover { 
  color: var(--green);
}
footer .social { 
  margin: 2em auto;
}
footer .social a {
  display: inline-block;
  padding: .5em 1em;
}
footer .paidfor {
  display: table;
  font-size: 100%;
  border: 1px solid #ededed;
  margin: 2em auto; 
  padding: 1em 2em;
  color: var(--blue);
  border: 1px solid var(--blue);
}


@media only screen and (min-width: 1000px) and (min-device-width: 480px) {  
  footer { 
    padding: 4em 1em 6em;
  }
  .home footer { 
    padding: 2em 0;
  }
  footer li { 
    padding: 1em .75em;
    font-size: 1.2em;    
    display: inline-block;
  }
  footer .signatory {
    margin-bottom: 2em; 
  }  
}


/* --- Sitewide Top Priorities Widget --- */
#top-priorities {
  padding: 8em 2em 0;
  position: relative;
  min-height: auto;
  width: 100%;
  overflow: hidden;
  background-color: #1e3d64;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

#top-priorities .gradient-overlay {
  display: block;
  width: 100%;
  height: 80%;
  min-height: 700px;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  background: #1e3d64;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 200px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 200px);
}

#top-priorities .wrap {
  z-index: 101;
  display: block;
  padding: 0;
}

#top-priorities .text {
  position: relative;
  color: white;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#top-priorities .text span {
  margin: 0;
  position: relative;
  width: 90%;
  top: 0;
  left: initial;
}

#top-priorities .promos {
  display: block;
  padding: 2em 0;
}

.priority-promo {
  display: block;
}

.priority-promo a {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  padding: 1em;
  background: #357fae;
  margin: .5em;
  font-size: 140%;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  color: #fff;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition:    all .5s ease-in-out;
  -o-transition:      all .5s ease-in-out;
  -ms-transition:     all .5s ease-in-out;
  transition:         all .5s ease-in-out; 
}

.priority-promo a:hover {
  background: #00af41;
  -moz-transform:    scale(1.05);
  -ms-transform:     scale(1.05);
  -webkit-transform: scale(1.05);
  transform:         scale(1.05); 
}

.priority-promo a span {
  margin: 0;
  position: relative;
}

#top-priorities .text h1 {
  color: #fff;
}

@media only screen and (min-width: 640px) and (min-device-width: 480px) { 
  #top-priorities .gradient-overlay {
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 300px);
      mask-image: linear-gradient(to bottom, transparent 0%, black 300px);
  }
}

@media only screen and (min-width: 640px) and (min-device-width: 480px) { 
  #top-priorities {
    padding: 15em 2em 0;
  }
}

@media only screen and (min-width: 800px) and (min-device-width: 480px) { 
  #top-priorities {
      padding: 2em 0;
      background-size: auto 100%;
      background-position: left center;
  }
  #top-priorities .wrap {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  }
  #top-priorities .gradient-overlay {
      height: 100%;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 75%);
      mask-image: linear-gradient(to right, transparent 0%, black 75%);
  }
  #top-priorities .text {
      text-align: left;
      width: 90%;
      margin: 0 0 0 10%;
  }
  #top-priorities .text span {
      margin: 0;
      position: absolute;
      width: 100%;
      top: 50%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
  }
  #top-priorities .text span span.description {
     position: relative;
     top: initial;
     left: initial;
     margin: 0 auto;
     transform: none;
  }
  #top-priorities .promos {
      padding: 1.5em 0;
      display: -ms-flexbox;
      display: grid;
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      -ms-grid-rows: 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr;
      gap: 1px 1px;
      grid-template-areas: ". ." ". ." "Bottom Bottom";
  }
  .Bottom { grid-area: Bottom; }
  .priority-promo a {
      width: 180px;
      height: 110px;
      font-size: 110%;
      padding: 0;
      margin: .5em;
  }
  .priority-promo a span {
      margin: 0;
      position: absolute;
      width: 80%;
      top: 50%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%);
  }
}

@media only screen and (min-width: 1000px) and (min-device-width: 480px) { 
  #top-priorities .gradient-overlay {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 65%);
    mask-image: linear-gradient(to right, transparent 0%, black 65%);
  }
  #top-priorities .text {
      width: 100%;
      margin: 0;
  }
  #top-priorities .promos {
      padding: 2em 0;
  }
  .priority-promo a {
      width: 200px;
      height: 150px;
      font-size: 120%;
  }
}

@media only screen and (min-width: 1200px) and (min-device-width: 480px) { 
  #top-priorities {
    min-height: auto;
  }
  #top-priorities .gradient-overlay {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%);
    mask-image: linear-gradient(to right, transparent 0%, black 55%);
  }
  #top-priorities .wrap {
    display: -ms-flexbox;
    display: grid;
    -ms-grid-columns: 4fr 3fr;
    grid-template-columns: 4fr 3fr;
  }
  
  #top-priorities .text {
    width: 50%;
    margin: 0 0 0 50%;
  }
  .priority-promo a {
    width: 220px;
    height: 160px;
    font-size: 140%;
  }
}


/* --- Sitewide Top Priorities Widget --- */
#donation {
  padding: 10em 2em 2em;
  position: relative;
  min-height: auto;
  width: 100%;
  overflow: hidden;
  background-color: #1e3d64;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#donation .gradient-overlay {
  display: block;
  width: 100%;
  height: 80%;
  min-height: 700px;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  background: #1e3d64;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
}

#donation .wrap {
  z-index: 101;
  display: block;
  padding: 0;
}

#donation .text {
  position: relative;
  color: white;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#donation .text span {
  margin: 0;
  position: relative;
  width: 90%;
  top: initial;
  left: initial;
}

#donation .text h1 {
  color: #fff;
}

#donation .promos {
  margin-top: 1em;
  position: relative;
  width: 100%;
  display: block;
}

.donation-amount {
  display: inline-block;
  margin: .5em;
}

.donation-amount a {
  display: inline-block;
  padding: .5em 1em;
  font-size: 125%;
  color: white !important;
  -webkit-transition: all .5s ease-in-out;
  -moz-transition:    all .5s ease-in-out;
  -o-transition:      all .5s ease-in-out;
  -ms-transition:     all .5s ease-in-out;
  transition:         all .5s ease-in-out;  
}

.donation-amount a:hover {
  background: var(--blue);
  -webkit-box-shadow:inset 0 0 0 3px #ffffff;
  box-shadow:inset 0 0 0 3px #ffffff;
}

@media only screen and (min-width: 640px) and (min-device-width: 480px) { 
  #donation {
    padding: 12em 2em 2em;
  }
}

@media only screen and (min-width: 800px) and (min-device-width: 480px) { 
  #donation {
      min-height: 500px;
      padding: 0;
      background-size: auto 100%;
      background-position: right center;
  }
  #donation .gradient-overlay {
      height: 100%;
      -webkit-mask-image: linear-gradient(to left, transparent 0%, black 80%);
      mask-image: linear-gradient(to left, transparent 0%, black 80%);
  }
  #donation .text {
      text-align: left;
      top: 200px;
      width: 50%;
      margin: 0;
      left: 2em;
  }
}

@media only screen and (min-width: 1000px) and (min-device-width: 480px) { 
  #donation {
    min-height: 600px;
  }
  #donation .gradient-overlay {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 75%);
    mask-image: linear-gradient(to left, transparent 0%, black 75%);
  }
  #donation .promos {
    text-align: left;
    margin: 0;
  }
  #donation .text {
    top: 230px;
    left: initial;
  }
}

@media only screen and (min-width: 1200px) and (min-device-width: 480px) { 
  #donation {
    min-height: 700px;
  }
  #donation .gradient-overlay {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 66%);
    mask-image: linear-gradient(to left, transparent 0%, black 66%);
  }
  #donation .text {
    top: 250px;
  }
}

 
/* --- Animation Triggers --- */


.trigger,
.low-trigger,
.high-trigger { 
	opacity: 0;
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition:    opacity 1s ease-in-out;
	-o-transition:      opacity 1s ease-in-out;
	-ms-transition:     opacity 1s ease-in-out;
	transition:         opacity 1s ease-in-out;	
}
.trigger.no-translate,
.low-trigger {  	
}
.trigger.reveal,
.low-trigger.reveal,
.high-trigger.reveal { 
	opacity: 1;
}	

/* --- Form Basics --- */

form input,
form select,
form textarea {
  background: transparent; 
  width: 100%;  
  border: 4px solid #4e4e4e;  
  border: 4px solid rgba(var(--gray-rgb), .5);
  font-weight: 400;
  font-size: 1.1em;  
  padding: 1em;  
  color: var(--dk-blue);
  cursor: pointer; 
  -webkit-border-radius: 0;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;  
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out; 
}	
form input:hover,
form select:hover,
form textarea:hover {
  background-color: var(--dk-blue); 
  color: #fff;
  border-color: #007bb6;
  border-color: var(--blue);  
}  
form input:focus,
form select:focus,
form textarea:focus {
  background-color: white; 
  color: #00334c;  
  color: var(--dark-blue); 
  border-color: #00334c;  
  border-color: rgba(var(--gray-rgb), .9); 
}  
form.dark input,
form.dark select,
form.dark textarea {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: rgba(255,255,255,.2);
  border: 0;
  color: #fff;
}
form.dark input:hover,
form.dark select:hover,
form.dark textarea:hover {
  background-color: #1e3d64;
  color: #fff;
}
form.dark input:focus,
form.dark select:focus,
form.dark textarea:focus {
  background: #1e3d64;  
  -webkit-box-shadow:inset 0 0 0 3px #ffffff;
  box-shadow:inset 0 0 0 3px #ffffff;
}
input.error,
input.error {
  border-color: #db363a;  
  border-color: var(--red) !important;
}

form input:-ms-input-placeholder            { color: #003a63; }
form input::-webkit-input-placeholder       { color: #003a63; }
form input:hover:-ms-input-placeholder      { color: #ffffff; }
form input:hover::-webkit-input-placeholder { color: #ffffff; }     
form input:focus:-ms-input-placeholder      { color: #6b9718; }
form input:focus::-webkit-input-placeholder { color: #6b9718; }
form textarea:-ms-input-placeholder            { color: #003a63; }
form textarea::-webkit-input-placeholder       { color: #003a63; }
form textarea:hover:-ms-input-placeholder      { color: #ffffff; }
form textarea:hover::-webkit-input-placeholder { color: #ffffff; }  
form textarea:focus:-ms-input-placeholder      { color: #6b9718; }
form textarea:focus::-webkit-input-placeholder { color: #6b9718; }

form.dark input:-ms-input-placeholder            { color: #ffffff; }
form.dark input::-webkit-input-placeholder       { color: #ffffff; }
form.dark input:hover:-ms-input-placeholder      { color: #ffffff; }
form.dark input:hover::-webkit-input-placeholder { color: #ffffff; }     
form.dark input:focus:-ms-input-placeholder      { color: #ffffff; } 
form.dark input:focus::-webkit-input-placeholder { color: #ffffff; }  
form.dark textarea:-ms-input-placeholder            { color: #ffffff; }
form.dark textarea::-webkit-input-placeholder       { color: #ffffff; }
form.dark textarea:hover:-ms-input-placeholder      { color: #ffffff; }
form.dark textarea:hover::-webkit-input-placeholder { color: #ffffff; }  
form.dark textarea:focus:-ms-input-placeholder      { color: #ffffff; } 
form.dark textarea:focus::-webkit-input-placeholder { color: #ffffff; } 

@media only screen and (min-width: 740px) and (min-device-width: 480px) {  
  form input,
  form select,
  form textarea {
    font-size: 1em;  
  }  
}
@media only screen and (min-width: 1000px) and (min-device-width: 480px) {  
  form input,
  form select,
  form textarea {
    font-size: 1.15em;  
    padding: .8em;
  }  
}
@media only screen and (min-width: 1200px) and (min-device-width: 480px) {  
  form input,
  form select,
  form textarea {
    font-size: 1.3em;  
    padding: 1em;
  }  
}
@media only screen and (min-width: 1400px) and (min-device-width: 480px) {  
  form input,
  form select,
  form textarea {
    font-size: 1.5em;  
  }  
}
div.error-msg {
  display: block;
  padding: .3em 0;
}
div.error-msg strong {
  background: #db363a;  
  background: var(--red);
  display: inline-block;
  color: #fff;
  padding: .5em .7em;
  font-size: 80%;
  margin: 0 .23em .2em 0;
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #donation .gradient-overlay { display:  none; }
  #top-priorities {
    padding: 8em 2em 0;
    position: relative;
    min-height: auto;
    width: 100%;
    overflow: hidden;
    background-color: #1e3d64;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
  }
  #top-priorities .gradient-overlay { display: none; }
  #top-priorities .wrap {
    z-index: 101;
    display: block;
    padding: 0;
  }
  
  #top-priorities .text {
    position: relative;
    color: white;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  #top-priorities .text span {
    margin: 0;
    position: relative;
    width: 90%;
    top: 0;
    left: initial;
  }
  
  #top-priorities .promos {
    display: inline-block;
    padding: 2em 0;
  }
  
  .priority-promo {
    display: inline-block;
  }
}

article.news {
  margin: 0 0 1em 0;
  border-bottom: 1px #ccc solid;
  padding: 0 0 .5em 0;
}
}
