/**
*** SIMPLE GRID
*** (C) ZACH COLE 2016
**/

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  font-size: 100%;
}

* {
  font-family: 'Lato', Helvetica, sans-serif;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.375em;
}

h4 {
  font-size: 1.125em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.875em;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-heavy {
  font-weight: 700;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

.sg-container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
	content: "";
	display: table;
	clear: both;
}

.hidden-sm {
  display: none;
}


@media only screen and (min-width: 33.75em) {  /* 540px */
    .sg-container {
        width: 80%;
    }
}

@media only screen and (min-width: 45em) {  /* 720px */
    .col-1 {
        width: 4.33%;
    }
    
    .col-2 {
        width: 12.66%;
    }
    
    .col-3 {
        width: 21%;
    }
    
    .col-4 {
        width: 29.33%;
    }
    
    .col-5 {
        width: 37.66%;
    }
    
    .col-6 {
        width: 46%;
    }
    
    .col-7 {
        width: 54.33%;
    }
    
    .col-8 {
        width: 62.66%;
    }
    
    .col-9 {
        width: 71%;
    }
    
    .col-10 {
        width: 79.33%;
    }
    
    .col-11 {
        width: 87.66%;
    }
    
    .col-12 {
        width: 96%;
    }
    
    .hidden-sm {
        display: block;
    }

}

@media only screen and (min-width: 60em) { /* 960px */
    .sg-container {
        width: 75%;
        max-width: 80rem;
    }
}

/**
***
***

Copyright 2022 Joshua Albright - jdamakes.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

***
***
**/

.fix-banner-top {
  margin-top: -11.25rem;
  z-index: -1000;
}

.div-link {
  z-index: 1;
  display: block;
  min-height: 20rem;
  max-height: 100%;
  width: 100%;
}

.img-button {
background-color: #3ecaa00a;
border: #3ecaa083 1px solid;
border-radius: 4px;
-webkit-box-shadow: #838383aa 1px 1px 2px;
        box-shadow: #838383aa 1px 1px 2px;
min-height: 20rem;
z-index: -1;
}

.img-button:hover {
border: #3ecaa041 1px solid;
-webkit-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
-webkit-box-shadow: #83838355 8px 8px 8px;
        box-shadow: #83838355 8px 8px 8px;
cursor: pointer;
}

.gradient {
    background-image: -o-linear-gradient(#78fed6, #baf38b);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#78fed6), to(#baf38b));
    background-image: linear-gradient(#78fed6, #baf38b);
    min-height: 60vh;
}

.gradient-reverse {
    background-image: -o-linear-gradient(#baf38b, #78fed6);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#baf38b), to(#78fed6));
    background-image: linear-gradient(#baf38b, #78fed6);
    min-height: 60vh;
}

.sg-container img {
    display: block;
    max-height: 20rem;
    max-width: 25rem;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem auto 1.5rem auto;
}

.banner {
  min-height: 60vh;
  margin-bottom: 1rem;
  margin-top: -1rem;
}

.yp-bg {
    background: -o-linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("youthpass.jpg");
    background: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)) ), url("youthpass.jpg");
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("youthpass.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.donation-bg {
  background: -o-linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("youthpass.jpg");
  background: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)) ), url("youthpass.jpg");
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("youthpass.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-title {
    padding-top: 25vh;
    color: white;
    font-size:4rem;
    font-weight: 600;
    text-shadow: #9293a5 1px 1px 1px;
}

.bg-title-type {
  font-family: 'Calistoga', cursive;
  letter-spacing: 0.2rem;
  font-size: 4rem;
}

.bg-title hr {
  width: 50%;
  border: 2px solid white;
  border-radius: 10px;
}

.side-title {
  padding-top: 2rem;
}

.gradient h1 {
    padding-top: 25vh;
    color: white;
    font-size: 4rem;
    text-shadow: #9293a5 -2px 2px 1px;
}

.gradient-reverse h1 {
    padding-top: 25vh;
    color: white;
    font-size: 4rem;
    text-shadow: #9293a5 -2px 2px 1px;
}

.m-top {
    margin-top: 4rem;
}

.m-bottom {
  margin-bottom: 4rem;
}

.show-mobile {
    display: none;
}

/* Colors */

.accent {
  color: #3ecaa0;
}

.accent-secondary {
  color: #a0cf80;
}

.text-muted {
  color: #646464
}

.text-muted a {
  color: #3e6e60;
}

.icon-row {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.icon {
  display: inline-block;
  height: 6rem;
  width: 6rem;
  background-repeat: no-repeat;
  background-position: -0px -0px;
  -webkit-filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(57deg) brightness(119%) contrast(119%);
          filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(57deg) brightness(119%) contrast(119%);
}

.icon:hover {
  -webkit-transition: ease-in-out 0.1s;
  -o-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  height: 6.5rem;
  width: 6.5rem;
  margin-bottom: -0.5rem;
}

.i-join {
  background-image: url("join.svg");
}

.i-donate {
  background-image: url("donate.svg");
}

.i-story {
  background-image: url("story.svg");
}

.header-img img {
  width: 100%;
}

.donate-content {
	margin: 2rem 0.5rem 3rem 0.5rem;
}

.img-banner {
  width: 100%;
  max-height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  z-index: -1000;
}

.img-fill {
  width: 100%;
  height: auto;
}

.img-text {
  margin-top: -3rem;
  color: black;
  text-align: right;
  font-size: 0.8em;
}

.story-banner-1 {
  background: -o-linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url("opal_group.jpg");
  background: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7)) ), url("opal_group.jpg");
  background: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url("opal_group.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 45vh;
  margin-bottom: 1rem;
  margin-top: -1rem;
}

.story-banner-1 p {
  padding-top: 10vh;
  padding-bottom: 2rem;
  color: white;
  font-weight: 900;
}

.story-banner-2 {
  background: -o-linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ), url("climate_march_2.jpg");
  background: -webkit-gradient( linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)) ), url("climate_march_2.jpg");
  background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) ), url("climate_march_2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 30vh;
  margin-bottom: 1rem;
  margin-top: -1rem;
}

.story-banner-2 p {
  padding-top: 10vh;
  padding-bottom: 2rem;
  color: white;
  font-weight: 400;
  font-size: 2rem;
}

.join-submenu-hidden {
  display: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.join-submenu-show {
  display: inline-block;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.donate-button {
  background-color: #c96565;
  color: white;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container-limit-width {
}

.community-bg {
  background: url("sunflower.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.dev-bg {
  background: url("regenerative.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.comms-bg {
  background: url("bullhorn.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}

.donation-banner {
    min-height: 15vh;
    color: #ffffff;
    background: rgb(96,148,130);
background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(96,148,130,1)), to(rgba(76,77,75,1)));
background: -o-linear-gradient(top, rgba(96,148,130,1) 50%, rgba(76,77,75,1) 100%);
background: linear-gradient(180deg, rgba(96,148,130,1) 50%, rgba(76,77,75,1) 100%);
    margin-top: -0.4rem;
    padding: 1rem;
  	padding-bottom: 4rem;
}

.donation-banner-text {
  font-size: 1.6rem;
  text-shadow: #616161 -1px 1px 2px;
}

.social {
  max-width: 20rem!important;
  max-height: 4rem!important;
}

.social img {
  height: 100%;
  max-width: 4rem;
}

@-webkit-keyframes animateHeart {
  // scale down and scale up faster in irregular intervals to get the throbbing effect
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes animateHeart {
  // scale down and scale up faster in irregular intervals to get the throbbing effect
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.i-donate-banner {
  -webkit-filter: invert(42%) sepia(93%) saturate(200%) hue-rotate(30deg) brightness(119%) contrast(119%) drop-shadow(#46776c -2px 2px 8px);
          filter: invert(42%) sepia(93%) saturate(200%) hue-rotate(30deg) brightness(119%) contrast(119%) drop-shadow(#46776c -2px 2px 8px);
  -webkit-animation: animateHeart 2.2s infinite;
          animation: animateHeart 2.2s infinite;
}

.responsiveCal {
 
position: relative; padding-bottom: 75%; height: 0; overflow: hidden;
 
}
 
.responsiveCal iframe {
  position: absolute; top:0; left: 0; width: 100%; height: 100%;
}

.pdf-container {
  text-align: center;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.pdf-container-mobile {
  text-align: center;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.pdf-container-mobile iframe {
	width: 100%!important;
}

@media only screen and (max-width: 769px) {
  .pdf-container {
    text-align: center;
    max-width: 62rem;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

  .pdf-container-mobile {
    text-align: center;
    max-width: 62rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .form-wrap {
    max-width: 100%!important;
  }
}

@media only screen and (max-width: 500px) {
  .bg-title-type {
    font-family: 'Calistoga', cursive;
    letter-spacing: 0.1rem;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 719px) {
    .show-mobile {
        display: inherit;
    }

    .hide-mobile {
        display: none;
    }
}