*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-size: 16px;
  line-height: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color:#221F1F;
}

img{
  border: 0;
  max-width:100%;
  vertical-align:middle;
}

a{
  text-decoration: none;
  cursor:pointer;
  color:#CF363E;
  transition:.7s color, .7s background-color, .7s box-shadow;
}
a:focus{
  outline: none;
}
a:hover{
  color:#20325D;
  transition:.3s color, .3s background-color, .3s box-shadow;
}

h1{
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-shadow: 0 0 15px #000;
}

h2{
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}


h3{
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 35px;
}
h3::after{
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color:#FFF;
  margin: 15px auto 0 auto;
}

.light h3::after, .nobg h3::after{
  background-color:#221F1F;
}

.smallheading h3{
  font-size: 22px;
  font-weight: 600;
  margin-top:0;
  margin-bottom: 15px;
}

h4{
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0 10px 0;
  transition:.7s font-weight, .7s color;
}

h2:first-child, h3:first-child, h4:first-child{
  margin-top:0;
}

.bold{
  font-weight:700;
}

p{
  margin-bottom: 20px;
}
p:last-child{
  margin-bottom:0;
}

ul, ol{
  margin: 0 0 15px 30px;
}

.spaced{
  letter-spacing: 2px;
}


.clear{ clear: both; }

.container{
  margin: 0 auto;
  width: 96%;
  max-width: 1500px;
  position:relative;
}

.container.medium{
  max-width: 1200px;
}

.container.narrow{
  max-width: 850px;
}

.flex{
  display:flex;
}
.flex.wrap{
  flex-wrap:wrap;
}
.flex.end{
  align-items:flex-end;
}

.flex.swap{
  flex-direction: row-reverse;
}

.flex .half{
  width: 50%;
}

.flex .half.spaced{
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex .half.spaced:nth-child(2n+2){
  margin-right:0;
}

.flex .third{
  width: 32%;
  margin-right: 2%;
}
.flex .third.bordered{
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
  padding: 15px 30px;
}

.flex .third.morespace{
  width: 30%;
  margin-right: 5%;
}


.flex .third:nth-child(3n+3){
  margin-right:0;
}

.flex .third.boxed{
  border: 1px solid #CCC;
  padding: 30px;
}


.flex.vert{
  align-items: center;  
}


.margined{
  margin: 75px auto;
}
.margined-small{
  margin: 30px auto;
}
.margined-large{
  margin: 150px auto;
}

.topmargin{
  margin-top: 75px;
}
.bottommargin{
  margin-bottom: 75px;
}

.padded{
  padding: 75px;
}
.vpad{
  padding: 75px 0;
}

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


.button{
  display: inline-block;
  border-radius: 30px;
  color:#221F1F;
  padding: 10px 25px;
  border: 2px solid #221F1F;
  text-transform: uppercase;
  font-size: 14px;
  cursor:pointer;
}
.button.white{
  border-color:#FFF;
  color:#FFF;
}
.button + .button{
  margin-left: 40px;
}

.button img{
  width: 20px;
  margin-left: 8px;
}

.button:hover{
  background-color: #CF363E;
  color:#FFF !important;
}

.inline{
  display:inline;
}
.inlineblock{
  display:inline-block;
}
.block{
  display:block;
}

.bgcover{
  background-size:cover;
  background-position: center center;
}

.header{
  background-color:#F6F6F6;
  padding: 15px 0;
}

.header h1{
  width: 200px;
}
.header h1 img{
  width: 100%;
}
.header .donate{
  width: 200px;
  text-align:right;
}

.header ul{
  width: calc(100% - 400px);
  text-align:center;
  list-style-type:none;
  margin:0;
}
.header ul li{
  display:inline;
}
.header ul li a{
  text-transform:uppercase;
  font-size: 14px;
  color:#221F1F;
  margin: 0 20px;
}
.header ul li a.current{
  font-weight: 700;
}
.header ul li a:hover{
  color: #CF363E;
}


.footer{
  background-color:#221F1F;
  color:#FFF;
}
.footer a{
  color:#FFF;
}
.footer a:hover{
  color: #CF363E;
}

.footnav{
  list-style-type:none;
  margin:0;
  padding: 20px;
  text-align:center;
  background-color:#100F0F;
}
.footnav li{
  display:inline;
}
.footnav li a{
  text-transform:uppercase;
  font-size: 14px;
  color:#fff;
  margin: 0 20px;
}
.footnav li a.current{
  font-weight: 700;
}

.copy{
  background-color:#100F0F;  
  text-align:center;
  font-size: 11px;
  padding: 0 15px 15px 15px;
  color:#666;
}
.copy a{
  color:#666;
}

.full-width-image{
  height: 85vh;
  background-size:cover;
  background-position: center center;
  max-height: 1000px;
  display:flex;
  align-items:center;
  text-align:center;
}

.full-width-image a{
  text-align:center;
  width:100%;
  display:block;
  filter:invert(100%);
  opacity: .5;
  transition:.3s opacity;
}
.full-width-image a img{
  width: 150px;
}
.full-width-image a:hover{
  opacity: 1;
  transition:.3s opacity;
}


.dark{
  background-color:#221F1F;
  color:#FFF;
}
.dark.blue{
  background-color:#20325D;
}

.light{
  background-color:#F6F6F6;
}

.nobg{
  background-color:#FFF;
}


.donatebutton{
  display:block;
  background-color:#FFFFFF;
  color: #E64B5F;
  font-weight: 700;
  font-size: 20px;
  padding: 55px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.donatebutton:hover{
  color: #20325D;
}


.story{
  display:block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-color:#FFF;
  text-align:center;
  margin-bottom: 20px;
}
.story .story-img{
  display:block;
  background-size: cover;
  background-position: center center;
  padding-bottom: 90%;
}
.story .story-title{
  display:block;
  font-weight: 700;
  padding: 10px 10px 0 10px;
}
.story-date{
  display:block;
  color: #E64B5F;
  font-size: 11px;
  padding: 0 10px 15px 10px;
}

.story:hover{
  box-shadow: rgba(50, 50, 93, 0.5) 0px 6px 12px -2px, rgba(0, 0, 0, 0.5) 0px 3px 7px -3px;
}

.img-ratio{
  padding-bottom: 20%;
}
.bg-fit{
  background-size:cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.bg-img-ratio{
  padding-bottom: 30%;
}

.sidecontent{
  max-width: 700px;
}


.owl-carousel .owl-dot{
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #C9C9C9 !important;
  margin: 0 4px;
}
.owl-carousel .owl-dot.active{
  width: 14px;
  height: 14px;
  background-color: #E01E37 !important;  
}

.pageheader{
  color:#FFF;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
 position:relative;
}

.pageheader .breadcrumbs{
  position:absolute;
  bottom: 15px;
  left:0;
  width: 100%;
  font-size: 14px;
}
.pageheader .breadcrumbs .middle{
  display: inline-block;
  margin: 0 auto;
  position:relative;
  padding: 0 20px;
}
.pageheader .breadcrumbs a{
  color:#FFF;
}

.pageheader .line{
  width: 100vw;
  height: 1px;
  background-color:#FFF;
  position:absolute;
  top: 14px;
}
.pageheader .line.before{
  right: 100%;
}
.pageheader .line.after{
  left: 100%;
}


.subnav{
  color:#FFF;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  height: 250px;
  width:100%;
  padding: 15px;
  transition:.7s font-size;
  position:relative;
}
.subnav .block{
  width:100%;
}
.subnav:hover{
  color:#FFF;
  font-size: 33px;
  transition:.3s font-size;
}
.subnav .fade{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(32,50,93,.4);
  transition:2s background;
}
.subnav:hover .fade{
  background-color: rgba(32,50,93,0);
  transition:.5s background;
}


.history{
  overflow:hidden;
}

.history .year{
  width: 100px;
}
.history .line{
  width: 50px;
  position:relative;
}
.history .line .dot{
  display:block;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: #20325D;
  position: absolute;
  top: 85px;
  left: 0;
}
.history .line .line-line{
  display: block;
  width: 1px;
  height: 100%;
  background-color:#20325D;
  position:absolute;
  top: 0;
  left: 6px;
}

.blue .history .line .dot{
  top: 95px;
  background-color:#FFF;
}
.blue .history .line .line-line{
  top: 95px;
  background-color:#FFF;
}

.history .content{
  width: calc(100% - 150px);
}

.history .history-image{
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-right: 40px;
}
.history .history-content{
  width: calc(100% - 240px);
  border-top: 1px solid #221F1F;
  border-bottom: 1px solid #221F1F;
  padding: 40px 0;
}



.article{
}

.article-img{
  width: 30%;
}

.article-img.flex a{
  width: 49%;
  margin-right: 2%;
  margin-bottom: 10px;
}
.article-img.flex a img{
  display:block;
}
.article-img.flex a:first-child{
  width:100%;
  margin-right:0;
}
.article-img.flex a:nth-child(2n+3){
  margin-right:0;
}

.article-intro{
  width: 70%;
  margin-left: 75px;
  border-bottom: 1px solid #E01E37;
  padding-bottom: 75px;
  color:#221F1F;
}
.article-intro.noborder{
  border:0;
  padding-bottom:0;
}


.article.featured{
  background-color:#f1f1f1;
}
.article.featured .article-img{
  padding: 25px 0 25px 25px;
}
.article.featured .article-intro{
  padding: 25px 20px 25px 0;
  border-bottom:0;
}

.date{
  color: #E01E37;
  font-size: 14px;
  text-transform: uppercase;
}

.readmore{
  font-size: 14px;
  text-transform: uppercase;
  transition:.3s font-weight, .3s color;
}
a.article:hover h4{
  color: #E01E37;
  transition:.3s font-weight, .3s color;
}
a.article:hover .readmore{
  color: #E01E37;
  transition:.3s font-weight, .3s color;
}

.donation{
  background-color:#F6F6F6;
  padding: 15px;
}

.annualreport{
  display:block;
  width:100%;
  background-color:#F6F6F6;
  padding: 15px;
}

.rightfloat{
  float:right;
  max-width: 40%;
  margin: 0 0 15px 75px;
}

.block-img{
  display:block;
  width:100%;
}




.input,.textarea{
  display: block;
  width: 100%;
  background-color:#FFF;
  border:0;
  padding: 15px;
  text-align:left;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.textarea{
  height: 85px;
}

.mission-log{
  margin-bottom: 15px;
}
.mission-log:last-child{
  margin:0;
}

.space{
  height: 75px;
}