/*====================================================
11 STUDIO style sheet file
====================================================*/
/* BREAKPOINTS
@media (min-width: 768px){}
@media (min-width: 992px){}
@media (min-width: 1200px){}

*/
/*======================== MAIN SETTINGS ============================*/
* {
    font-family: 'Source Sans Pro', sans-serif;
}
html{
    font-size: 62.5%;
}
body{
    text-align: left;  
    font-size: 1em;
    color: #5b5b5b;
    padding-top: 120px;
    overflow-x: hidden;
    font-weight: 300;
}
p{
    margin: 0;
    padding: 0;
    line-height: 1.4em;
}
a{
    color: #27597c;
    text-decoration: underline;
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
}
a:hover{
    text-decoration: none;
    color: #abd037;
}
h2 {
    display: block;
    width: 100%;
    font-size: 5em;
    color: #fff;
    margin: 0 auto 40px;
    padding: 60px 0;
    text-align: center;
    font-weight: 400;
    background: url('../images/heading_bg.jpg') center no-repeat;
    box-shadow: 0 0 40px 1px rgba(0,0,0,.2);

}
body.sub h2 {
    padding: 80px 0 60px;
    background: url('../images/heading_bg_sub.jpg') center no-repeat;
}
h3.large {
    font-size: 3.5em;
}
img.shadow {
    box-shadow: 4px 4px 20px 1px rgba(0,0,0,.2);
}
b, strong {
    font-weight: 600;
}
/*======================== END MAIN SETTINGS ============================*/

/*======================== HELPERS ============================*/
.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    text-indent: -9999px;
}
.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}
.text_left{
    text-align: left;
}
.text_right{
    text-align: right;
}
.text_justify{
    text-align: justify;
}
.text_center{
    text-align: center;
}
.hide_field{
    display: none;
}
.text_green {
    color: #abd037!important;
}
.bold {
    font-weight: 600;
}
.table {
    display: table;
    width: 100%;
}
.table-cell {
    display: table-cell;
    vertical-align: middle;
}
.transition {
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
}
/*======================== END HELPERS ============================*/

/*======================== PAGINATOR ============================*/
ul.paginator{
    margin: 0;
    padding: 0;    
}
ul.paginator li{
    list-style: none;
    float: left;
}
ul.paginator a{
    display: block;
    width: 30px;
    height: 30px;
    padding: 5px 0 0 0;
    text-decoration: none;
    background: #fff;
    text-align: center;
    margin: 0 5px 0 0;
}
ul.paginator a:hover{
    background: #c4161c;
    color: #fff;
}
ul.paginator .active{
    background: #c4161c;
    color: #fff;
}
ul.paginator span{
    display: block;
    float: left;
    padding:20px 5px 0 0; 
}
/*======================== END PAGINATOR ============================*/

/*======================== BXSLIDER ============================*/
.bx-wrapper .bx-viewport {
    border: none;
    box-shadow: none;
    left: 0;
    background: none !important;
}
.bx-wrapper img {
    margin: 0 auto;
}
/*======================== END BXSLIDER ============================*/

/*======================== TABLES ============================*/
table{
    width: 100%;
    color: #38353d;
}
tr{
    background: #dde9f5;
}
tr:nth-of-type(odd) { 
    background: #b2bfcc; 
}
thead tr, thead td, thead th{
    background: none !important;
}
.pinned{
    background: none !important;
    border-right: 2px solid white;
}
table td, table th{
    border-right: 2px solid white;
}
table td:last-child, table td:last-child{
    border-right: none;
}
/*======================== END TABLES============================*/

/*======================== TINY MCE RESPONSIVE FEATURES============================*/
.one-thirty, .one-half, .one-all{
    width: 100%;
    text-align: center !important;
}
@media (min-width: 768px){
    .one-thirty{
        width: 33.33%;
        float: left;
    } 
    .one-half{
        width: 50%;
        float: left;
    } 
    .one-all{
        width: 100%
    }
}
/*======================== END TINY MCE RESPONSIVE FEATURES============================*/

/*======================== UI Loading ============================*/
.loading-message {
    display: inline-block;
    min-width: 125px;
    padding: 10px;
    margin: 0 auto;
    color: #000 !important;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}
.loading-message.loading-message-boxed {
    border: 1px solid #ddd;
    background-color: #eee;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.loading-message > span {
    line-height: 20px;
    vertical-align: middle;
}

.page-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 125px;
    margin-left: -50px;
    margin-top: -30px;
    padding: 7px;
    text-align: center;
    color: #333;
    font-size: 13px;
    border: 1px solid #ddd;
    background-color: #eee;
    vertical-align: middle;
    -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.page-loading > span {
    line-height: 20px;
    vertical-align: middle;
}
/*======================== END UI Loading ============================*/

/*======================== GALLERY ============================*/
div.gallery{
    text-align: center;
    padding: 10px;
}
div.gallery a {
    border: 1px solid transparent;
    display: inline-block;
    height: 200px;
    line-height: 200px;
    overflow: hidden;
    position: relative;
    width: 200px;
}
div.gallery a img{
    margin: -100% -100%;
    vertical-align: middle; 
}
@media (min-width: 768px){
    div.gallery a.wide{
        width: 400px;
    }
}
div.gallery a.wide img{
    margin: -100% 0;
}
div.gallery .picture_name{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0,0,0,0.8);
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    display: table;
}
div.gallery .picture_name span{
    font-family: sans-serif;
    color: #fff;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    line-height: 1em;
    font-size: 1.2em;
    opacity: 0;
    transition: all 500ms;
    -moz-transition: all 500ms;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition-delay: 250ms;
    -moz-transition-delay: 250ms;
    -o-transition-delay: 250ms;
    -webkit-transition-delay: 250ms;
    -ms-transition-delay: 250ms;
    padding-right: 30px;
}
div.gallery a:hover > span{
    opacity: 0.8;
}
div.gallery a:hover > span span{
    opacity: 1;
    padding-right: 0;
}
/*======================== END GALLERY ============================*/

/*======================== TO TOP BTN ========================================*/
#toTop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: block;
    z-index: -1;
    opacity: 0;
    width: 40px;
    height: 40px;
    background: #abd037;
    color: #fff;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
    transition: all 300ms linear;
}
#toTop.visible {
    z-index: 15;
    opacity: 1;
}
#toTop span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;  
}
/*======================== END TO TOP BTN ====================================*/

/*======================== HEADER ============================================*/
header {
    height: 120px;
    padding-top: 20px;
    padding-bottom: 0;
    margin: 0;
    position: fixed;
    top: 0;
    display: block;
    width: 100%;
    background: #fff;
    z-index: 12;
}
header.decor:before,
body.sub header:before {
    content: '';
    position: absolute;
    top: 100%;
    width: 100%;
    height: 90px;
    display: block;
    background: url('../images/banner_decor.png') no-repeat;
    background-position: 55% 0;
}
header .container {
    position: relative;
}
a.logo {
    height: 60px;
    width: auto;
    position: absolute;
    left: 15px;
    top: 0;
}
a.logo img {
    display: block;
    height: 60px;
    width: auto;
    margin-top: 20px;
}
header nav ul {
    display: block;
    width: 150px;
    margin: 0;
    height: 100px;
    list-style-type: none;
    padding: 0 0 0 20px;
    float: left;
    position: relative;
    left: 380px;
    border-left: 1px solid #898989;
}
header nav ul li {
    display: block;
    float: none;
    padding: 0 10px;
    height: 25px;
}
header nav ul li a {
    height: 25px;
    line-height: 25px;
    font-size: 1.6em;
    color: #5b5b5b;
    text-decoration: none;
}
header a.social {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 40px;
    right: 15px;
}
header a.social img {
    border-radius: 4px;
    margin: 0;
}
header a.social.first {
    right: 50px;
}

.ext_menu_wrapper {
    display: block;
    position: absolute;
    height: 27px;
    right: 12px;
    top: -10px;
}
.ext_menu_wrapper p {
    float: left;
    font-size: 1.4em;
    margin: 0;
    line-height: 27px;
}
.ext_menu_wrapper .slide_toggle {
    display: block;
    float: right;
    height: 27px;
    width: 27px;
    margin: 0 0 0 8px;
    border: none;
    background: transparent url('../images/menu_icon.png') center no-repeat;
    outline: none;
}
.ext_menu_wrapper .slide_menu {
    display: none;
    width: 265px;
    height: auto;
    position: absolute;
    top: 140%;
    right: 0;
    padding: 0 20px;
    list-style-type: none;
    background: rgba(255,255,255,.8);
    box-shadow: 2px 2px 4px 1px rgba(0,0,0,.2);
}
.ext_menu_wrapper .slide_menu li {
    display: block;
    margin: 0;
    padding: 10px 0;
}
.ext_menu_wrapper .slide_menu li a {
    display: block;
    color: #000!important;
    font-size: 1.5em;
    height: 16px;
    margin: 0;
    padding: 0!important;
    line-height: 16px!important;
    transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}
.ext_menu_wrapper .slide_menu li a:hover {
    color: #27597c!important;
    background: transparent;
    cursor: pointer;
}

#menu_caller {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    border: none;
    background: #abd037;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    display: none;
}
#menu_caller span {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    header .container {
        width: 100%!important;
    }
}
@media (max-width: 899px) {
    header {
        height: 120px;
        padding-top: 10px;
        padding-bottom: 50px;
    }
    header .container {
        z-index: 12;
    }
    header.decor:before {
        display: none;
    }
    header:after {
        content: '';
        height: 50px;
        width: 100%;
        position: absolute;
        top: 69px;
        left: 0;
        background: url('../images/slogan.jpg') left center no-repeat;
    }
    header nav {
        position: absolute;
        width: 100%;
        top: 110px;
        padding: 0;
        height: auto;
        background: #fff;
        text-align: center;
        box-shadow: 0px 1px 2px 1px rgba(0,0,0,.2);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        display: none;       
    }
    header nav ul {
        display: block;
        width: 100%;
        margin: 0;
        height: auto;
        list-style-type: none;
        padding: 15px;
        float: none;
        position: relative;
        left: 0;
        border-left: none;
        background: #fff;
    }

    header nav ul li,
    header nav ul li a {
        display: block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        float: none;
        margin: 0;
        padding: 0;
    }
    header nav ul li {
        border-bottom: 1px solid #d3d3d3;
    }
    header nav ul li:last-child {
        border-bottom: none;
    }
    header a.social.first {
        right: 110px;
    }
    header a.social {
        right: 80px;
        top: 20px;
    }
    .ext_menu_wrapper {
        right: 140px;
        top: 16px;
    }
    .bx-controls:before {
        display: none!important;
    }
    a.logo img {
        margin-top: 0
    }
    body.sub header:before {
        display: none;
    }
    #menu_caller {
        display: block;
    }
}
@media (max-width: 767px) {
    .ext_menu_wrapper .slide_menu {
        right: -140px;
    }
}
@media (max-width: 599px) {
    a.logo img {
        height: 30px;
        margin: 15px 0;
    }
}
@media (max-width: 459px) {
    .ext_menu_wrapper p {
        display: none;
    }
}

/* fix iOS bug not displaying 100vh correctly */
/* ipad */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    .navbar-default {
        max-height: 768px;
    }
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .navbar-default {
        max-height: 1024px;
    }
}
/* iphone5 */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
    .navbar-default {
        max-height: 320px;
    }
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
    .navbar-default {
        max-height: 568px;
    }
}
/* iPhone 4 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
    .navbar-default {
        max-height: 320px;
    }
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
    .navbar-default {
        max-height: 480px;
    }
}
/*======================== END HEADER ========================================*/

/*======================== CONTENT WRAPPER ===================================*/
.content-wrapper {
    background: url('../images/bg.jpg') top center no-repeat;
    background-size: cover;
}
body.sub .content-wrapper {
    background: url('../images/bg_sub.jpg') top center no-repeat;
    background-size: cover;
}
.cms {
    padding-bottom: 30px;
}
.cms p {
    font-size: 2.4em;
}
.cms p strong {
    color: #abd037;
}
.cms article {
    display: block;
    width: 100%;
    margin-top: 50px;
    padding-top: 50px;
    background: url('../images/separator.png') top center no-repeat;
}
.cms article h3 {
    font-size: 3.5em;
    color: #000;
    margin: 0 auto 30px;
    font-weight: 400;
}
.cms article p {
    font-size: 2em;
    margin-bottom: 20px;
}
.cms article p strong {
    color: #27597c;
}
.cms article .table-cell {
    width: 50%;
}
.cms article .table-cell img {
    margin: 0 auto;
}
.patronage_link {
    font-size: 1.6em;
    padding: 15px 30px;
    background: #abd037;
    color: #fff;
    display: inline-block;
    margin: 30px auto 0;
    width: auto;
    text-decoration: none;
}
.patronage_link:hover {
    background: #27597c;
}

img.visible_small {
    display: none;
}

@media (max-width: 767px) {
    article {
        text-align: center;
    }
}
@media (max-width: 599px) {
    .cms article > .table {
        display: block!important;
    }
    .cms article > .table .table-cell {
        display: block!important;
        margin-bottom: 15px;
        width: 100%;
    }
    .cms article {
        text-align: center;
    }
    img.visible_small {
        display: block!important;
        margin-bottom: 15px!important;
    }
    img.hide_small {
        display: none!important;
    }
}
/*======================== END CONTENT WRAPPER ===============================*/

/*======================== SUBPAGE ===========================================*/
.subpage *,
.subpage h3.large {
    color: #000;
}
.subpage .blue {
    color: #27597c;
}
.subpage  {
    padding-bottom: 150px;
}
.subpage p {
    font-size: 2.4em;
}
.subpage article {
    display: block;
    width: 100%;
    margin-top: 50px;
    padding-top: 50px;
    background: url('../images/separator.png') top center no-repeat;
}
.subpage article h3  {
    font-size: 3.5em;
    color: #27597c;
    margin: 0 auto 30px;
    font-weight: 100;
}
.subpage h3.article-heading {
    font-size: 3.5em;
    color: #27597c;
    margin: 30px auto -20px;
    font-weight: 100;
}
.subpage article p {
    font-size: 2em;
    margin-bottom: 20px;
}
.subpage img {
    display: block;
    margin: 20px auto;
}
.subpage article img {
    display: block;
    margin: 15px auto 10px;
}
.subpage .box h3 {
    margin: 0;
    font-size: 2em;
}
.subpage .box p {
    margin: 0;
    font-size: 1.8em;
}
.subpage .box {
    box-shadow: 0 0 40px 1px rgba(0,0,0,.2);
    padding: 10px 20px;
    background: #fff;
    margin-bottom: 15px;
}
.subpage .box.green {
    background: #abd037;
}
.subpage .box.lightgreen {
    background: #dff0df;
}
.subpage .box.lightblue {
    background: #e1f4fd;
}
.twitter_btn {
    display: block;
    height: 80px;
    width: 200px;
    padding: 60px 0 0;
    background: url('../images/twitter.png') top center no-repeat;
    text-align: center;
    margin: 40px auto;
    text-decoration: none;
    color: #27597c;
    font-size: 1.6em;
    font-weight: 600;
}
.green_btn {
    font-size: 1.8em;
    padding: 0 20px;
    background: #abd037;
    color: #27597c;
    display: inline-block;
    margin: 30px auto 0;
    width: auto;
    height: 50px;
    line-height: 50px;
    text-decoration: none;
    font-weight: 600;
    outline: none;
    border: none;
    box-shadow: 2px 2px 20px 1px rgba(0,0,0,.2);
}
.green_btn:hover {
    background: #27597c;
    color: #fff;
}
.viral_btn {
    font-size: 1.4em;
    padding: 0 5px;
    background: #abd037;
    color: #27597c;
    display: block;
    margin: 15px auto 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-decoration: none;
    font-weight: 300;
}
.viral_btn strong{
    color: #27597c;
    -moz-transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
}
.viral_btn:hover {
    background: #27597c;
    color: #fff;
}
.viral_btn:hover strong{
    color: #fff;
}
.viral_label {
    margin-top: 15px;
}
span.viral.small {
    color: #27597c;
    font-size: 1.3em;
    display: block;
    width: 100%;
    text-align: left;
}
@media (max-width: 767px) {
    .subpage article .box h3 {
        font-size: 1.6em;
    }
    .subpage article .box p {
        font-size: 1.4em;
    }
    .viral_btn {
        font-size: 1.1em;
    }
}
/*======================== END SUBPAGE =======================================*/

/*======================== SOLUTIONS =========================================*/
.subpage article .solution {
    margin-top: 15px;
    min-height: 872px;
}
.subpage article .solution h3 {
    color: #000;
    font-size: 2.3em;
    min-height: 75px;
}
.subpage article .solution p {
    color: #000;
    font-size: 1.6em;
}
.subpage article .solution .img_wrapper {
    display: block;
    width: 165px;
    height: 165px;
    margin: 0 auto 20px;
    position: relative;
}
.subpage article .solution .img_wrapper .count {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2.8em;
    font-weight: 600;
    color: #abd037;
    background: #27597c;
    border-radius: 50%;
}
@media (max-width: 767px) {
    .subpage article .solution {
        min-height: 1080px;
    }
}
@media (max-width: 479px) {
    .solutions_intro {
        text-align: center;
    }
    .solutions_intro > .col-xs-4,
    .solutions_intro > .col-xs-8 {
        height: auto;
        display: block;
        float: none;
        width: 100%;
    }
    .subpage article .solution {
        height: auto;
        display: block;
        float: none;
        width: 100%;
        min-height: initial;
        margin-bottom: 50px;
    }
    .subpage article .solution h3 {
        font-size: 2em;
        min-height: initial
    }
}
/*======================== END SOLUTIONS =====================================*/

/*======================== REASONS ===========================================*/
.reason {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 50px;
    background: url(../images/reason_decor_bg.png) top right no-repeat;
    margin-top: 15px;
    min-height: 720px;
}
.reason:before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    display: block;
    width: 37px;
    height: 37px;
    padding-top: 45px;
    background: url(../images/reason_decor_1.png) center no-repeat;
}
.subpage article .reason h3 {
    color: #000;
    font-size: 2.3em;
    min-height: 100px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
}
.subpage article .reason p {
    color: #000;
    font-size: 1.6em;
    padding-left: 15px;
    padding-right: 15px;
}
.subpage article .reason ul li {
    color: #000;
    font-size: 1.6em;
}
.subpage article .reason img {
    margin: 0;
}
@media (max-width: 991px) {
    .reason_wrapper {
        height: 750px;
    }
}
@media (max-width: 767px) {
    .subpage .reasons_intro p {
        font-size: 1.6em;
    }
    .subpage article .reason h3 {
        font-size: 2em;
        padding-left: 0;
        padding-right: 0;
    }
    .subpage article .reason p {
        font-size: 1.4em;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    .subpage article .reason ul li {
        text-align: left;
        font-size: 1.4em;
    }
}
@media (max-width: 479px) {
    .reason_wrapper {
        height: auto;
        display: block;
        float: none;
        width: 100%;
    }
    .reason {
        min-height: initial;
        height: auto;
        margin-bottom: 50px;
    }
    .subpage article .reason h3 {
        min-height: initial;
    }
}
/*======================== END REASONS =======================================*/

/*======================== STUDY =============================================*/
.study_link {
    display: block;
    margin: 0 auto;
    width: 354px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    max-width: 100%;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    background: #ededed;
    box-shadow: 2px 2px 20px 1px rgba(0,0,0,.2);
}
.study_link:hover {
    color: #abd037;
    box-shadow: 2px 2px 10px 1px rgba(0,0,0,.1);
}
/*======================== END STUDY =========================================*/

/*======================== SOCIAL BUTTONS ====================================*/
.social_button_wrap {
    display: block;
    height: 50px;
}
/*======================== END SOCIAL BUTTONS ================================*/

/*======================== BANNERS ===========================================*/
.banners_top {
    position: relative;
}
.bx-controls {
    position: absolute;
    top: 0;
    width: 100%;
}
.bx-controls:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 90px;
    display: block;
    background: url('../images/banner_decor.png') no-repeat;
    background-position: 55% 0;
}
.bx-wrapper {
    margin: 0 auto;
    font-size: 10px;
    background: #fff;
}
.bx-wrapper .bx-pager {
    bottom: -50px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #d1d2d4;
    text-indent: 1px;
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    outline: 0;
    color: #fff;
    font-weight: 100;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    line-height: 20px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: relative;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #abd037;
}
.banner_link {
    position: absolute;
    color: #27597c;
    font-weight: 600;
    font-size: 4.5em;
    display: block;
    width: 500px;
    height: auto;
    background: #fff;
    padding: 30px 80px 30px 20px;
    text-decoration: none;
    line-height: 1em;
    text-indent: 1px;
    overflow: hidden;
    box-shadow: 0 0 40px 1px rgba(0,0,0,.2);
    z-index: 11;
    top: 12%;
    left: 46%;
    opacity: .8;
}
.banner_link.w650 {
    width: 650px;
    padding: 30px 120px 30px 40px;
}
.banner_link:before {
    content: 'LEARN MORE';
    position: absolute;
    display: block;
    width: 150px;
    text-align: center;
    z-index: 9;
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 0;
    bottom: 0;
    left: 90%;
    margin: auto;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.banner_link:after {
    content: '';
    position: absolute;
    display: block;
    width: 200px;
    height: 100%;
    background: #abd037 url('../images/arrow_btn.png') left center no-repeat;
    z-index: 8;
    top: 0;
    left: 80%;
    color: #fff;
    -webkit-animation: move 1500ms infinite;
    -moz-animation: move 1500ms infinite;
    animation: move 1500ms infinite;
}
@-webkit-keyframes move {
    0% {left: 80%;}
    50% {left: 78%;}
    100% {left: 80%;}
}
@-moz-keyframes move {
    0% {left: 80%;}
    50% {left: 78%;}
    100% {left: 80%;}
}
@keyframes move {
    0% {left: 80%;}
    50% {left: 78%;}
    100% {left: 80%;}
}

.banner-decor {
    display: block;
    z-index: 10;
    position: absolute;
    -webkit-animation: levitate 1.2s alternate ease-in-out infinite;
    -moz-animation: levitate 1.2s alternate ease-in-out infinite;
    animation: levitate 1.2s alternate ease-in-out infinite;
}
.banner-decor.b1 {
    top: 35%;
    left: 60%;
}
.banner-decor.b2 {
    top: 35%;
    left: 20%;
}
.banner-decor.b-humidity {
    top: 35%;
    left: 20%;
}
.banner-decor.b5 {
    top: 40%;
    left: 60%;
}
@-webkit-keyframes levitate{
    0% {transform: translate(0, 0);}
    100% {transform: translate(0, 0.75em);}
}
@-moz-keyframes levitate{
    0% {transform: translate(0, 0);}
    100% {transform: translate(0, 0.75em);}
}
@keyframes do-levitation {
    0% {transform: translate(0, 0);}
    100% {transform: translate(0, 0.75em);}
}

@media (max-width: 1199px) {
    .banner-decor.b1,
    .banner-decor.b2,
    .banner-decor.b5 {
        top: 5%;
        left: initial;
        right: 1%;
    }
    .banner_link.b1,
    .banner_link.b2,
    .banner_link.b3,
    .banner_link.b4,
    .banner_link.b5 {
        top: initial;
        left: 15px;
        bottom: 15px;
    }
    .bx-wrapper {
        margin: 0 auto;
    }
}
@media (max-width: 991px) {
    .bx-wrapper .bx-pager {
        bottom: -30px;
    }
    .banner-decor {
        text-align: right;
    }
    .banner-decor.b1,
    .banner-decor.b5 {
        max-width: 50%;
    }
}
@media (min-width: 900px) and (max-width: 991px) {
    .bx-wrapper .bx-pager {
        bottom: -45px;
    }
}
@media (max-width: 767px) {
    .banner_link,
    .banner_link.w650 {
        font-weight: 600;
        font-size: 2em;
        width: 280px;
        background: #fff;
        padding: 30px 80px 30px 20px;
        text-decoration: none;
        z-index: 11;
        opacity: 0.85;
    }
    .banner_link:before {
        content: 'LEARN MORE';
        position: absolute;
        display: block;
        width: 150px;
        text-align: center;
        z-index: 9;
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        top: 0;
        bottom: 0;
        left: 242px;
        margin: auto;
        font-size: 14px;
        font-weight: 400;
        color: #fff;
    }
    .header_slider > div:first-child .banner_link:before {
        content: 'LEARN MORE';
        position: absolute;
        display: block;
        width: 150px;
        text-align: center;
        z-index: 9;
        -ms-transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        top: 0;
        bottom: 0;
        left: 230px;
        margin: auto;
        font-size: 14px;
        font-weight: 400;
        color: #fff;
    }
    .banner_link:after {
        content: '';
        position: absolute;
        display: block;
        width: 200px;
        height: 100%;
        background: #abd037 url('../images/arrow_btn.png') left center no-repeat;
        z-index: 8;
        top: 0;
        left: 215px;
        color: #fff;
        -webkit-animation: move-xs 1500ms infinite;
        animation: move-xs 1500ms infinite;
    }
}
@-webkit-keyframes move-xs {
    0% {left: 215px;}
    50% {left: 212px;}
    100% {left: 215px;}
}
@keyframes move-xs {
    0% {left: 215px;}
    50% {left: 212px;}
    100% {left: 215px;}
}

/*======================== END BANNERS =======================================*/

/*======================== PATRONAGE =========================================*/
.patronage {
    background: #fff;
    padding-top: 100px; 
    padding-bottom: 100px; 
}
.patronage h3 {
    font-size: 3em;
    margin: 0 auto 40px;
}
.patronage img {
    display: block;
    margin: 0 auto 30px;
}
.patronage h4 {
    font-size: 1.8em;
    margin: 0 auto 30px;
}
.patronage p {
    font-size: 1.6em;
    margin: 0;
}
.patronage .bx-controls:before {
    display: none;
}
.patronage .bx-controls {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
}
.patronage .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -46px;
    outline: 0;
    width: 20px;
    height: 92px;
    text-indent: -9999px;
    z-index: 9999;
}
.bx-wrapper .bx-next {
    right: 10px;
    background: url(../images/patronage_arrow_right.png) no-repeat center;
}
.bx-wrapper .bx-next:hover {
    background: url(../images/patronage_arrow_right_hover.png) no-repeat center;
}
.bx-wrapper .bx-prev {
    left: 10px;
    background: url(../images/patronage_arrow_left.png) no-repeat center;
}
.bx-wrapper .bx-prev:hover {
    background: url(../images/patronage_arrow_left_hover.png) no-repeat center;
}
.patronage .bx-wrapper .bx-pager {
    bottom: -75px;
}
.patronage .bx-wrapper .bx-pager.bx-default-pager a:before,
.patronage .bx-wrapper .bx-pager.bx-default-pager a.active:before {
    display: none;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    text-indent: -1px;
    width: 14px;
    height: 14px;
    font-size: 0;
}
/*======================== END PATRONAGE =====================================*/

/*======================== FOOTER ============================================*/
footer {
    width: 100%;
    padding: 25px 0;
    background: #f5f5f5;
    font-size: 1.4em;
}
footer .logos .col-xs-6 > a {
    display: block;
    height: 35px;
    margin: 0 auto;
    width: 100%;
}
footer .logos img {
    height: 35px;
    width: auto;
    margin: 0 auto;
    display: block;
}
footer .address {
    position: relative;
}
footer .logos .social_links {
    display: block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 20px;
    position: relative;
    text-align: center;
}
footer .logos .social_links a {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    margin: 0 5px;
}
footer .logos .social_links a img {
    height: 20px;
}


@media (max-width: 991px) {
    footer .col-xs-12 {
        margin-bottom: 20px;
    }
    footer .col-xs-12:first-child p {
        text-align: center;
    }
}
/*======================== END FOOTER ========================================*/

/*======================== TWITTER WIDGET ====================================*/
iframe#twitter-widget-0 {
    width: 100%!important;
}
/*======================== END TWITTER WIDGET ================================*/

/*======================== ICONS ================================*/
.ico{
    display: inline-block;
    width: 34px;
    height: 34px;
    background-position: center center;
}
.ico:hover{
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.ico.twitter{
    background-image: url('../images/ico_twitter.png');
}
.ico.web{
    background-image: url('../images/ico_web.png');
}
.ico.linked{
    background-image: url('../images/ico_linkde.png');
}
/*======================== END ICONS ================================*/

/*======================== SUPPORTERS ================================*/
#campaignSupporters, #campaignSupporters h3{
    font-size: 0.7em;
}
#campaignSupporters h3{
    font-size: 2.5em;
    margin-bottom: 10px;
}
#campaignSupporters .icons a:nth-child(2){
    margin-left: 50px;
}
#campaignSupporters .collapse{
    display: none;
}
/*======================== END SUPPORTERS ================================*/
