/* Content  */

#home main {
    width: 100%; 
    max-width: 1400px;
    position: relative;

    }
    
@media (min-width : 800px) { 
   #home main {
    margin-top: 0; }
}

/* Hero -- Find a Class  */

#hero {   
  width: 100%;
  height: auto;
  position: relative; 
  background: black; 
  overflow: hidden;
  }  

.photo {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100%;
  }

@media (min-width : 768px) { 
  .photo {
    overflow: hidden; 
    max-width: 100%; 
    padding-bottom: 75%;
    }
  }

@media (min-width : 960px) { 
  .photo { 
    padding-bottom: 50%;
     transition:        all .6s ease-in-out;    
    -webkit-transition: all .6s ease-in-out;  
    -moz-transition:    all .6s ease-in-out;  
    -o-transition:      all .6s ease-in-out;  
    -ms-transition:     all .6s ease-in-out; 
    }
  #hero:hover .photo {
    -moz-transform:    scale(1.05);
    -ms-transform:     scale(1.05);
    -webkit-transform: scale(1.05);
    transform:         scale(1.05); 
    }
  }

.photo, 
.photo:before, 
.photo:after {
  -moz-box-sizing:    content-box; 
  -webkit-box-sizing: content-box;
  box-sizing:         content-box; 
  }
  
  
.mask {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iaGF0MCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHgxPSI1MCUiIHkxPSIxMDAlIiB4Mj0iNTAlIiB5Mj0iLTEuNDIxMDg1NDcxNTIwMmUtMTQlIj4KPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzA2MDYwNyIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KPHN0b3Agb2Zmc2V0PSI1MSUiIHN0b3AtY29sb3I9IiMwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgo8c3RvcCBvZmZzZXQ9IjUyJSIgc3RvcC1jb2xvcj0iIzAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgIDwvbGluZWFyR3JhZGllbnQ+Cgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0idXJsKCNoYXQwKSIgLz4KPC9zdmc+); /* gradient overlay */
  background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 71.44%); /* gradient overlay */
  background-image: -o-linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 71.44%); /* gradient overlay */
  background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 71.44%); /* gradient overlay */
  background-image: linear-gradient(bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 71.44 ); /* gradient overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }

#hero .text {
  position: absolute;
  bottom: 1em;
  left: 5%;
  width: 90%;
  text-align: center;  
  opacity: 0;
  -moz-transform:    translateY(-20%);
  -ms-transform:     translateY(-20%);
  -webkit-transform: translateY(-20%);
  transform:         translateY(-20%);    
  -moz-transition:    all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition:         all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75); }  

#hero .text.reveal {
  -moz-transform:    translateY(0%);
  -ms-transform:     translateY(0%);
  -webkit-transform: translateY(0%);
  transform:         translateY(0%); 
  opacity: 1; }
  
@media (min-width : 768px) { 
  #hero .text {
    left: 15%;
    width: 70%;
    bottom: 2em;
    } 
  }
  
@media (min-width : 960px) { 
  #hero .text {
    left: 20%;
    width: 60%;
    bottom: 3em;
    } 
  }
  
@media (min-width : 1200px) { 
  #hero .text {
    left: 35%;
    width: 30%;
    }  
  }

#hero h1 {
  color: white;
  display: inline;
  font-size: 2.5em;
  line-height: 1;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  opacity: .9;
  }
  
@media (min-width : 740px) { 
  #hero h1 {
    font-size: 5em;
    } 
  }

#hero .button-container {
  position: relative;
  opacity: 0;
  -moz-transform:    translateX(-10%);
  -ms-transform:     translateX(-10%);
  -webkit-transform: translateX(-10%);
  transform:         translateX(-10%);    
  -moz-transition:    all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition:         all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75); 
  }  
  
#hero .reveal .button-container {
  -moz-transform:    translateX(0%);
  -ms-transform:     translateX(0%);
  -webkit-transform: translateX(0%);
  transform:         translateX(0%); 
  opacity: 1; 
  }
  
#hero .button {
  color: white;
  margin: 1em auto auto;
  padding: .5em 1em;
  display: table;
  font-size: 1em;
  background: #323e5c;
  border: 3px solid white;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  font-weight: 600;
  -moz-transition:    all .3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all .3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all .3s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition:         all .3s cubic-bezier(0.75, -0.25, 0.25, 0.75); }  
  
#hero .button:hover {
  background: #4c8051; 
  padding: .5em 1.5em;
} 
  
@media (min-width : 960px) { 
  #hero .button {
    padding: .75em 1.5em;
    font-size: 1.2em;
    } 
  #hero .button:hover {
    padding: .75em 2em;
    } 
}
  


/* Awards Form */

#awards-form {
  width: 100%;
  padding: 1.5em;
  color: #323e5c;
  } 
  
#awards-form img {
  max-width: 240px;
  margin-bottom: 1em;
  opacity: 0;
  -moz-transform:    translateY(-20%);
  -ms-transform:     translateY(-20%);
  -webkit-transform: translateY(-20%);
  transform:         translateY(-20%);    
  -moz-transition:    all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
	-webkit-transition: all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
	transition:         all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75); }  

  
#awards-form .intro {
  text-align: left;
  font-size: 130%;
  opacity: 0;
  -moz-transform:    translateY(-20%);
  -ms-transform:     translateY(-20%);
  -webkit-transform: translateY(-20%);
  transform:         translateY(-20%);    
  -moz-transition:    all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
	transition:         all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75); }  

#awards-form .form { 
  opacity: 0;
  -moz-transform:    translateY(-20%);
  -ms-transform:     translateY(-20%);
  -webkit-transform: translateY(-20%);
  transform:         translateY(-20%);    
  -moz-transition:    all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition:         all .8s cubic-bezier(0.75, -0.25, 0.25, 0.75); }  

#awards-form .reveal { 
  -moz-transform:    translateY(0%);
  -ms-transform:     translateY(0%);
  -webkit-transform: translateY(0%);
  transform:         translateY(0%); 
  opacity: 1; }
  
@media (min-width : 960px) { 
  #awards-form { 
    padding: 3em;
    } 
  #awards-form img,
  #awards-form .intro,
  #awards-form form {
    display: inline-block;   
    vertical-align: middle; 
    } 
  #awards-form .intro p {
    margin: 0;
    } 
  #awards-form img {
    width: 20%;
    margin: 0;
    } 
  #awards-form .intro,
  #awards-form form {
    width: 39.5%;
    padding: 0 1.5em 0 3em;
    } 
  }  
  
@media (min-width : 1200px) { 
  #awards-form { 
    padding: 4em;
    } 
  #awards-form .intro p {
    font-size: 120%;
    } 
  }
  
@media (min-width : 1400px) { 
  #awards-form { 
    padding: 5em;
    } 
  }  

#awards-form h2 {
  font-size: 300%;
  }   
 
#awards-form .form input, 
#awards-form .form textarea {
	background: rgba(0, 0, 0, 0.25) none repeat scroll 0 0;
	border: 1px solid rgba(0, 0, 0, 0.5);
	color: rgba(255, 255, 255, 0.9);
	}
 
/* Featured Video */

#featured-video {
  width: 100%;
  padding: 1.5em;
  margin-bottom: 2.5em;
  color: #323e5c;
  background: url('/theme/img/video-tile.jpg') no-repeat center center;
  background-size: cover;
  } 
  
@media (min-width : 960px) { 
 	#featured-video { 
    padding: 3em;
    }  
  }  
  
@media (min-width : 1200px) { 
  #featured-video { 
    padding: 4em;
    } 
  }
  
@media (min-width : 1400px) { 
  #featured-video { 
    padding: 5em;
    } 
  }  
 
#featured-video h2 {
  font-size: 400%;
  margin-bottom: 0;
  }   
  
#featured-video p {
  font-size: 150%;
  text-transform: uppercase;
  margin-bottom: 1em;
  }  
 
#video {
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
  max-width: 100%; 
  } 

@media (min-width : 960px) { 
  #video { 
    padding-bottom: 36.6%; 
    max-width: 65%; 
    margin: auto;
    z-index: 999;
    }
  } 

#video iframe, 
#video object, 
#video embed { 
  position: absolute; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%; 
  }



/* Feeds */

#feeds {
  padding: 3em 1.5em;
  }
  
@media only screen and (min-width: 960px) { 
  #feeds {
    padding: 3em 0;
    }
  }

#feeds .col { 
  position: relative;
  padding: 1em 0 1em;
  }
  
@media only screen and (min-width: 768px) { 
  #feeds .col { 
    display: inline-block;   
    vertical-align: text-top;    
    width: 49.5%;
    padding: 1em;
    }
  }

@media only screen and (min-width: 960px) { 
  #feeds .col  { width: 24.5%; }
  }

#feeds .col {
  opacity: 0;
  -moz-transform:    translateY(20%);
  -ms-transform:     translateY(20%);
  -webkit-transform: translateY(20%);
  transform:         translateY(20%);    
  -moz-transition:    all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -o-transition:      all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  -webkit-transition: all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75);
  transition:         all 1s cubic-bezier(0.75, -0.25, 0.25, 0.75); }
#feeds .col.reveal { 
  -moz-transform:    translateY(0%);
  -ms-transform:     translateY(0%);
  -webkit-transform: translateY(0%);
  transform:         translateY(0%); 
  opacity: 1; }

#feeds .col h3::before { 
  background: #aaaaaa;
  width: 2.5em;
  height: 2.5em;
  font-size: 1.7em;
  line-height: 2.5em;
  display: block; 
  left: 50%;
  margin-bottom: .35em;
  -moz-transform:    translateX(-50%);
  -ms-transform:     translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform:         translateX(-50%);   
  position: relative;
  -webkit-border-radius:  50%;
  -moz-border-radius:     50%;
  border-radius:          50%;
  color: white;
  font-family: 'trilogyicons';
  }
  
#feeds .col a:hover h3::before { background: #0054a6; }
  

#feeds .videos.col h3::before { 
  content:'=';
  }

#feeds .latest.col h3::before { 
  content:'b';
  }

#feeds .mustsee.col h3::before { 
  content:'*';
  }

#feeds .facebook.col h3::before { 
  content:'f';
  }

#feeds .col h3 { 
  font-weight: bold;
  margin-bottom: .8em;
  }
#feeds .col a:hover h3 { 
  color: #0054a6;
  }
  
#feeds .col ul { 
  list-style: none;
  }

#feeds .col li { 
  padding-bottom: 1em;
  }

#feeds .col li a { 
  color: #565656;
  }
  
#feeds .col li a:hover { 
  color: black;
  }




  
/* Join */

#join { 
  background: #323e5c; 
  padding: 2em 1.5em;
  }
    
#join .signup { text-align: left; }

#join .signup small { 
  display: block;
  font-size: .75em;
  color: #fff;
  padding-top: 1em;
  opacity: .8;
  clear: both; }    


@media (min-width : 768px) { 
  #join { 
    padding: 4em;
    } 
  }  
  
@media (min-width : 1200px) { 
  #join { 
    padding: 5em;
    } 
  }
  
@media (min-width : 1400px) { 
  #join { 
    padding: 6em;
    } 
  }  

#join .intro {
  font-size: 1em;
  color: #fff; 
  margin-bottom: 1em; 
  }
  
#join .form input {
  height: 58px;
  }
  
#join .form .button {
  padding: 0;
  }

#join .form button {
  font-size: 1.15em;
  padding: .7em .7em .7em .65em;
  border: 3px solid white;
  background: #4c8051;
  white-space: nowrap;
  width: 100%;
  height: 58px;
  }
  
#join .form button:hover {
  background: #323e5c;
  }

#join h2 {
  font-size: 250%;
  } 

#join h2,
#join h2 a {
  color: white;
  }  
  
#join h2 strong {
  display: block;
  margin-top: .5em;
  }
  
#join h2 a:hover {
  display: block;
  -moz-transform:    scale(1.05);
  -ms-transform:     scale(1.05);
  -webkit-transform: scale(1.05);
  transform:         scale(1.05); 
  }
  
#join .social { margin-top: 3em; }

#join h3 { 
  color: white;
  }
  
#join .social a {
  font-size: 2em;
  color: white; 
  padding: .2em .3em;
  display: inline-block;
  background: #323e5c; 
  border: 3px solid white;
  }  

#join .social a:hover {
  background: white;
  color: #323e5c;
  -moz-transform:    scale(1.05);
  -ms-transform:     scale(1.05);
  -webkit-transform: scale(1.05);
  transform:         scale(1.05); 
  } 

@media only screen and (min-width : 768px) { 
  #join .intro { 
    font-size: 1.2em;
    margin-bottom: .5em; 
    }
  #join .social a { font-size: 3em; }
  #join .form .field.email {
    width: 50%;
    }
  #join .form .field.zip {
    width: 20%;
    padding-right: 1em;
    }
  #join .form .button {
    width: 30%;
    float: left;
    padding: 0;
    }
  } 
  
@media only screen and (min-width : 1040px) { 
  #join .signup,
  #join .social {
    display: inline-block;   
    vertical-align: middle;
    padding: 0 1.5em
    } 
  #join .social { margin-top: 0; }
  #join .signup {
    width: 65%;
    } 
  #join .social {
    display: inline-block;   
    vertical-align: middle;
    width: 34%;
    } 
  } 



/* Pledge Modal */

#pledge-modal { 
  background: #323e5c; 
  padding: 1.5em;
  width: 90%;
  max-width: 700px;
  text-align: left; 
  }

.pledge-modal_close {
	position: absolute;
	top: -.75em;
	right: -.75em;
	background: white;
	bordeR: none;
  -webkit-border-radius:  50%;
  -moz-border-radius:     50%;
  border-radius:          50%;
  padding: .25em;
  width: 2em;
  height: 2em;
  font-size: 1.5em;
	}
	
.pledge-modal_close:hover {
	color: #00ab4f;
	}

#pledge-modal small { 
  display: block;
  font-size: .75em;
  color: #fff;
  padding-top: 1em;
  opacity: .8;
  clear: both; 
  }    

@media (min-width : 768px) { 
  #pledge-modal { 
    padding: 2em;
    } 
  }  
 
#pledge-modal .intro {
  font-size: 1em;
  color: #fff; 
  margin-bottom: 1em; 
  }
  
#pledge-modal .form input {
  height: 46px;
  }
  
  
#pledge-modal .form .button {
  padding: 0;
  }

#pledge-modal .form button {
  font-size: 1.15em;
  padding: .3em 0;
  border: 3px solid white;
  background: #4c8051;
  white-space: nowrap;
  width: 100%;
  height: 46px;
  }
  
#pledge-modal .form button:hover {
  background: #323e5c;
  }

#pledge-modal h2 {
  font-size: 200%;
  } 

#pledge-modal h2,
#pledge-modal h2 a,
#pledge-modal h3 {
  color: white;
  }  
  
#pledge-modal h2 strong {
  display: block;
  margin-top: .5em;
  }
  
#pledge-modal h2 a:hover {
  display: block;
  -moz-transform:    scale(1.05);
  -ms-transform:     scale(1.05);
  -webkit-transform: scale(1.05);
  transform:         scale(1.05); 
  }


@media only screen and (min-width : 768px) { 
  #pledge-modal .intro { 
    font-size: 1.2em;
    margin-bottom: .5em; 
    }
  #pledge-modal h2 {
	  font-size: 225%;
	  } 
  #pledge-modal .form .field.email {
    width: 50%;
    }
  #pledge-modal .form .field.zip {
    width: 20%;
    padding-right: 1em;
    }
  #pledge-modal .form .button {
    width: 30%;
    float: left;
    padding: 0;
    }
  } 
  
@media only screen and (min-width : 1200px) { 
  #pledge-modal h2 {
	  font-size: 250%;
	  } 
  } 


