/* ----------------------------------------------------------------
FONTS
-----------------------------------------------------------------*/

@font-face {
    font-family: 'circular';
    src: url('/assets/fonts/circularstd-book-webfont.eot');
    src: url('/assets/fonts/circularstd-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/circularstd-book-webfont.woff') format('woff'),
         url('/assets/fonts/circularstd-book-webfont.ttf') format('truetype'),
         url('/assets/fonts/circularstd-book-webfont.svg#circular') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'circular';
    src: url('/assets/fonts/circularstd-medium-webfont.eot');
    src: url('/assets/fonts/circularstd-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/circularstd-medium-webfont.woff') format('woff'),
         url('/assets/fonts/circularstd-medium-webfont.ttf') format('truetype'),
         url('/assets/fonts/circularstd-medium-webfont.svg#circular') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'circular';
    src: url('/assets/fonts/circularstd-bold-webfont.eot');
    src: url('/assets/fonts/circularstd-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/assets/fonts/circularstd-bold-webfont.woff') format('woff'),
         url('/assets/fonts/circularstd-bold-webfont.ttf') format('truetype'),
         url('/assets/fonts/circularstd-bold-webfont.svg#circular') format('svg');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'petangue';
    src: url('/assets/fonts/petangue_demo-webfont.woff2') format('woff2'),
         url('/assets/fonts/petangue_demo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}





/* ----------------------------------------------------------------
SKELETON OVERRIDES
-----------------------------------------------------------------*/


.container.top
{
  position: fixed;
  z-index: 1000;
  max-width: none;
  width: 100%;
  padding: 0 60px;
}


.container.fullwidth
{
	padding: 0;
	max-width: none;
  width: 100%;
}

.container.fullwidth .row
{
  max-width: 1200px;
  margin:0 auto;
  display:block;
}


.container.fullheight
{
  height: 100vh;
}


.container.fullwidth.black
{
  background-color:#000;
  overflow: hidden;
}

.green-how-it-works {
	height: 75vh;
}

.container.fullwidth.green
{
  background-color: #3cc6b7;
  
}


h1 {
    font-size: 6rem;
    line-height: 1.6;
    font-weight: 500;
}

p {
    font-size: 2.3rem;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight:300;
}

/* ----------------------------------------------------------------
Buttons
-----------------------------------------------------------------*/

.button {
  background-color: #f17c49; /* Orange */
  border: none;
  border-radius: 4px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.button-hover:hover {
  color: black;
  background-color: white;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.donate-now-btn {
	margin-bottom: 30px;
}

.be-a-light-btn {
	margin-left: 38px;
}
/* ----------------------------------------------------------------
Polaroid
-----------------------------------------------------------------*/


.wrapper {
  width: 100%;
  padding: 0 2rem;
  text-align: center;
}
.polaroid {
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0.2rem 1.2rem rgba(0,0,0,0.2);
  
}
.polaroid > img{
  max-width: 100%;
  height: auto;
}
.caption {
  font-family: 'Poor Story', cursive;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2em;
}
.item {
  width: 80%;
  display: inline-block;
  margin-top: 2rem;
 
}
.item .polaroid:before {
  content: '';
  position: absolute;
  z-index: -1;
  transition: all 0.35s;
}
.item:nth-of-type(4n+1) {
  transform: scale(0.8, 0.8) rotate(5deg);
  transition: all 0.35s;
}
.item:nth-of-type(4n+1) .polaroid:before {
  transform: rotate(6deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  right: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0,0,0,0.4);
}
.item:nth-of-type(4n+2) {
  transform: scale(0.8, 0.8) rotate(-5deg);
  transition: all 0.35s;
}
.item:nth-of-type(4n+2) .polaroid:before {
  transform: rotate(-6deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  left: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0,0,0,0.4);
}
.item:nth-of-type(4n+4) {
  transform: scale(0.8, 0.8) rotate(3deg);
  transition: all 0.35s;
}
.item:nth-of-type(4n+4) .polaroid:before {
  transform: rotate(4deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  right: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0,0,0,0.3);
}
.item:nth-of-type(4n+3) {
  transform: scale(0.8, 0.8) rotate(-3deg);
  transition: all 0.35s;
}
.item:nth-of-type(4n+3) .polaroid:before {
  transform: rotate(-4deg);
  height: 20%;
  width: 47%;
  bottom: 30px;
  left: 12px;
  box-shadow: 0 2.1rem 2rem rgba(0,0,0,0.3);
}
.item:hover {
  filter: none;
  transform: scale(1, 1) rotate(0deg) !important;
  transition: all 0.35s;
}
.item:hover .polaroid:before {
  content: '';
  position: absolute;
  z-index: -1;
  transform: rotate(0deg);
  height: 90%;
  width: 90%;
  bottom: 0%;
  right: 5%;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.2);
  transition: all 0.35s;
}


/* ----------------------------------------------------------------
SITE LAYOUTS
-----------------------------------------------------------------*/

.padding-bottom {
  padding-bottom: 30px;
}

body
{
  background-color:#FFF;
  color:#000;
}

header
{
  position: absolute;
  top:20px;
  right:10px;
  z-index: 3000;
}

.container.top.scrolled header
{
	-webkit-transition: all .25s;
    transition: all .25s;
    margin-top: 10px;
    height: 55px;
}


header nav
{
	float: right;
	display: block;
	height: 46px;
}

header nav ul
{
	margin: 0;
}

header nav ul li
{
	list-style: none;
	display: inline-block;
	margin-right: 40px;
	font-size: 1.6rem;
	margin-bottom: 0;
	line-height:46px;
}

header nav ul li:last-child
{
	margin-right: 0;
}


header nav ul li a
{
	color: #FFF;
	text-decoration: none;
}


#nav-icon {
  width: 26px;
  height: 19px;
  margin: 20px 20px 0 0;
  float: right;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon::before {
    content: "menu";
    color: #FFF;
    position: absolute;
    right: 35px;
    top: -4px;
    text-transform: capitalize;
    font-weight: 500;
}

#nav-icon.open::before{
    color:#fec148;
}


#nav-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: white;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 0px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#nav-icon span:nth-child(2) {
	top: 8px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#nav-icon span:nth-child(3) {
	top: 16px;
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

#nav-icon.open
{
  position: fixed;
  right: 10px;
  top: 20px;
}

#nav-icon.open span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	top: -2px;
	left: 0px;
  background: #2762ea;
}

#nav-icon.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

#nav-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 16px;
	left: 0px;
  background: #2762ea;
}

.fullscreen-nav-wrap
{
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  opacity:0;
  visibility: hidden;
  transition: 0.25s;
}

.fullscreen-nav-wrap.open {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}


.fullscreen-nav {
  padding-top: 40px;
  width: 480px;
  height: 420px;
  background: #fec054;
  position: fixed;
  right: 20px;
  top: 20px;
  text-align: center;
  z-index: 40;
}





ul.mobile-menu
{
	position: absolute;
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
    list-style: none;
    top: 60px;
    transform: none;
    left: 80px;
    text-align: left;
}

ul.mobile-menu li a {
  font-size: 5rem;
  line-height: 1;
  font-weight: 600;
  color: #FFF;
  text-decoration: none;
  text-transform: none;
  -o-transition:.25s;
  -ms-transition:.25s;
  -moz-transition:.25s;
  -webkit-transition:.25s;
  transition:.25s;
}

ul.mobile-menu li a:hover
{
  color:#2762ea;
}

ul.contact-us
{
  text-align: left;
  position: absolute;
  bottom: 30px;
  left: 83px;
}

ul.contact-us li
{
  list-style: none;
  color: #FFF;
  line-height: 1;
  font-size: 2.4rem;
}

ul.contact-us li a
{
	color: #FFF;
	text-decoration: none;
  font-weight:600;
}

ul.contact-us li a:hover
{
	color: #FFF;
  text-decoration: underline;
}

ul.contact-us li.social
{
	margin-top: 10px;
}

ul.contact-us li.social a
{
	color: #999;
}

ul.contact-us li.social a:hover
{
	color: #FFF;
}


/* ----------------------------------------------------------------
HOMEPAGE
-----------------------------------------------------------------*/

.container.black h1,
.container.black h2,
.container.black h3,
.container.black p
{
  color:#FFF;
}

.home-title{
  margin-top: 150px;
}

.home-intro img#tol-logo{
  position: relative;
  top: 130px;
  width: 50%;
  float: right;
  margin-right: 60px;
}

.container.home-intro
{
  border: 20px solid #000;
}

.home-intro .columns
{
  position: relative;
  
}



.home-intro {
  color:#FFF;
  font-weight: 600;
  font-size: 4rem;
}

.home-intro p a {
    color: #75dd75;
    font-weight: 600;
    font-size: 3rem;
    margin-top: 30px;
    display: inline-block;
    margin-bottom: 70px;
}

span#days-funded
{
  background-color: #60c075;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  padding: 0;
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 85px;
  line-height: 115px;
  position: absolute;
  left: -140px;
  bottom: -0px;
  font-family: "petangue";
}

.mt-50
{
  margin-top:50px !important;
}

.mt-100
{
  margin-top:100px !important;
}

.mb-50
{
  margin-bottom:50px !important;
}

.mb-100
{
  margin-bottom:100px !important;
}


h2.right
{
  text-align: right;
  font-size: 2.6rem;
  font-weight: 500;
}

.right
{
  text-align:right;
}

a.further-link
{
  padding-right: 50px;
  background: transparent url(/assets/images/arrow-right.svg) no-repeat right 18px;
  background-size: 35px;
}

p#tagline {
  height: auto;
  /*display: flex;*/
  justify-content: flex-end;
  writing-mode: vertical-lr;
  text-orientation: sideways-right;
  transform: rotate(180deg);
  font-size: 1.6rem;
  font-weight: 400;
  right: -10px;
  top: 70px;
  position: absolute;
  color: #60c075;
  z-index: 1000;
}


p#tagline strong
{
  font-weight: 600;
  color:#FFF;
}

.how-does-it-work home-title{
font-size: 60px;
}

.how-does-it-work .row
{
  display: flex !important;
  align-items: center;
}

.how-does-it-work img.building-blocks {
    top: 60px;
    position: relative;
    z-index: 100;
    width: 90%;
}



.how-does-it-work h1 {
    color: #FFF;
    margin-bottom: 20px;
}


.container.green a.further-link
{
  background: transparent url(/assets/images/arrow-right-white.svg) no-repeat right 9px;
  color:#FFF;
  background-size: 35px;
}

.container.white
{  
  background-color: white;
}

.countdown-timer
{
  margin-top:60px;
  margin-bottom:60px;
}

.countdown-timer h2
{
  font-weight:600;
  font-size:2.4rem;
}

.countdown-timer h3
{
  color: #f17c49;
  font-size: 9rem;
  font-weight: 600;
  line-height: 1;
}

.countdown-timer p
{
 
  font-size: 3.8rem;
  line-height: 1.2;
}
.time{     
    text-align: center;
    margin-top: 40px;

}

.time-is-now h1
{
  color:#3dde7f;
  margin-bottom:20px;
}

.time-is-now a.further-link {
    padding-right: 50px;
    background: transparent url(/assets/images/arrow-right.svg) no-repeat right 7px;
    background-size: 35px;
    color: #54dd7a;
}


blockquote{
  background: url(/assets/images/quote-open.svg) no-repeat 0px 0px;
  padding-left: 38px;
  padding-top: 5px;
  background-size: 30px;
  margin-inline-start: 0px;
}

blockquote p
{
    
    margin-bottom:10px;
}

blockquote p img
{
  display:inline-block;
  width:30px;
  top:10px;
  position: relative;
  margin-left: 7px;
}

blockquote cite
{
    font-style: normal;
    color: #737373;
    font-weight:500;
}

.container.fullwidth.blue
{
  background-color:#fec054;
}


ul.social.share li:first-child
{
  color:#54dd7a;
}


ul.social.share
{
  float: right;
  margin-top: 0px;
  margin-bottom: 20px;
}

ul.social.share li
{
  border-right: 2px solid #64dc74;
}

ul.social.share li a.facebook
{
	background: transparent url('/assets/images/facebook-green.svg') no-repeat 2px 0px;
	background-size: 17px 17px;
}

ul.social.share li a.twitter
{
	background: transparent url('/assets/images/twitter-green.svg') no-repeat 0px 0px;
	background-size: 17px 21px;
}

ul.social.share li:last-of-type
{
  margin-right:0;
}



.kids img.kids-swing
{
  display:block;
  width:100%;
  margin-top:-10px;
}


.kids .social-share-container
{
  margin-top:-50px;
}

.kids p
{
  color:#FFF;
  margin-bottom:0;
  margin-top:50px;
}

.kids p:last-of-type
{
  color:#fec054;
}

.kids h4
{
  font-family: "petangue";
  color: #FFF;
  margin-top: 90px;
  font-size: 5rem;
  margin-bottom:30px;
}


.how-does-it-work img.about-tree {
  top:0px;
  position: relative;
  z-index: 100;
  width: 100%;
}

/* ----------------------------------------------------------------
ABOUT
-----------------------------------------------------------------*/

.about-intro img#tol-logo {
    position: relative;
    left: 0px;
    top: 0px;
    width: 100%;
}

.container.about-intro {
    border: 20px solid #000;
}

.container.black.about-intro h1
{
  color:#3dde7f;
  line-height: 1.4;
  margin-bottom:30px;
}

.about-intro h1 span
{
  color:#FFFFFF;
}

.container.black.about-intro p
{
  font-weight:400;
}

.container.black.about-intro p strong
{
  font-weight: 600;
}


.time-is-now.blue h1
{
  color:#fec054;
}

.time-is-now.blue h2,
.time-is-now.blue h3,
.time-is-now.blue p
{
  color:#FFF;
}

.time-is-now.blue a.further-link
{
  color:#fec054;
  background: transparent url(/assets/images/arrow-right-orange.svg) no-repeat right 7px;
  background-size: 35px;
}

.time-is-now.blue blockquote p
{
  color:#fec054;
}

.time-is-now.blue blockquote cite
{
  color:#93b1f5;
}

.time-is-now.blue blockquote{
  background: url(/assets/images/quote-open-blue.svg) no-repeat 0px 0px;
  padding-left: 38px;
  padding-top: 5px;
  background-size: 30px;
}

.kids.green p:nth-of-type(2)
{
  color:#000;
  font-size:2rem;
  font-weight:400;
}


.how-does-it-work.about a.further-link {
    padding-right: 50px;
    background: transparent url(/assets/images/arrow-right-white.svg) no-repeat right 8px;
    background-size: 35px;
    color:#FFF;
}

.how-does-it-work.about p {
    color: #3dde7f;
}

.how-does-it-work.about .social-share-container {
    top: 20px;
    z-index: 1000;
    position: relative;
}

.about.time-is-now
{
  margin-top:-90px;
}

.about.how-does-it-work .social.share li
{
  color:#fec054;
}


.about.how-does-it-work .social.share li a.facebook
{
	background: transparent url('/assets/images/facebook-orange.svg') no-repeat 2px 0px;
	background-size: 17px 17px;
}

.about.how-does-it-work .social.share li a.twitter
{
	background: transparent url('/assets/images/twitter-orange.svg') no-repeat 0px 0px;
	background-size: 17px 21px;
}


.about.how-does-it-work ul.social.share li:first-child,
.about.how-does-it-work ul.social.share li:last-child
{
  border-right:0;
}

.about.how-does-it-work ul.social.share li {
    border-right: 2px solid #fec054;
}



/* ----------------------------------------------------------------
THANKS
-----------------------------------------------------------------*/

body.thanks
{
/*
  -webkit-filter: blur(25px);
      -moz-filter: blur(25px);
       -ms-filter: blur(25px);
        -o-filter: blur(25px);
           filter: blur(25px);

   -webkit-transition: all 5s linear;
      -moz-transition: all 5s linear;
       -ms-transition: all 5s linear;
        -o-transition: all 5s linear;
           transition: all 5s linear;
*/

}

body.noblur
{
  -webkit-filter: blur(0px);
      -moz-filter: blur(0px);
       -ms-filter: blur(0px);
        -o-filter: blur(0px);
           filter: blur(0px);

   -webkit-transition: all 5s linear;
      -moz-transition: all 5s linear;
       -ms-transition: all 5s linear;
        -o-transition: all 5s linear;
           transition: all 5s linear;
}

.container.thanks-intro
{
 
}


.thanks-intro img#tol-logo {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
}


.thanks-intro img.frustrating
{
  display: block;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 60px;
}

.thanks-leadin
{
  margin-left:50px;
  margin-top:70px;
}

.thanks-leadin h2
{
  font-size: 2.5rem;
  color: #FFF;
  font-weight: 600;
}

.thanks-leadin h3
{
  font-family: "petangue";
  color: #2762ea;
  font-size: 9rem;
  line-height: 1;
}

.thanks-leadin img
{
  display: block;
  margin: 30px auto 30px;
  width: 30px;
}

.partners
{
  color:#FFF;
}

.partners h3
{
  font-weight:600;
}

.partners ul
{
  margin-top:30px;
}


.partners ul li
{
  margin: 0;
  padding: 0;
  line-height: 1.8;
  list-style: none;
  font-size: 1.6rem;
  font-weight: 500;
}


.case-study h4
{
  color: #fec054;
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 20px;
}


.case-study p
{
  color:#FFF;
}

.case-study a.further-link
{
  background: transparent url(/assets/images/arrow-right-orange.svg) no-repeat right 9px;
  color:#fec054;
  background-size: 35px;
}
.case-study-quote
{
  margin-left:40px;
}

.case-study-quote img.tree {
    display: block;
    margin-left: 80px;
}

.case-study-quote blockquote
{
  background: url(/assets/images/quote-open-blue.svg) no-repeat 0px 0px;
  padding-left: 38px;
  padding-top: 5px;
  background-size: 30px;
  margin-left:0px;
}

.case-study-quote blockquote cite {
    font-style: normal;
    color: #8baaf5;
}


.case-study-quote blockquote p
{
  color:#54dd7a;
  font-size:2rem;
}


.case-study ul.social.share {
    float: right;
    margin-top: 20px;
    margin-bottom: 20px;
}

.case-study ul.social.share li
{
  color:#FFF;
}


.case-study ul.social.share li a.facebook
{
	background: transparent url('/assets/images/facebook-white.svg') no-repeat 2px 0px;
	background-size: 17px 17px;
}

.case-study ul.social.share li a.twitter
{
	background: transparent url('/assets/images/twitter-white.svg') no-repeat 0px 0px;
	background-size: 17px 21px;
}


.case-study ul.social.share li:first-child,
.case-study ul.social.share li:last-child
{
  border-right:0;
}

.case-study ul.social.share li {
    border-right: 2px solid #FFF;
}

.container.fullwidth.our-friends
{
  padding-top: 40px;
 
}

.our-friends h1
{
  color:#FFF;
  margin-bottom:20px;
}

.our-friends blockquote
{
  margin-left:0;
}

.our-friends blockquote p,
.our-friends blockquote cite
{
  color:#FFF;
}

.our-friends ul li
{
  color: #FFF;
  line-height: 1;
  list-style: none;
  font-size: 1.8rem;
}

.our-friends h3
{
  color: #FFF;
  font-weight: 600;
  font-size: 7rem;
  margin-top:60px;

}

.our-friends p
{
  color:#FFF;
  font-size:2rem;
}

.our-friends h4
{
  text-align: right;
  font-family: "petangue";
  color: #FFF;
  margin-top: 20px;
  font-size: 5rem;
  margin-bottom: 10px;
  margin-right: 45px;
}

.donerlist
{
  column-count: 3;
  column-gap: 14%;
}

/* ----------------------------------------------------------------
DONATE
-----------------------------------------------------------------*/

.container.donate-intro
{
  
}

.ruben-collins{
	margin-top: 30px;
}



.donate-intro img#tol-logo {
  position: relative;
  left: 0px;
  top: 0px;
  width: 100%;
}


.container.blue.donate-intro h1 {
    color: #2762ea;
    line-height: 1.1;
    margin-bottom: 50px;
}

.container.blue.donate-intro h1 span
{
  color:#FFF;
}


.container.blue.donate-intro p
{
  color:#FFF;
  font-weight: 400;
}

.container.blue.donate-intro p:last-of-type
{
  margin-bottom:80px;
}

.container.blue.donate-intro p.leadin
{
  font-weight:600;
}

.donate-intro p#tagline {
    right: -10px;
    bottom: 0px;
    top:initial;
    position: absolute;
    color: #FFF;
    font-weight:600;
}

.donate-intro h3
{
  color: #FFF;
  font-weight: 600;
  font-size: 5rem;
  margin-top: 20px;
  margin-bottom: 0px;
}


.donate-form-wrap img.xylaphone
{
  display:block;
  width:100%;
  margin-top:-110px;
}

form
{
  margin: 0;
  padding: 0;
}

.donate-form-wrap h3
{
  color: #2762ea;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 30px;
}

.donate-form-wrap p
{
  color:#000;
}

.donate-form-wrap .radio {
  margin: 0 0 15px 0;
}

.donate-form-wrap .radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.donate-form-wrap .radio input[type="radio"] + .radio-label
{
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.donate-form-wrap .radio input[type="radio"]:hover + .radio-label
{
  color:#000;
}

.donate-form-wrap .radio input[type="radio"] + .radio-label:before {
  content: '';
  background: transparent;
  border-radius: 100%;
  border: 2px solid #42654c;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.donate-form-wrap .radio input[type="radio"]:checked + .radio-label {
  color: #000;
}

.donate-form-wrap .radio input[type="radio"]:checked + .radio-label:before {
  background-color: #000;
  box-shadow: inset 0 0 0 4px #31e07b;
  border-color: #000;
}


.donate-form-wrap .radio input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: #bbffd7;
}
.donate-form-wrap .radio input[type="radio"]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #000;
  background: #b4b4b4;
}
.donate-form-wrap .radio input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

span#time-chosen
{
  text-decoration: none;
  color: #000;
  font-size: 6rem;
  border-bottom: 4px solid #FFF;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  top: -2px;
  left: -75px;
}

.donation-explained
{
  margin-top: 50px;

}

.container.donate-form-wrap
{
  padding-bottom:100px;
}

.donate-form-wrap .check {
  margin: 0 0 30px 55px;
}

.donate-form-wrap .check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.donate-form-wrap .check input[type="checkbox"] + .check-label
{
  color: #000;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  text-indent: -53px;
}

.donate-form-wrap .check input[type="checkbox"]:hover + .check-label
{
  color:#000;
}

.donate-form-wrap .check input[type="checkbox"] + .check-label:before {
  content: '';
  background: transparent;
  border-radius: 10%;
  border: 2px solid #000;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.donate-form-wrap .check input[type="checkbox"]:checked + .check-label {
  color: #000;
}

.donate-form-wrap .check input[type="checkbox"]:checked + .check-label:before {
  background-color: #000;
  box-shadow: inset 0 0 0 4px #31e07b;
  border-color: #000;
}


.donate-form-wrap .check input[type="checkbox"]:focus + .check-label:before {
  outline: none;
  border-color: #000;
}
.donate-form-wrap .check input[type="checkbox"]:disabled + .check-label:before {
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.donate-form-wrap .check input[type="checkbox"] + .check-label:empty:before {
  margin-right: 0;
}


.donation-explained .note
{
  margin-top:20px;
}

.donation-explained .note.email {
    margin-bottom: 50px;
}

.note input[type="textfield"],
.note input[type="email"]
{
  display: block;
    width: 100%;
    border: 0;
    background-color: transparent;
    padding-bottom: 10px;
    border-bottom: 3px solid #FFF;
    margin-bottom: 30px;
    padding-left: 0;
    font-size: 20px;
    border-radius: 0px;
    padding-top: 10px;
    color:#014e2d;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #0e854f;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #0e854f;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #0e854f;
}
:-moz-placeholder { /* Firefox 18- */
  color: #0e854f;
}

input:focus {outline:0;}


.creditcard h3
{
  color: #2762ea;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  margin-top: 100px;
  margin-bottom: 50px;
}

.creditcard p
{
  font-weight:400;
}

.creditcard p strong
{
  font-weight: 600;
}

.creditcard h4
{
  text-align: right;
  font-family: "petangue";
  color: #3dde7f;
  margin-top: 0px;
  font-size: 5rem;
  margin-bottom: 30px;
}



.receipt-details {
    border: 10px solid #3c76ff;
    color: #FFF;
    background-color: #3d6de6;
    padding: 30px 30px;
    margin-bottom: 40px;
}

.receipt-details ul
{
  margin:0;
  padding:0;
}

.receipt-details ul li
{
  margin:0;
  list-style: none;
}

.receipt-details h5
{
  border-bottom: 2px solid #5a85fb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.receipt-details p
{
  margin-bottom: 0 !important;
  font-size: 1.6rem;
}

.container.blue.donate-intro.thanks p:last-of-type
{
    margin-bottom: 50px;
}


/*--------------------
Buttons
--------------------*/
.btn {
  display: block;
  background: #bded7d;
  color: white;
  text-decoration: none;
  margin: 20px 0;
  padding: 15px 15px;
  border-radius: 5px;
  position: relative;
}
.btn::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .2s ease-in-out;
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0), 0 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.btn:hover::after {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.2);
}

/*--------------------
Form
--------------------*/
.form-creditcard fieldset {
  border: none;
  margin: 0;
  padding: 10px 0;
  position: relative;
  clear: both;

}
.form-creditcard fieldset.fieldset-expiration {
  float: left;
  width: 60%;
}
.form-creditcard fieldset.fieldset-expiration .select {
  width: 84px;
  margin-right: 12px;
  float: left;
}
.form-creditcard fieldset.fieldset-ccv {
  clear: none;
  float: right;
  width: 86px;
}
.form-creditcard fieldset label {
  display: block;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
  font-weight: bold;
  font-family: Inconsolata;
}
.form-creditcard fieldset input,
.form-creditcard fieldset .select {
  width: 100%;
  height: 38px;
  color: #333333;
  padding: 10px;
  border-radius: 5px;
  font-size: 15px;
  outline: none !important;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
}

.form-creditcard fieldset select#card-expiration-month,
.form-creditcard fieldset select#card-expiration-year
{
  width:88%;
}

.form-creditcard fieldset input.input-cart-number,
.form-creditcard fieldset .select.input-cart-number {
  width: 82px;
  display: inline-block;
  margin-right: 8px;
  font-size: 2.6rem;
}

.form-creditcard fieldset input#card-number
{
  width:95%;
  letter-spacing: 4px;
}

.form-creditcard fieldset input.input-cart-number:last-child,
.form-creditcard fieldset .select.input-cart-number:last-child {
  margin-right: 0;
}

.form-creditcard fieldset input#card-holder
{
  height: 60px;
  font-size: 2.6rem;

}

.form-creditcard fieldset .select {
  position: relative;
}
.form-creditcard fieldset .select::after {
  content: '';
  border-top: 8px solid #222;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  position: absolute;
  z-index: 2;
  top: 21px;
  right: 10px;
  pointer-events: none;
}
.form-creditcard fieldset .select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  padding: 0;
  border: none;
  width: 100%;
  outline: none !important;
  top: 6px;
  left: 6px;
  background: none;
  font-size: 2.6rem;
}
.form-creditcard fieldset .select select :-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-creditcard button {
  width: 100%;
  outline: none !important;
  background: linear-gradient(180deg, #1f5bef, #1c56e3);
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  box-shadow: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}
.form-creditcard button .fa {
  margin-right: 6px;
}

#payment-errors
{
  color: #F00;
  padding: 10px;
  font-weight: bold;
}

.stripe-form-warning {
    margin-bottom: 150px;
    margin-top: 50px;
    background-color: #fff;
    border: 15px solid #1fb761;
    padding: 20px;
    text-align: center;
}

.stripe-form-warning h4
{
  color:#F00;
  font-size:2.6rem;
  font-weight:bold;
}

.stripe-form-warning p
{
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 20px;
  font-weight:bold;
}

.stripe-form-warning ul li
{
  list-style: none;
  font-size: 2.4rem;
  margin-bottom: 0px;
}

p.card-deets {
    margin-bottom: 0px;
}




/*--------------------
Checkout
--------------------*/
.checkout {
  margin: 50px auto 30px;
  position: relative;
  width: 460px;
  background: white;
  border-radius: 15px;
  padding: 160px 45px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/*--------------------
Credit Card
--------------------*/
.credit-card-box {
  -webkit-perspective: 1000;
          perspective: 1000;
  width: 400px;
  height: 280px;
  position: absolute;
  top: -112px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.credit-card-box:hover .flip, .credit-card-box.hover .flip {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.credit-card-box .front,
.credit-card-box .back {
  width: 400px;
  height: 250px;
  border-radius: 15px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: linear-gradient(135deg, #215dee, #2762ea);
  position: absolute;
  color: #fff;
  font-family: Inconsolata;
  top: 0;
  left: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.credit-card-box .front::before,
.credit-card-box .back::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("https://cdn.flaticon.com/svg/44/44386.svg") no-repeat center;
  background-size: cover;
  opacity: .05;
}
.credit-card-box .flip {
  transition: 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  position: relative;
}
.credit-card-box .logo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 50px;
}
.credit-card-box .logo svg {
  width: 100%;
  height: auto;
  fill: #fff;
}
.credit-card-box .front {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.credit-card-box .back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.credit-card-box .back .logo {
  top: 185px;
}
.credit-card-box .chip {
  position: absolute;
  width: 60px;
  height: 45px;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ddccf0 0%, #d1e9f5 44%, #f8ece7 100%);
  border-radius: 8px;
}
.credit-card-box .chip::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid rgba(128, 128, 128, 0.1);
  width: 80%;
  height: 70%;
  border-radius: 5px;
}
.credit-card-box .strip {
  background: linear-gradient(135deg, #404040, #1a1a1a);
  position: absolute;
  width: 100%;
  height: 50px;
  top: 30px;
  left: 0;
}
.credit-card-box .number {
  position: absolute;
  margin: 0 auto;
  top: 103px;
  left: 19px;
  font-size: 38px;
}
.credit-card-box label {
  font-size: 10px;
  letter-spacing: 1px;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.5;
  display: block;
  margin-bottom: 3px;
}
.credit-card-box .card-holder,
.credit-card-box .card-expiration-date {
  position: absolute;
  margin: 0 auto;
  top: 180px;
  left: 19px;
  font-size: 22px;
  text-transform: capitalize;
}
.credit-card-box .card-expiration-date {
  text-align: right;
  left: auto;
  right: 20px;
}
.credit-card-box .ccv {
  height: 36px;
  background: #fff;
  width: 91%;
  border-radius: 5px;
  top: 110px;
  left: 0;
  right: 0;
  position: absolute;
  margin: 0 auto;
  color: #000;
  text-align: right;
  padding: 10px;
}
.credit-card-box .ccv label {
  margin: -38px 0 14px;
  color: #fff;
  font-size: 1.6rem;
}

.form-creditcard fieldset .select {
    height: 30px;
}

.form-creditcard input#card-ccv {
    height: 48px;
    font-size: 2.6rem;
}

/* ----------------------------------------------------------------
FOOTER
-----------------------------------------------------------------*/

.footer
{
  background-color: #fec054;
}

.footer .columns
{
  position: relative;
}

.container.fullwidth.footer .row
{
  margin:0 auto;
  display: block;
  width: 80%;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}

.footer img.logo
{
    width: 240px;
    display: block;
    margin-bottom: 30px;
    margin-top:30px;
}


.footer .row h3
{
    color: #FFF;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer .row h3 a {
    color: #FFF;
    text-decoration: none;
}

.footer .row h3 a:hover{
  text-decoration: underline;
}

.footer .row p {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer .row p span
{
  font-weight: 400;
}

.footer .row p span a
{
  color:#FFF;
}


ul.social
{
	position: relative;
	margin-bottom: 0px;
  height: 28px;
}


ul.social li
{
  display: inline;
  float: left;
  margin-bottom: 0px;
  margin-right: 10px;
  border-right: 2px solid #4264b2;
  color: #FFF;
  padding-right: 5px;
}

ul.social li:first-child
{
  font-weight: 600;
  line-height: 1.3;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 0px;
  font-size: 2rem;
  color:#4264b2;
}



ul.social li:last-child
{
	margin-left: 0;
	border-right: 0;
}


ul.social li a {
	height: 24px;
	width: 26px;
	display: block;
	text-indent: -9999px;
	margin-top: 4px;
}





ul.social li a.facebook
{
	background: transparent url('/assets/images/facebook.svg') no-repeat 2px 0px;
	background-size: 17px 17px;
}

ul.social li a.twitter
{
	background: transparent url('/assets/images/twitter.svg') no-repeat 0px 0px;
	background-size: 17px 21px;
}

ul.social li a.youtube
{
	background: transparent url('/assets/images/youtube.svg') no-repeat 0px 0px;
	background-size: 20px 20px;
}

ul.social li a.instagram
{
	background: transparent url('/assets/images/instagram.svg') no-repeat 0px 0px;
	background-size: 18px 21px;
}

.footer img.tree
{
    position: absolute;
    bottom: 0px;
    left: -130px;
    width: 110px;
}

.vid-container
{
  height: 90vh;
  position: relative;
}

.vid-container video
{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity:0.6;
}

.vid-container video::before {
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.0) 70%,
      // These three 'smooth' out the fade.
      rgba(0, 0, 0, 0.2) 80%,
      rgba(0, 0, 0, 0.7) 90%,
      rgba(0, 0, 0, 0.9) 95%,
      // Solid to match the background.
      rgba(0, 0, 0, 1.0) 100%
    );
  }


/* ----------------------------------------------------------------
FULLSCREEN VIDEO SINGLE PAGE
-----------------------------------------------------------------*/


.vid-container-singlepage
{
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.vid-container-singlepage video
{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity:1;
}

.vid-container-singlepage img#logo
{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  z-index:9999;
}



/* ----------------------------------------------------------------
MEDIA QUERIES
-----------------------------------------------------------------*/


@media only screen and (max-width: 1024px) {

  .vid-container video {
    left: 74%;
  }

  .countdown-timer h3 {
    color: #f17c49;
    font-size: 6.8rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  .kids img.kids-swing {
    margin-top: -10px;
    margin-left: 40px;
  }

  .kids h4 {
    margin-top: 20px;
    font-size: 4rem;
    margin-bottom: 30px;
  }

  ul.social li:first-child {
    font-weight: 600;
    line-height: 2;
    font-size: 1.4rem ;
  }

  .countdown-timer h2 {
    font-weight: 600;
    font-size: 2.4rem;
    margin-left: 60px;
  }


  .donate-form-wrap img.xylaphone {
    display: none;
  }

  .donate-intro h3 {
    color: #FFF;
    font-weight: 600;
    font-size: 3rem;
    margin-top: 20px;
    margin-bottom: 0px;
  }

  .creditcard .six.columns {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .creditcard h3
  {
    display:none;
  }

  .creditcard p {
    font-weight: 400;
    padding: 50px;
    margin-bottom: 0px;
    padding-bottom: 30px;
  }

  .creditcard h4
  {
    margin-right:50px;
  }

  .container.fullwidth.our-friends
  {
    padding:40px;
  }

  .how-does-it-work h1 {
    margin-top: 30px;
  }

  .container.fullwidth.footer .row
  {
    display:block;
    text-align: center;
  }

  .container.fullwidth.footer .row .columns
  {
    width:100%;

  }

  .footer img.logo {
    width: 170px;
    display: block;
    margin-bottom: 0px;
    margin-top: 0px;
    margin: 40px auto;
  }

  ul.social {
    display: inline-block;
    margin-bottom: 20px;
  }

  .footer img.tree {
    position: relative;
    bottom: initial;
    left: initial;
    width: 60px;
    clear: both;
    display: block;
    margin: 20px auto 20px;
  }


  .container.donate-form-wrap .columns
  {
    width: 100%;
    margin: 0;
    padding: 5px 50px;
    position: relative;
  }

  span#time-chosen {
    text-decoration: none;
    color: #FFF;
    font-size: 6rem;
    border-bottom: 4px solid #FFF;
    font-weight: 600;
    line-height: 1.6;
    position: absolute;
    top: 150px;
    right: 60px;
    left: initial;
  }

  .donate-intro p#tagline {
    right: -10px;
    bottom: initial;
    top: 100px;
    position: absolute;
    color: #FFF;
    font-weight: 600;
  }

  .thanks-leadin {
    margin-left: 0px;
  }

  .thanks-leadin h3
  {
    font-size:8rem;
  }

  .case-study-quote {
    display: none;
  }

  .container.our-friends .ten.columns
  {
    width:94%;
    margin-left:6%;
  }

  .container.our-friends h3
  {
    font-size:6rem;
  }

  .our-friends blockquote {
    margin-left: 0;
    margin-bottom: 50px;
  }



}


@media only screen and (max-width: 600px) {

  p#tagline {
    display: none;
  }

  .home-intro img#tol-logo {
    position: relative;
    left: initial;
    top: 20px;
    width: 50%;
    float: none;
    margin-left: 90px
  }

  .home-intro h1 {
    
    width: 100%;
   
    margin-top: 50px;
  }

  .days-funded-count {
    display: flex;
    flex-direction: column-reverse;
  }

  .days-funded-count span#days-funded {
    background-color: #60c075;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    padding: 0;
    display: block;
    color: #FFF;
    text-align: center;
    font-size: 95px;
    line-height: 130px;
    position: relative;
    left: initial;
    bottom: initial;
    margin: 0 auto 20px;
    font-family: "petangue";
  }

  .days-funded-count p {
    font-size: 3.4rem;
    text-align: center;
    line-height: 1.3;
  }

  .home-intro p a
  {
    margin-bottom:0;
  }

  h2.right {
    text-align: right;
    font-size: 2.1rem;
    font-weight: 500;
  }

  img.u-full-width.small-tree {
    display: none;
  }


  .container.how-does-it-work .row {
    display: block !important;
    align-items: center;
  }

  .container.how-does-it-work .right
  {
    text-align:left;
    padding: 20px;
  }

  .how-does-it-work h1 {
    margin-top: 0px;
  }

  .how-does-it-work img.building-blocks
  {
    display:none;
  }

  .countdown-timer h3
  {
    font-size:3rem;
  }

  p
  {
    font-size:2.1rem;
  }

  .container.time-is-now .columns
  {
    padding:20px;
  }

  .countdown-timer {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .countdown-timer h2 {
    font-weight: 600;
    font-size: 2.4rem;
    margin-left: 0px;
  }

  .countdown-timer h3 {
    font-size: 3rem;
    text-align: left;
  }

  .container.time-is-now blockquote {
    display: none;
  }

  .container.kids img.kids-swing {
    margin: 0 auto;
    width:100%;
  }

  .container.kids .columns
  {
    padding:20px;
  }

  .kids p:first-of-type
  {
    margin-top:0;
  }


  .container.fullwidth.footer .row
  {
    width:100%;
  }

  .vid-container video {
    left: 165%;
    opacity: 0.3;
  }

  .fullscreen-nav {
    padding-top: 40px;
    width: 90%;
    height: 70vh;
    background: #fec054;
    position: fixed;
    right: 20px;
    top: 20px;
    text-align: center;
    z-index: 40;
  }

  ul.mobile-menu {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    max-width: 250px;
    list-style: none;
    top: 30px;
    transform: none;
    left: 30px;
    text-align: left;
  }

  ul.contact-us {
    text-align: left;
    position: absolute;
    bottom: 0px;
    left: 30px;
  }

  ul.contact-us li {
    list-style: none;
    color: #FFF;
    line-height: 1;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  ul.contact-us li:last-of-type
  {
    margin-bottom:0px;
  }

  .about-intro img#tol-logo {
    position: relative;
    left: 0px;
    top: 0px;
    width: 40%;
  }

  .mt-100 {
    margin-top: 50px !important;
  }

  .how-does-it-work img.about-tree {
    top: initial;
    position: relative;
    z-index: 100;
    width: 70%;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
  }

  .about.time-is-now {
    margin-top: -90px;
    padding-top: 90px;
  }

  ul.social.share {
    float: right;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-right: 11%;
  }

  .container.time-is-now p
  {
    margin-bottom:0px;
  }

  .thanks-intro img#tol-logo {
    position: relative;
    left: 0px;
    top: 0px;
    width: 40%;
  }

  .thanks-leadin h2 {
    font-size: 1.8rem;
    color: #FFF;
    font-weight: 600;
  }

  .thanks-leadin h3 {
    font-size: 6.6rem;
  }

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

  .case-study.mt-100 {
    display: none;
  }

  .our-friends ul li
  {
    text-align: center;
  }

  .our-friends h4 {
    text-align: right;
    font-family: "petangue";
    color: #FFF;
    margin-top: 0px;
    font-size: 3rem;
    margin-bottom: 0px;
    margin-right: 0px;
  }

  .donate-intro img#tol-logo {
    position: relative;
    left: 0px;
    top: 0px;
    width: 40%;
  }

  .container.blue.donate-intro h1
  {
    font-size:2.1rem;
  }

  .container.blue.donate-intro p:last-of-type {
    margin-bottom: 0px;
  }

  .donate-form-wrap h3 {
    color: #2762ea;
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.8rem;
  }

  span#time-chosen {
    display: none;
  }

  .donate-form-wrap .check input[type="checkbox"] + .check-label
  {
    line-height:1.7;
  }

  .donate-form-wrap .check input[type="checkbox"] + .check-label:before
  {
    top:0.4em;
  }

  .checkout {
    margin: 50px auto 30px;
    position: relative;
    width: 90%;
    background: white;
    border-radius: 15px;
    padding: 160px 5% 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

  .credit-card-box {
    -webkit-perspective: 1000;
    perspective: 1000;
    width: 90%;
    height: 280px;
    position: absolute;
    top: -112px;
    left: initial;
    -webkit-transform: none;
    transform: none;
  }

  .credit-card-box .number
  {
    font-size:24px;
  }

  .credit-card-box .front,
  .credit-card-box .back
  {
    width:100%;
    height:230px;
  }

  .credit-card-box .card-holder,
  .credit-card-box .card-expiration-date
  {
    top:155px;
  }

  .credit-card-box label
  {
    font-size:12px;
  }

  .form-creditcard fieldset input.input-cart-number, .form-creditcard fieldset .select.input-cart-number {
    width: 15%;
    display: inline-block;
    margin-right: 3%;
    height: 20px;
    font-size: 1.8rem;
  }

  .form-creditcard fieldset input#card-holder {
    height: 40px;
    font-size: 1.8rem;
  }

  .form-creditcard fieldset.fieldset-expiration .select {
    width: 54px;
    margin-right: 12px;
    float: left;
    height: 20px;
  }

  .form-creditcard fieldset .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    padding: 0;
    border: none;
    width: 100%;
    outline: none !important;
    top: 2px;
    left: 9px;
    background: none;
    font-size: 1.8rem;
  }

  .form-creditcard fieldset .select::after {
    content: '';
    border-top: 8px solid #222;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    z-index: 2;
    top: 17px;
    right: 10px;
    pointer-events: none;
  }

  .form-creditcard input#card-ccv {
    height: 40px;
    font-size: 1.8rem;
  }

  .creditcard h4
  {
    font-size:3rem;
  }

  .creditcard p {
    font-weight: 400;
    padding: 20px;
    margin-bottom: 0px;
    padding-bottom: 20px;
  }


  .donerlist
  {
    column-count: 1;
    column-gap: 14%;
  }





}




@media only screen and (max-width: 480px) {

}



@media only screen and (max-width: 320px) {

}
