/*GLOBAL RESET*/
* {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  fill: inherit;
  stroke: inherit;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* ***** Base styles ***** */
body {
    font-family: 'Barlow Semi Condensed', sans-serif;
}
h1{
    font-size: 48px;
    margin-bottom: 24px;
}
h2 {
    font-size: 36px;
    margin: 24px 0;
}
h3 {
    font-size: 28px;
    margin: 18px 0 64px 0;
}
h4 {
    font-size: 20px;
    margin: 12px 0 32px 0;

}
ul, li{
    margin:0;
    padding: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}
.nomargin {
    margin: 0;
}
p {
    font-size: 18px;
    margin: 0 0 32px 0;
    line-height: 28px;
}
a{
    color: #ffffff
}
a.blueLink {
    color: #3c858c;
}
.white {
    color: #fff;
}

.section{
    text-align: center;
}

.hidden{
    opacity: 0;
}

.light-blue { 
    color:#3c858c; 
    font-weight: bold 
}
.lighter-blue { 
    color: #61aa9e; 
    font-style: italic; 
    font-weight: bold
}
.lightest-blue { 
    color: #a3d1b3; 
    font-weight: bold 
}

hr {
    margin-bottom: 36px;
}

.underline {
    text-decoration: underline;
}

.center {
    text-align: center;
}

.email {
    color: #123f55;
}

/* ***** Header/menu styles ***** */
#header {
    top: 0px;
    position: fixed;
    height: 70px;
    display: block;
    background: #C4DCD7;
    width: 100%;
    z-index: 101;
    text-align: center;
    text-transform: uppercase;
}
#logo-container img{
    max-height: 45px;
    width: auto;
    height: 45px;
    margin-top: 7px;
    margin-left: 20px;
}
#logo-container>a.logo{
    position: absolute;
    left: 10px;
    top: 6px;
}
#myMenu{
    display: inline-block;
    height: 50px;
}
#myMenu li{
    display:inline-block;
    position: relative;
}
#myMenu li a {
    color: #414042;
    text-decoration:none;
    display: inline-block;
    margin: 20px 10px 10px;
}
#myMenu li a:hover{
    text-decoration: underline;
}

.header {
    background: url(../images/BuildingBrentwoodHeader.jpg);
    background-size: cover;
    background-position: bottom;
    padding: 36px 0 130px 0;
    color: #414042;
    position: relative;
}

#menu{
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    margin-top: 15px;
}

.hamburger {
    position: relative;
    display: inline-block;
    width: 1.25em;
    height: 0.8em;
    margin-right: 0.3em;
    border-top: 0.2em solid #414042;
    border-bottom: 0.2em solid #414042;
}

.hamburger:before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0px;
    width: 100%;
    border-top: 0.2em solid #414042;
}

.menuText {
    font-size: 20px;
    margin-right: 10px;
    color: #414042;
}

#myMenu .menuCommit {
    background-color: #3c858c;
    color: #fff;
    padding: 5px 10px;
}

#myMenu .menuCommit:hover{
    text-decoration: none;
    background-color: #003940;
}

#nav-wrapper{
    z-index: 10;
    position: fixed;
    top: 0; 
    width: 100%;
}

#toggler-label{
    position: fixed;
    top: 22px;
    right: 30px;
    cursor: pointer;
}

#toggler{
    position: fixed;
    top:0;
    right: 0;
    display: none;
}
#building-image{
    width: 100px;
    position: fixed;
    top: 80px;
    right: -300px;
    border: 2px solid white
}
#drawer{
    padding-top: 180px;
    position: fixed;
    top: 0;
    right: -300px;
    background: #113d52;
    height: 100%;
    width: 300px;
}
#drawer ul li {
    margin: 5px 0;
}
#drawer ul li a{
    color: #fff;
    text-transform: none;
    font-size: 1.2em;
    display:block;
    padding: 5px;
    text-align: right;
    padding-right: 100px;
    text-decoration: none;
}
#drawer ul li a:hover{
    background: rgba(196, 220, 215, 0.5);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#drawer ul{ 
    list-style: none;
    margin-top: 16px;
}
#toggler:checked ~ #toggler-label .menuText{
    color: #ffffff;
    }
#toggler:checked ~ #toggler-label .hamburger,
#toggler:checked ~ #toggler-label .hamburger:before
{
    border-color: #ffffff;
} 
#toggler:checked ~ #drawer{
    right: 0;
}
#toggler:checked ~ #curtain{
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(196, 220, 215, 0.5);
    width: 100%; 
    height: 100%;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#toggler ~ #curtain{
    background: rgba(196, 220, 215, 0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#toggler:checked ~ #building-image{
    right: 100px;
}

#header #drawer, #header #building-image{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    /* adds animation for all transitions */
    
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    -webkit-text-size-adjust: none;
}


#verse{
    font-size: 1.7em;
    line-height: normal;
}
.header div#verse{
    width: 50%;
    margin: 36px auto;
}
#verse-address{
    font-size: 1.1em !important;
}

#vid-launch-wrap, #vid-launch-wrap2{
    height: 300px; 
    margin: 36px 0;
}
#vid-launch, #vid-launch2{
    max-height: 100%;
    max-width: 100%;
}

#vid-launch2 img {
    height: auto;
    max-height: 300px;
    width: 100%;
    max-width: 600px;
    border: 2px solid #113d52;
    margin-bottom: 32px;
}
.triangle-right {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-left: 50px solid #ffffff;
    border-bottom: 25px solid transparent;
    display: inline-block;
    margin-top: 20px;
}



/* ***** Overview section styles ***** */
.overview {
    margin-bottom: 48px;
}

#overviewSection {
    padding: 0px 160px 90px 160px;
    background: url('../images/BuildingBrentwood_Texture.png');
    background-size: cover;
}

.overviewContainer {
    width: 100%;
    margin: 0 auto;
}

.buildingWaymakerLogo img {
    width: 100%;
    max-width: 500px;
}

.buildingBrentwoodLogo hr, .buildingTeaching hr {
    width: 50%;
    margin: 0 auto 36px auto;
}

.buildingTeaching {
    margin-top: 64px;
}

.buildingTeaching h3 {
    margin-bottom: 32px;
}

.buildingTeaching > #vid-launch-wrap2 {
    margin-bottom: 64px;
}

.pointsContainer {
    display: table;
    width: 100%;
}

.fourPoints {
    display: table-cell;
    width: 25%;
    padding: 20px;
    text-align: left;
}

.fourPoints p {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
}

.ltGreen {
    background-color: #a3d1b3;
}
.turquoise {
    background-color: #61aa9e;
}
.ltBlue {
    background-color: #3c858c;
}
.dkBlue {
    background-color: #123f55;
}



/* ***** Homepage Green Section styles ***** */
#transformation, #restoration, #development, #connection {
    background-size: cover;
    padding: 120px 160px;
    border-top: 1px solid #fff;
}


#transformation {
    background-image: url('../images/TransformationBackground.jpg');
}

#restoration {
    background-image: url('../images/RestorationBackground.jpg');
}

#development {
    background-image: url('../images/DevelopmentBackground.jpg');
}

#connection {
    background-image: url('../images/ConnectionBackground.jpg');
}

.numberContainer {
    position: relative;
    text-align: center;
}

.greenSquare {
    z-index: 1;
    width: 100%;
    max-width: 100px;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -animation-delay: .3s;
}

.number {
    position: absolute;
    top: 5px;
    left: 48%;
    z-index: 2;
    width: 100%;
    max-width: 80px;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -animation-delay: .5s;
}

.howBuildText {
    text-align: center;
}

.howBuildGraphic {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -animation-delay: .8s;
}

.buildingGallerySection {
    margin-top: 40px;
}

.buildingGallery img {
    width: 100%;
    max-width: 500px;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -animation-delay: 1s;
}

.buildingText p {
    font-size: 20px;
    color: #fff;
    text-align: left;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -animation-delay: 1s;
}


/* ***** Footer styles ***** */
#footer{
    background: #113d52;
    text-transform: uppercase;
    padding: 36px 0;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
}

/* ***** Button styles ***** */
.readyCommit {
    text-align: center;
    margin: 36px 0;
    padding: 0 24px;
}
.btn-flat {
    font-size: 20px;
    font-family: inherit;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    padding: 17px 32px;
    outline: 0;
    border: none;
    margin-bottom: 32px;
}
.btn-flat.primary {
    background-color: #3c858c;
}
#commitButton {
    font-size: 26px;
    width: 200px;
    margin: 0 auto;
    display: block;
    text-transform: uppercase;
}



/* ***** Page styles ***** */
.container {
    margin-top: 96px;
    margin-bottom: 96px;
    text-align: center;
}

.texture {
    background: url('../images/BuildingBrentwood_Texture.png');
    background-size: contain;
}

#fullpage{
    padding-top: 70px
}

/* ***** Gala Page ***** */
.galaImage {
    margin-top: 70px;
    width: 100%;
}

.galaThanks {
    text-align: center;
    margin: 64px 32px;
}

@media (max-width: 767px) {
    .galaImage {
        margin-top: 40px;
    }
    .galaThanks {
        margin: 0 32px;
    }
}

.cycle-slideshow {
    width: 100%!important;
    display: block;
    margin: 0 auto 32px auto;
}
.cycle-carousel-wrap {
    width: 100%;
}
.cycle-slide {
    width: 24.599999%;
    margin-right: 0.2%;
    margin-left: 0.2%;
}


@media screen and (min-width:768px) and (max-width:1023px) {
    .cycle-slideshow {
        width: 100%!important;
        margin-left: 0;
    }
    .cycle-slide {
        width: 33.33333%;
        margin-right: 0.3%;
        margin-left: 0.3%;
    }
}

@media screen and (min-width:601px) and (max-width:767px) {
    .cycle-slide {
        width: 48.4%;
        margin-right: 0.7%;
        margin-left: 0.8%;
    }
}

@media screen and (max-width:600px) {
    .cycle-slideshow {
        width: 97%!important;
    }
    .cycle-slide {
        width: 100%;
        margin-right: 0%;
        margin-left: 0%;
    }
}


/* ***** Map styles ***** */
.map {
    margin: 64px 0;
}

.map iframe {
    border: 1px solid #d8d8d8;
    width: 75%;
    height: 450px;
}
@media (max-width:768px) {
    .map iframe {
        width: 100%;
        height: 360px;
    }
}

/* ***** Creative Giving page styles ***** */
.assets {
    padding: 10px 20px;
    text-align: left;
    width: 95%;
    height: 205px;
    box-sizing: border-box;
    margin-bottom: 32px;
}

@media (max-width: 1023px) {
    .assets {
        height: 275px;
    }
}
@media (max-width: 767px) {
    .assets {
        height: 100%;
    }
}
#treasures {
    background-color: #61aa9e;
    padding: 20px;
    text-align: left;
    height: auto
    box-sizing: border-box;
    margin-bottom: 32px;
}
#treasures p {
    margin-bottom: 0;
}
#asset1 {
    background-color: #3c858c;
}
#asset2 {
    background-color: #123f55;
}
.assets ul, .assets li {
    margin: 5px 10px;
    font-size: 18px;
}
#giveUp {
    margin-bottom: 32px;
}
.giveUpImage {
    display: inline-block;
    width: 25%;
    margin: 0 15px;
}
.giveUpImage img{
    width: 100%;
}
@media (max-width: 767px) {
    .giveUpImage{
        width: 50%;
        margin: 15px 0;
    }
}
@media (max-width: 500px) {
    .giveUpImage{
        width: 100%;
    }
}
.calculator {
    border: 2px solid #d8d8d8;
    margin: 0 auto 36px auto;
    width: 100%;
    max-width: 350px;
    box-shadow: 10px 10px #d8d8d8;
}
.formField {
    margin-bottom: 20px;
}
form label span {
    padding-top: 15px;
    float: left;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    width: 100%;
}
input:not([type="submit"]).disabledInput {
    background-color: #d8d8d8;
}
input:not([type="submit"]) {
    margin-top: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #111;
    line-height: 22px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #e1e1e1;
    border-radius: 1px;
    width: 75%;
}
input[type=button] {
    background-color: #fff;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    width: 50%;
}
.submit {
    text-align: left;
    padding: 0;
}
.submit button {
    margin-top: 10px;
    margin-left: 23px;
}


/* ***** Media Queries ***** */
@media (max-width: 1200px) {
    #transformation, #restoration, #development, #connection {
        padding: 120px 64px;
    }
}

@media (max-width: 1023px) {
    #myMenu {
        margin-left: 115px;
    }
    #myMenu li a {
        margin: 20px 5px 10px;
        font-size: .8em;
    }
    .pointsContainer {
        display: block;
    }
    .fourPoints {
        display: block;
        width: 100%;
        margin-bottom: 36px;
        margin-left: -18px;
    }
    #overviewSection {
        padding: 90px 64px;
    }
    .five.columns.buildingGallery {
        width: 100%;
        display: block;
        margin-bottom: 36px;
        margin-left: 0;
    }
    .five.columns.buildingText {
        width: 100%;
        display: block;
    }
    .buildingGallery img {
        max-width: 100%;
    }
}
@media (max-width: 845px) {
    #myMenu {
        display: none;
    }
}

@media (max-width: 767px) {
    
    #verse{
        font-size: 1.5em 
    }
    #verse-address{
        font-size: 1.0em 
    }
    .section .columns {
        margin-top: 0;
    }

    #footer {
        padding-top: 0;
    }

    #footer .twelve.columns {
        margin-top: 0;
    }
}

@media (max-width: 530px) {
    #vid-launch-wrap, #vid-launch-wrap2 {
        margin-bottom: 0;
        width: 100%;
        height: auto;
    }
    #vid-launch-wrap img, #vid-launch-wrap2 img {
        width: 100%;
        height: auto;
    }

    .header {
        background: url('../images/BuildingBrentwood_Texture.png');
        padding: 12px 0 36px 0;
    }

    .header div#verse {
        width: 85%;
        margin: 36px auto;
    }
    #verse {
        font-size: 1.3em;
    }
    #overviewSection {
        padding: 64px 36px;
    }

    #transformation, #restoration, #development, #connection {
        padding: 120px 24px;
    }

    #transformation {
        background-image: url('../images/TransformationBackgroundMobile.jpg');
    }

    #restoration {
        background-image: url('../images/RestorationBackgroundMobile.jpg');
    }

    #development {
        background-image: url('../images/DevelopmentBackgroundMobile.jpg');
    }

    #connection {
        background-image: url('../images/ConnectionBackgroundMobile.jpg');
    }

}

/* ***** Goal Styles **** */
.goal {
    margin: 96px 32px;
    text-align: center;
}
.goal h4 {
    font-size: 3.0em;
}
.odometer, .comma, .dollarSign {
  display: inline-block;
  color: #113d52;
}
.odometer {
  font-size: 120px;
}
.comma, .dollarSign {
  font-size: 145px;
}

.number-container {
  margin-bottom: 64px;
}

#progress {
  background-color: #113d52;
}

#progress:hover {
  background-color: #3c858c;
}

@media (max-width: 915px) {
    .goal {
        margin: 64px 32px;
    }
    .goal h4 {
        font-size: 2.5em;
    }
    .odometer {
        font-size: 96px;
    }
    .comma, .dollarSign {
        font-size: 112px;
    }
}

@media (max-width: 715px) {
    .goal {
        margin: 32px 32px;
    }
    .goal h4 {
        font-size: 2.0em;
    }
    .odometer {
        font-size: 65px;
    }
    .comma, .dollarSign {
        font-size: 80px;
    }
}

@media (max-width: 520px) {
    .goal h4 {
        font-size: 1.5em;
    }
    .odometer {
        font-size: 46px;
    }
    .comma, .dollarSign {
        font-size: 56px;
    }
    .goal .btn-flat {
        font-size: 14px;
    }
}

@media (max-width: 395px) {
    .goal h4 {
        font-size: 1.0em;
    }
    .odometer {
        font-size: 36px;
    }
    .comma, .dollarSign {
        font-size: 44px;
    }
    .goal .btn-flat {
        font-size: 12px;
    }
}

.question>label {
    display:block;
    padding: 15px 10px;
    background-color: #eeeeee;
    border: 1px solid #d8d8d8;
    text-decoration: none;
    color:#3c858c;
    position: relative;
}
.pull-right{
    position: absolute;
    right: 5px;
    top: 20px;
}
.question>label>h3, .question>label>span{
    margin: 0;
    display: inline-block;
}
.question input[type='checkbox']{
    display:none;
}
.question .faq-content{
    display:none;
    border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
}
.faq-content p{
    margin:0;
    padding: 3px;
}
.faq-content, .faq-content ol {
    padding-left: 10px;
}

.question>input:checked ~ .faq-content{
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}
.question>input:checked ~ label>span i.fa-chevron-right{
    display:none;
}
.question>input:checked ~ label>span i.fa-chevron-down{
    display:block;
}
.question>label>span i.fa-chevron-down{
    display: none;
}
main {
    padding-bottom: 40px;
}
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}  
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

/* ****** College Students Page ******** */
#collegeHelp {
    border: 1px solid #113d52;
    margin-top: 32px;
    margin-bottom: 32px;
}
#collegeHelp h3 {
    margin-bottom: 32px;
    margin-top: 32px;
}

.threeWays {
    display: table-cell;
    width: 33%;
    padding: 20px;
    text-align: left;
}
.invite {
    text-align: center;
    margin-top: 42px;
}
#icons {
    text-align: center;
}

img.icons {
    width: 45px;
    margin: 0 3px;
}

@media (max-width: 1024px) {
    img.icons {
        width: 36px;
        margin: 0 3px;
    }
}

.twelve.columns.video {
    margin: 64px auto;
    display: block;
    text-align: center;
}

@media (max-width: 767px) {
    .threeWays {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    main>section{
        margin-top: 0 !important;
    }
}
