/***************************************
Colors
***************************************/
    /*
    @orange:         #f07241;
    @blue:           #3299bb;
    @green:          #83af9b;*/

/***********************************
Border Box EVERYTHING
***********************************/
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box
    }

/***************************************
Clear Floats -- Like a Boss!
***************************************/
    .cf:before,
    .cf:after   { content: " "; display: table }
    .cf:after   { clear: both }
    .cf         { *zoom: 1 }

/***************************************
Image Replacement -- Like a Boss!
***************************************/
    .ir {
        background-color: transparent;
        border: 0;
        overflow: hidden;
        *text-indent: -9999px
        }
    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 150%;
        }

/***************************************
Base Styles
***************************************/
    body, select, input, textarea { color: #7d7b7a } /* Main Font Color */

    body{
        margin: 0;
        font: 300 100%/2 'Lato', sans-serif; /* Main Font */
        min-height: 100%;
        background: #f9f9f9;
        }

/***********************************
Global
***********************************/
    /* Heading */

  h1,h3,h4,h5,h6 {
        margin: 0 40px 10px 40px;
        font-family: inherit;
        font-weight: bold;
        color: #f0f0f0;
        line-height: 1.2em;
        text-rendering: optimizelegibility;
        }

    h2 {
        margin: 0 20px 10px 20px;
        font-family: inherit;
        font-weight: bold;
        color: #f07241;
        line-height: 1.2em;
        text-rendering: optimizelegibility;
        }

    h1 { font-size: 46px }
    h2 { font-size: 20px }
    h3 { font-size: 24px }
    h4 { font-size: 18px }
    h5 { font-size: 14px }

    a {
        color: #444;
        font-weight: 400;
        text-decoration: none;
        -webkit-transition: color linear 0.2s;
           -moz-transition: color linear 0.2s;
            -ms-transition: color linear 0.2s;
             -o-transition: color linear 0.2s;
                transition: color linear 0.2s;
        }

    a:hover {
        color: #222;
        text-decoration: none;
        }

    a:focus {
        outline: thin dotted #333;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
        }

    a:hover,
    a:active {
        outline: 0;
        }

    a img{
        opacity: 1;
        -webkit-transition: opacity linear 0.2s;
           -moz-transition: opacity linear 0.2s;
            -ms-transition: opacity linear 0.2s;
             -o-transition: opacity linear 0.2s;
                transition: opacity linear 0.2s;
        }
    a:hover img{
        background-color: none;
        opacity: 0.6;
        }
    p {
        margin: 0 0 10px;
        }
    small {
        font-size: 85%;
        }

    strong {
        font-weight: bold;
        }

    em {
        font-style: italic;
        }

    ul,
    ol {
        padding: 0;
        margin: 0 0 10px 25px;
        }

    ul ul,
    ul ol,
    ol ol,
    ol ul {
        margin-bottom: 0;
        }

    li {
        line-height: 1em;
        }

    ul.unstyled,
    ol.unstyled {
        margin-left: 0;
        list-style: none;
        }

    ul.inline,
    ol.inline {
        margin-left: 0;
        list-style: none;
        }

    ul.inline > li,
    ol.inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
        display: inline; /* IE7 inline-block hack */
        *zoom: 1;
        }

    dl {
        margin-bottom: 1em;
        }

    dt,
    dd {
        line-height: 1em;
        }

    dt {
        font-weight: bold;
        }

    dd {
        margin-left: 10px;
        }

    hr {
        margin: 1em 0;
        border: 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #fff;
        }
    .hidden {
        display: none !important;
        }

    /* PLaceholders */
    input::-webkit-input-placeholder    { color: #ccc; }
    input:-moz-placeholder              { color: #ccc; }

    /*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate.
     * Customize the background color to match your design.
     */

    ::-moz-selection {
        background: #b3d4fc;
        text-shadow: none;
        }

    ::selection {
        background: #b3d4fc;
        text-shadow: none;
        }

    fieldset {
        padding: 0;
        margin: 0;
        border: 0;
        }

    textarea,
    input[type="text"],
    input[type="email"] {
        font-size: 1em;
        background-color: #fff;
        display: inline-block;
        padding: 4px 6px;
        border: none;
        outline: 0;
        vertical-align: middle;
        *display: inline; /* IE7 inline-block hack */
        *zoom: 1;
        }

    textarea:focus,
    input[type="text"]:focus,
    input[type="email"]:focus {
        border-color: #333;
        outline: 0;
        outline: thin dotted \9;
        }

    input[type="submit"]::-moz-focus-inner{
        border: 0;
        padding: 0;
        }

    /* Alerts */
    .alert {
        padding: 8px 14px;
        color: #c09853;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
        display: inline-block;
        zoom: 1;
        *display: inline;
        text-shadow: none;
        margin: 0 auto;
        background-color: #fcf8e3;
        border: 1px solid #fbeed5;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
            -ms-border-radius: 4px;
             -o-border-radius: 4px;
                border-radius: 4px;
        }

    .alert-error{
        color: #b94a48;
        background-color: #f2dede;
        border-color: #eed3d7;
        }

    .alert-success {
        color: #468847;
        background-color: #dff0d8;
        border-color: #d6e9c6;
        }

    .alignright{
        text-align: right;
        }

/***************************************
Buttons
***************************************/
    .btn {
        display: inline-block;
        *display: inline;
        padding: 4px 12px;
        margin-bottom: 0;
        *margin-left: .3em;
        font-size: 14px;
        line-height: 20px;
        color: #333333;
        text-align: center;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
        vertical-align: middle;
        cursor: pointer;
        background-color: #f5f5f5;
        *background-color: #e6e6e6;
        background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
        background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
        background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
        background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
        background-repeat: repeat-x;
        border: 1px solid #cccccc;
        *border: 0;
        border-color: #e6e6e6 #e6e6e6 #bfbfbf;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        border-bottom-color: #b3b3b3;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
                border-radius: 4px;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        *zoom: 1;
        -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
           -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
        }

    .btn:hover,
    .btn:focus,
    .btn:active,
    .btn.active,
    .btn.disabled,
    .btn[disabled] {
        color: #333333;
        background-color: #e6e6e6;
        *background-color: #d9d9d9;
        }

    .btn:active,
    .btn.active {
        background-color: #cccccc \9;
        }

    .btn:first-child {
        *margin-left: 0;
        }

    .btn:hover,
    .btn:focus {
        color: #333333;
        text-decoration: none;
        background-position: 0 -15px;
        -webkit-transition: background-position 0.1s linear;
         -moz-transition: background-position 0.1s linear;
           -o-transition: background-position 0.1s linear;
              transition: background-position 0.1s linear;
        }

    .btn:focus {
        outline: thin dotted #333;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
        }

    .btn.active,
    .btn:active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
         -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
              box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
        }

    .btn.disabled,
    .btn[disabled] {
        cursor: default;
        background-image: none;
        opacity: 0.65;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
        }

    .btn.dark{
        background-color: #444;
        }

    .btn.dark:hover{
        background-color: #666;
        color: #fff;
        }

    button::-moz-focus-inner {border:0;padding:0;margin:0;}

/***************************************
Grid System
Widths from http://gumbyframework.com
***************************************/
    .row {
        width: 100%;
        max-width: 940px;
        min-width: 720px;
        margin: 0 auto;
        }
    .row .row { min-width: 0px }
    .col, .cols {
        margin-left: 2.127663%;
        float: left;
        min-height: 1px;
        position: relative;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
            -ms-box-sizing: border-box;
             -o-box-sizing: border-box;
                box-sizing: border-box;
        }
    .col:first-child    { margin-left: 0px  }
    .row .span1.col     { width: 6.382989%  }
    .row .span2.col     { width: 14.893641% }
    .row .span3.col     { width: 23.404293% }
    .row .span4.col     { width: 31.914945% }
    .row .span5.col     { width: 40.425597% }
    .row .span6.col     { width: 48.936249% }
    .row .span7.col     { width: 57.446901% }
    .row .span8.col     { width: 65.957553% }
    .row .span9.col     { width: 74.468205% }
    .row .span10.col    { width: 82.978857% }
    .row .span11.col    { width: 91.489509% }
    .row .span12.col    { width: 100%       }

/***************************************
Page Styles
***************************************/
    .top-section{
        text-align: center;
        background-color: #fff;
        position: relative;
        overflow: hidden;
        }
    .top-section .wrap{
        padding:5em 0 2em;
        }
    .wrap{
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        }
    .brand{
        background-repeat: no-repeat;
        background-position: 0 0;
        width: 186px;
        height: 76px;
        padding: 0;
        margin: 0 auto 1em;
        }
    footer .brand{
        background-image: url('../images/logo-small.png');
        width: 115px;
        height: 41px;
        margin: 0;
        }
    .sub-hero-copy{
        font-weight: 100;
        color: #FFC9AC;
        }
        .sub-hero-copy2{
        font-weight: 80;
        color: #FF0000;
        }


    /* Counter */
    .unodos{
        text-align: center;
        margin: 5em auto;
        display: inline-block;
        zoom: 1;
        *display: inline;
        }
    .unodos div span{
        display: block;
        line-height: 1;
        }
    .unodos div{
        min-width: 152px;
        }
    .unodos div,
    .unodos .sep{
        float:left;
        margin-left: 0.6em;
        text-align: center;
        }
    .unodos .sep{
        font-size: 2em;
        text-shadow: none;
        margin-top: 1em;
        }
    .unodos .sep,
    .unodos .label{
        color: #FFC9B1;
        }
    .unodos .label{
        font-size: 1.2rem;
        font-weight: 100;
        }
    .unodos .digits{
        font-family: 'Fjalla One', sans-serif;
        font-weight: 200;
        font-size: 9em;
        }

    .pressed-box{
        background-color: #353639;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
            -ms-border-radius: 10px;
             -o-border-radius: 10px;
                border-radius: 10px;
        -webkit-background-clip: padding-box;
           -moz-background-clip: padding;
                background-clip: padding-box;
    }

    /* Social Icons */
    .social{
        text-align: right;
        padding: 0 20px 4px;
        position: absolute;
        right: 1em;
        top: 0;
        -webkit-border-radius: 0 0 10px 10px;
           -moz-border-radius: 0 0 10px 10px;
            -ms-border-radius: 0 0 10px 10px;
             -o-border-radius: 0 0 10px 10px;
                border-radius: 0 0 10px 10px;
        }
    .social a{
        display: inline-block;
        *display: inline; /* IE7 inline-block hack */
        *zoom: 1;
        margin-right: 10px;
        font-size: 1.1em;
        color: #fff;
        }
    .social a:hover{
        color: #666;
        }
    .social a:last-child{
        margin: 0;
        }

    .notify-form fieldset{
        vertical-align: top;
        display: inline-block;
        *display: inline; /* IE7 inline-block hack */
        *zoom: 1;
        padding: 6px;
        margin-bottom: 1em;
        box-shadow:  0 1px 0 rgba(255, 255, 255, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }
    .input-cont{
        position: relative;
        text-align: left;
        overflow: hidden;
        padding: 0;
        margin: 0;
        vertical-align: top;
        display: inline-block;
        *display: inline; /* IE7 inline-block hack */
        *zoom: 1;
        -webkit-border-radius: 4px 0 0 4px;
           -moz-border-radius: 4px 0 0 4px;
            -ms-border-radius: 4px 0 0 4px;
             -o-border-radius: 4px 0 0 4px;
                border-radius: 4px 0 0 4px;
        -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
           -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
            -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
             -o-transition: border linear 0.2s, box-shadow linear 0.2s;
                transition: border linear 0.2s, box-shadow linear 0.2s;
        }
    .input-cont i{
        position: absolute;
        right: 10px;
        top: 28%;
        font-size: 1.3em;
        }

    .notify-form .alert       { margin: 0  1.5em 1em }
    .input-cont.valid .good,
    .input-cont.error .bad    { display: block }
    .input-cont .validate     { display: none  }
    .good                     { color: #5eab1f }
    .error                    { color: #cf4b2a }

    input.email-input{
        background: transparent;
        margin-left: 2px;
        border: 0;
        display: block;
        width: 350px;
        line-height: 23px;
        padding: 15px 10% 15px 6%;
        }


    .notify-btn {
        padding: 15px 30px;
        color: #ffffff;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        background-color: #5bb75b;
        *background-color: #51a351;
        background-image: -moz-linear-gradient(top, #62c462, #51a351);
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
        background-image: -webkit-linear-gradient(top, #62c462, #51a351);
        background-image: -o-linear-gradient(top, #62c462, #51a351);
        background-image: linear-gradient(to bottom, #62c462, #51a351);
        background-repeat: repeat-x;
        border-color: #51a351 #51a351 #387038;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        }

    .notify-btn:hover,
    .notify-btn:focus,
    .notify-btn:active,
    .notify-btn.active,
    .notify-btn.disabled,
    .notify-btn[disabled] {
        color: #ffffff;
        background-color: #51a351;
        *background-color: #499249;
        }

    .notify-btn:active,
    .notify-btn.active {
        background-color: #408140 \9;
        }

    .notify-msg{
        line-height: 1.3;
        text-shadow: none;
        font-weight: 400;
        }

    article{
        margin-bottom: 2em;
        font-size: 0.8rem
        }
    article i{
        float: left;
        vertical-align: middle !important;
        font-size: 1.6em
        }

    article h3{
        font-weight: 200;
        font-size: 20px;
        line-height: 21px;
        margin-bottom: 20px;
        }

    article h3,
    article p{
        margin-left: 40px;
        vertical-align: middle;
        }
    .twitter_title{
        margin-left: 51px;
        }
    .tweets-ticker{
        height: 19.5em;
        margin-bottom: 1em;
        overflow-y: hidden;
        position: relative;
        }
    .tweet_list{
        position: absolute;
        list-style: none;
        margin: 0;
        }
    .tweet_list li{
        margin-bottom: 1.2em;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.2em;
        line-height: 1.2;
        }
    .tweet_list .tweet_avatar {
        margin-right: .5em;
        margin-bottom: 0.2em;
        width: 32px;
        float: left;
        }
    .tweet_list .tweet_avatar img {
        vertical-align: middle;
        border: 1px solid #999;
        -webkit-border-radius: 4px;
           -moz-border-radius: 4px;
            -ms-border-radius: 4px;
             -o-border-radius: 4px;
                border-radius: 4px;
        }
    .tweet_list .tweet_text{
        margin-left: 50px;
        display: block
        }

    .follow-btn .btn{
        font-size: 0.6em;
        }

    .follow-btn i{
        float: none;
        margin-right: 4px;
        vertical-align: middle;
        }

    footer,
    .bottom-cols{
        padding: 3em 0;
        }

    .bottom-section i,
    .bottom-section h3{
        color: #888;
        }

    footer{
        text-align: left;
        background: url('../images/footer-div.png') no-repeat center top;
        background-size: contain;
        }
    footer .wrap { position: relative }

    footer .brand,
    .copyright{
        opacity: 0.5;
        }
    .copyright{
        position: absolute;
        right: 0;
        text-align: right;
        top: 40%;
        font-size: 0.8rem;
        }

/***********************************
Default Template Color
***********************************/
    .top-section{
        border-top: 8px solid #353639;
        padding-bottom: 60px;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        background: url('../images/pattern_bg.png') repeat;
        background: url('../images/bottom_bg.png') repeat-x 0 bottom,
                    url('../images/main_bg.png') no-repeat center top,
                    url('../images/pattern_bg.png') repeat 0 0;
        }

    .brand{
        background-image: url('../images/logo_white_top.png');
        }
    .notify-msg{
        color: #B22D18;
        width: 50%;
        margin: 0 auto;
        }

/***************************************
Media Queries
***************************************/
    /* Desktop */
    @media only screen and (max-width: 970px) {
        footer,
        .social,
        .bottom-cols .col{
            padding-left: 1em;
            padding-right: 1em;
        }
    }

    /* Tablet */
    @media only screen and (max-width: 800px) {
        .brand{
            width: 160px;
            height: 61px;
            background-size: contain;
            }

        .unodos div {
            min-width: 100px;
            }

        .unodos .sep {
            font-size: 2em;
            margin-top: 0.5em;
            }

        .unodos .label {
            font-size: 0.8em;
            }

        .unodos .digits{
            font-size: 5.8em;
            }

        .social a{
            margin-left: 0.5em;
            }

        .row { width: 100%; min-width: 0; margin-left: 0; margin-right: 0; }
        .row .row .col{ padding: 0; }
        .col { width: auto !important; float: none; margin-left: 0; margin-right: 0; }
        .col:last-child, .col:last-child { margin-right: 0; float: none; }
        .row .row .col { padding: 0; }
        .col{ width: auto !important; float: none; margin-left: 0px; margin-right: 0px; }
        .col:last-child { margin-right: 0; float: none; }
        [class*="col"] + [class*="col"]:last-child { float: none; }
        [class*="col"]:before, [class*="col"]:after { display: table; }
        [class*="col"]:after { clear: both; }

    }

    /* Mobile */
    @media only screen and (max-width: 640px) {
        body {
            line-height: 1.7;
            }

        h2{
            padding-left: 1em;
            padding-right: 1em;
            }


        .top-section{
            padding-bottom: 8em;
            }

        .bottom-section article{
            margin-bottom: 4em;
            }

        .col h3{
            margin-top: 0;
            }

        .unodos div {
            min-width: 54px;
            }

        .unodos .sep {
            font-size: 0.9em;
            margin-top: 0.9em;
            }

        .unodos .label {
            font-size: 0.8em;
            }

        .unodos .digits{
            font-size: 3.1em;
            }

        input.email-input {
            padding: 10px 22% 12px 4%;
            width: 104%;
            font-size: 0.8em;
            }


        .notify-btn{
            padding: 11px
            }
        .notify-msg{
            width: 80%;
            }
        footer{
            text-align: center;
            }
        footer .brand{
            margin: 0 auto 18px;
            }
        .copyright{
            position: static;
            text-align: center;
            }
    }
