@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.no-padding {
    padding: 0;
}

.bold {
    font-weight: 800;

}


.npr {
    padding-right: 0;
}

.npl {
    padding-left: 0;
}

h1 span{
    color: #8fbe47;
    font-size: 24px;
}
.site-content p, .site-content li{
    line-height: 1.8em;
}
/*
header
 */
.site-header {

    background-repeat: repeat-x;
}
.header-wrapper{
    width: 100%;
}
.header-inner{
    margin-top: 4px;
}
.site-branding {

}
.slider-wrapper{
    padding-left:30px;
    padding-right:30px;
}
.site-branding img.site-logo {
    width: 100%;
    height: auto;
}

.site-branding img.sticky-logo {
    visibility: hidden;
    height: 0;
    transition: 0.2s;
}

.is-sticky .site-branding img.site-logo {
    visibility: hidden;
    height: 0;
}

.is-sticky .site-branding img.sticky-logo {
    visibility: hidden;
    height: 0;

}

.is-sticky .site-header {
    box-shadow: -1px 9px 5px -4px rgba(0, 0, 0, 0.49);
}



.main-title {
    background: #eee;
    margin-bottom: 20px;

}

.main-title h1.page-title {

    margin-top:15px;
    margin-bottom:10px;

}
.industry-partners .bx-wrapper{
    margin: auto;
}
.breadcrumb {

    background-color: #eee;
    margin-left: 0;
    padding:0;
}

.home-content {
    padding-top: 40px;
    padding-bottom: 40px;
}

.home-blog {
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}



.home-section {
    padding-top: 40px;
    padding-bottom: 40px;
}
.home-section h1{
    text-align: center;
}

/*
Bx Banner
 */
.home-banner {
    padding: 0;
    margin: 0;
}

.slider-wrapper {
    width: 100%;
    position: relative;
}

.banner-content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 30%;
    z-index: 99;
    height: 100%;
    display: block;
    animation: fadein .5s ease-in-out;

}

.video-overlay {
    background-image: url("../images/gridtile.png");
    background-repeat: repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
}

.slider-wrapper .bx-wrapper {
    padding: 0;
    margin: 0;
}

.slider-wrapper .bx-wrapper img.main-img {
    width: 100%;
    height: auto;
}

.slider-wrapper .bx-pager {
    position: absolute;
    width: 100%;
    bottom: 50px;
}

.slider-wrapper .bx-wrapper .bx-pager.bx-default-pager a.active, .slider-wrapper .bx-wrapper .bx-pager.bx-default-pager a:focus, .slider-wrapper .bx-wrapper .bx-pager.bx-default-pager a:hover {
    background: #1074bc;
}



/*
Cards
 */

.card {

}
.card .post-date{
    position: absolute;
    right: 0;
    background: #087e38;
    color: #fff;
    z-index: 99;
    top: 15px;
    padding: 8px;
    font-size: 17px;
    font-weight: 500;
}
.card .card-inner {
    box-shadow: 0px 3px 17px 7px rgba(0, 0, 0, 0.10);
    background-color: #fff;
    margin-bottom: 15px;
}

.card .card-inner .entry {
    margin-bottom: 20px;
}

.card .card-inner.entry-thumb,
.card .card-inner .entry-text {
}

.card .card-inner .entry-thumb {
    position: relative;
    overflow: hidden;
}

.card .card-inner .entry-thumb .thumb-link img {
    vertical-align: bottom;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card .card-inner .entry-thumb .thumb-link::before {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.card .card-inner .entry-thumb .thumb-link::after {
    content: "...";
    font-size: 4.5rem;
    z-index: 1;
    display: block;
    height: 90px;
    width: 90px;
    letter-spacing: -2.6px;
    line-height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.card .card-inner .entry-thumb:hover .thumb-link::before {
    opacity: 1;
    visibility: visible;
}

.card .card-inner .entry-thumb:hover .thumb-link::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.card .card-inner .entry-thumb:hover .thumb-link img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);

}

.card .card-inner .entry-text {
    padding: 9px;
    background-color: white;
}

.card .card-inner .entry-header .entry-title {
    font-size: 20px;
    line-height: 1.32;
    margin-bottom: 1.8rem;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.card .entry-excerpt {
    min-height: 90px;
}

.card .card-inner.entry-header .entry-meta {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.card .event-date {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 80px;
    background: #fff;
    z-index: 55;
}

.card .event-date .day {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    display: block;
    color: #053762;
}

.card .event-date .day sup {
    font-size: 15px;
}

.card .event-date .month {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: block;
    color: #053762;

}

/*Back to top*/
#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background: #8fbe47;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}

#back-to-top:hover {
    background: #e9ebec;
}

#back-to-top.show {
    opacity: 1;
}

footer.site-footer .widget h2.widget-title {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}
footer.site-footer .widget{
    color:#fff;
}
footer.site-footer .footer-widgets{
    margin-top:30px;
}
footer .footer-form{
    margin-top: 45px;
}
footer .footer-form textarea{
    height:123px;
}
.copyright{
    background-color: #8fbe47;
    color:#fff;
    font-size:14px;
    padding: 10px;
}
/*
Widgets
 */
#secondary .widget ul, #colophon .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/*
Content
 */


/*
News Widget
 */

.latest-news .blog-img {
    padding: 0;
}

.latest-news .post-title h3 {
    margin-top: 0;
}

.latest-news .date {
    font-size: 12px;
}

.latest-news .date::before {
    font-family: FontAwesome;
    content: "\f073";
    margin-right: 8px;
}
.newsletter{
    background-color: #8fbe47;
}
.newsletter .btn-primary{
    background-color: #087e38;
    border-color: #087e38;
}
.newsletter h2{
    margin-bottom:30px;
}
/* ===================================================================
 *  Blog
 *
 * ------------------------------------------------------------------- */
.posted-on time::before {
    font-family: FontAwesome;
    content: "\f073";
    margin-right: 3px;
}


body.blog .content-area {
    background: #eee;
}

#bricks {
    padding-top: 4.2rem;
}

#bricks .masonry {
    max-width: 1200px;
}

#bricks .pagination {
    margin-top: 6rem;
}

#bricks.with-top-sep {
    position: relative;
}

#bricks.with-top-sep::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -100px;
    width: 200px;
    height: 1px;
    background-color: #D1D1D1;
}

.bricks-wrapper:before,
.bricks-wrapper:after {
    content: "";
    display: table;
}

.bricks-wrapper:after {
    clear: both;
}

.bricks-wrapper .grid-sizer,
.bricks-wrapper .brick {
    width: 33.33333%;
}

.bricks-wrapper .brick {
    float: left;
    padding: 0 20px;
}

.bricks-wrapper .featured-grid {
    width: 50%;
}

.bricks-wrapper .featured-grid .entry-content {
    width: 100%;
    background: #151515;
}

@media only screen and (max-width: 1280px) {
    .bricks-wrapper .grid-sizer,
    .bricks-wrapper .brick {
        width: 33.33333%;
    }

    .bricks-wrapper .featured-grid {
        width: 66.66667%;
    }
}

@media only screen and (max-width: 1024px) {
    .bricks-wrapper .brick {
        padding: 0 18px;
    }

}

@media only screen and (max-width: 960px) {
    .bricks-wrapper .grid-sizer,
    .bricks-wrapper .brick {
        width: 50%;
    }

    .bricks-wrapper .featured-grid {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .bricks-wrapper .brick {
        padding: 0 15px;
    }

}

@media only screen and (max-width: 600px) {
    #bricks .row {
        max-width: 460px;
    }

    .bricks-wrapper .grid-sizer,
    .bricks-wrapper .brick {
        width: 100%;
        padding: 0 10px;
        clear: both;
    }
}

@media only screen and (max-width: 400px) {
    .bricks-wrapper .brick {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

}

.js .animate-this {
    opacity: 0;
}

.oldie .animate-this
.no-cssanimations .animate-this {
    opacity: 1;
}

.bricks-wrapper .entry {
    margin-bottom: 40px;
}

.bricks-wrapper .entry-thumb,
.bricks-wrapper .entry-text {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
}

.bricks-wrapper .entry-thumb {
    position: relative;
    overflow: hidden;
}

.bricks-wrapper .entry-thumb .thumb-link img {
    vertical-align: bottom;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height:auto;
}

.bricks-wrapper .entry-thumb .thumb-link::before {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.bricks-wrapper .entry-thumb .thumb-link::after {
    content: "...";
    font-size: 4.5rem;
    z-index: 1;
    display: block;
    height: 90px;
    width: 90px;
    letter-spacing: -2.6px;
    line-height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

.bricks-wrapper .entry-thumb:hover .thumb-link::before {
    opacity: 1;
    visibility: visible;
}

.bricks-wrapper .entry-thumb:hover .thumb-link::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.bricks-wrapper .entry-thumb:hover .thumb-link img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.bricks-wrapper .entry-text {
    padding: 1.8rem 2.8rem 3.6rem;
    background-color: white;
}

.bricks-wrapper .entry-header .entry-title {
    font-size: 2.5rem;
    line-height: 1.32;
    margin-bottom: 1.8rem;
}

.bricks-wrapper .entry-header .entry-title a,
.bricks-wrapper .entry-header .entry-title a:visited {
    color: #000000;
}

.bricks-wrapper .entry-header .entry-meta {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.bricks-wrapper .entry-header .entry-meta a,
.bricks-wrapper .entry-header .entry-meta a:visited {
    color: #000000;
}


.bricks-wrapper .entry-header .cat-links a:last-child::after {
    display: none;
}

.bricks-wrapper .entry-excerpt {
    font-size: 1.5rem;
    line-height: 2.7rem;
    color: #999999;
}


.blog-single .post-thumb img{
    width: 100%;
    height: auto;
}
.blog-single .entry-meta {
    font-size: 1.5rem;
    list-style: none;
    margin-left: 0;
    margin-bottom: 8px;
    margin-top: 8px;
    color: #999999;
}

.blog-single .entry-meta a,
.blog-single .entry-meta a:visited {
    color: #000000;
}

.blog-single .entry-meta li {
    display: inline-block;
    padding-left: 0;
}

.blog-single .entry-meta .date {
    margin-right: 1rem;
}

.blog-single .entry-meta .cat a {
    margin-right: 5px;
}

.blog-single .entry-meta .cat a:last-child {
    margin-right: 0;
}

.blog-single .entry-meta .cat a::after {
    content: ",";
}

.blog-single .entry-meta .cat a:last-child::after {
    content: none;
}

.blog-single .tags {
    margin: 6rem 0 4.2rem;
}

.blog-single .tags span {
    color: #151515;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.blog-single .tags a {
    color: #999999;
    margin-right: 1rem;
}

.blog-single .author-profile {
    margin-top: 9rem;
    padding-left: 9rem;
    position: relative;
}

.blog-single .author-profile a,
.blog-single .author-profile a:visited {
    color: #000000;
}

.blog-single .author-profile img {
    margin: 0.6rem 0 0 0 !important;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.blog-single .author-profile p {
    margin-bottom: 1.2rem;
}

.blog-single .author-profile .author-social {
    list-style: none;
    margin-left: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.blog-single .author-profile .author-social li {
    display: inline-block;
    margin-right: 0.8rem;
    padding-left: 0;
}

.blog-single .author-profile .author-social a {
    color: #999999;
}

.blog-single .pagenav {
    padding-top: 1.5rem;
    margin: 12rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-single .pagenav div {
    padding-top: 1.5rem;
    float: left;
    width: 50%;
}

.blog-single .pagenav a {
    font-size: 2.1rem;
    line-height: 1.571;
    border: none;
    color: #000000;
}

.blog-single .pagenav a span {
    font-size: 1.5rem;
    line-height: 3rem;
    display: block;
    margin-bottom: 1.5rem;
    color: #999999;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.blog-single .pagenav a:hover span {
    color: #000000;
}


@media only screen and (max-width: 768px) {
    .blog-single .entry-meta {
        font-size: 1.5rem;
    }

    .blog-single .pagenav div {
        float: none;
        width: 100%;
    }

    .blog-single .pagenav div:first-child {
        margin-bottom: 0.9rem;
    }

}

@media only screen and (max-width: 600px) {
    .blog-single .author-profile {
        padding-left: 0;
        text-align: center;
    }

    .blog-single .author-profile img {
        position: static;
        width: 6.6rem;
        height: 6.6rem;
        margin: 0 0 0.6rem 0 !important;
    }

    .blog-single .pagenav {
        text-align: center;
    }

}


/*
Social Menu Top Nav
 */
ul#menu-social {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
}

ul#menu-social li {
    display: inline-block;
}

ul#menu-social li a span {
    display: none;
}

ul#menu-social li a::before {
    font-family: FontAwesome;
    color: #fff;
    display: inline-block;
    font-size: 21px;
    margin-left: 5px;
    margin-right: 0;
    line-height: 32px;
}

ul#menu-social li.fb a::before {
    content: "\f230";

}

ul#menu-social li.twitter a::before {
    content: "\f081";

}

ul#menu-social li.yt a::before {
    content: "\f166";

}

ul#menu-social li.email a::before {
    content: "\f199";

}

ul#menu-social li.tel a::before {
    content: "\f098";

}
.home-news{
    padding-top:40px;
    padding-bottom:40px;
    background-color: #e7f1d8;
}
.home-news .card-wrapper .card:first-child{
    padding-left:0;
}
.home-news .card:last-child {
    padding-right:0;
}
.home-news .more-posts{
    display: none;
}

.home-news .show-more-posts:before, .home-news .show-more-posts:after{
    font-family: FontAwesome;
    content: "\f063";
    margin-left:30px;
    margin-right:30px;
}
.home-news .show-more-posts.active:before, .home-news .show-more-posts.active:after{
    content: "\f062";

}
.home-news .show-more-posts span.closed{
    display: inline-block;
}
.home-news .show-more-posts span.open{
    display: none;
}
.home-news .show-more-posts.active span.closed{
    display: none;
}
.home-news .show-more-posts.active span.open{
    display: inline-block;
}
.home-news .more-posts.active{
    display: block;
}
.home-news .show-more-posts{
    margin-top:15px;
    color:#087e38;
    font-weight: 600;
}
.home-news .blog-logo img{
    height: 96px;

    width: auto;
}
/*
menu
*/
/* Main Navigation */

ul#primary-menu {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    margin-top:8px;
}

ul#primary-menu > li {
    float: left;
    padding: 0;
    list-style: none;
    list-style-image: none;
    display: inline-block;
    position: relative;

}



ul#primary-menu li a {
    display: block;
    font-size: 13px;
    line-height: 23px;
    padding: 12px 20px;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}

ul#primary-menu li.current-menu-item a, ul#primary-menu li a:hover {
    background: #58585a;

}

ul#primary-menu > li.menu-item-has-children > a > span::after{
    font-family: FontAwesome;
    content: "\f0d7";
    display: block;
    float: right;
    position: absolute;
    right: 8px;
    top: 29%;
}

ul#primary-menu > li a span {

    display: block;
}



ul#primary-menu li ul.sub-menu {
    display: none;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    left: 0;
    width: 200px;
    z-index:10;
    background-color: #8ebe48;
}
ul#primary-menu li ul.sub-menu li:hover{
    background-color: #58585a;
}

ul#primary-menu li ul.sub-menu li a {
    font-size: 13px;
    padding: 12px;
}
ul#primary-menu li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}
ul#footer-menu{
    list-style: none;
    padding:0;
    margin:0;
}
ul#footer-menu li{
    display: inline-block;
    margin-right:10px;
    margin-bottom:15px;
}

.top-right{
    text-align: right;
    color:#8fbe47;
}
.top-right a{
    color:#fff;
    text-decoration: none;
}
.header-search{
    width:60%;
    float:right
}
@media (max-width: 768px) {
/*
Menu
 */
    ul#primary-menu {
        position: absolute;
        left: 0;
        z-index: 10;
        visibility: hidden;
        height:0;
        background-color: #8bbc47;
    }
    ul#primary-menu.active{
        visibility: visible;
        height:auto;

    }
    ul#primary-menu > li {
        width: 100%;
    }

    ul#primary-menu li ul.sub-menu {
        position: relative;
        width: 100%;
    }
    ul#primary-menu li ul.sub-menu li a span {
        margin-left:10px;
    }

    .site-branding img.site-logo {
        width: 80%;
    }

    .site-branding .btn-mobile-toggle {
        float: right;
        top: 2px;
        position: absolute;
        right: 10px;
        border-radius: 0;
    }
    .site-branding .btn-mobile-toggle span:after{
        font-family: FontAwesome;
        content: "\f0c9";
    }
    .site-branding .btn-mobile-toggle.active span:after{
        font-family: FontAwesome;
        content: "\f00d";
    }
    .slider-wrapper{
        padding:0
    }
    .breadcrumb {
        margin-bottom: 10px;
    }
    .main-title h1.page-title {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .top-right{
        text-align: center;
        font-size: 11px;
        margin-top: 8px;
    }
    .header-search{
        width:100%;
        float:none;
        padding-bottom:10px;
    }
    .header-search .input-lg {
        height: 34px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .header-search .btn-lg{
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        border-radius: 4px;
    }



}

.modal-title {
    margin: 0;
    display: inline;
}