/*
  Ameera Theme
	style.css
 	Author : Warung Themes - Ari Rusmanto
 	Main Theme Color: #6bbf00
*/


/* -------------------------------------------------------------- 
 	Contents :
	1  - GENERAL
	2  - LOADING
	3  - OWL CAROUSEL
	4  - SOCIAL ICONS
	5  - FIXED NAV
	6  - HEADER
	7  - MAIN NAV
	8  - TYPOGRAPHY
	9  - MAIN CONTENT
	10 - NOT FOUND PAGE
	11 - SINGLE POST
	12 - CONTACT FORM
	13 - POST METABOX
	14 - POST COMMENTS
	15 - COMMENT FORM
	16 - PREV NEXT POSTS
	17 - POST AUTHOR BOX
	18 - RELATED POSTS
	19 - TILED FEATURED POSTS
	20 - SLIDESHOW FEATURED POSTS
	21 - CAROUSEL FEATURED POSTS
	22 - ARCHIVE LIST
	23 - ARCHIVE POST FORMAT
	24 - CLASSIC ARCHIVE LIST
	25 - LIST STYLE ARCHIVE
	26 - GRID ARCHIVE LIST
	27 - ARCHIVE LIST LARGE POST FIRST
	28 - SIDEBAR
	29 - ADS BANNER WIDGET
	30 - ABOUT WIDGET
	31 - INSTAGRAM GALLERY WIDGET
	32 - TWITTER WIDGET
	33 - TAGS WIDGET
	34 - TEXT LIST WIDGET
	35 - SUBSCRIBE WIDGET
	36 - POST LIST WIDGET
	37 - COMMENTS WIDGET
	38 - SEARCH WIDGET
	39 - TAB WIDGET
	40 - PAGINATION
	41 - FOOTER
	42 - BACK TO TOP
	43 - HERO TEXT TYPE BLINKING CURSOR
	44 - BOXED DEMO
  -------------------------------------------------------------- */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,700,500);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700);
@import url(https://fonts.googleapis.com/css?family=Aladin);

/*
* === GENERAL ===
*/
body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #777677;
    background: #95A5A6;
}

p {
    line-height: 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: serif;
}

a {
    color: #6bbf00;
}

    a:hover {
        color: #33363b;
    }

.form-control {
    height: 50px;
    color: #50514f;
    border-color: #ebebeb;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color ease .15s, background ease .15s;
    -o-transition: border-color ease .15s, background ease .15s;
    transition: border-color ease .15s, background ease .15s;
    background: #f9f9f9;
}

textarea.form-control {
    min-height: 200px;
}

.form-control:focus {
    border-color: #d7d7d7;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
}

.form-control::-moz-placeholder {
    color: #c2c2c2;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #c2c2c2;
}

.form-control::-webkit-input-placeholder {
    color: #c2c2c2;
}

.btn.btn-main {
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    border-color: transparent;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0);
    -moz-box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0);
    box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0);
    transition: box-shadow 0.2s ease, -moz-box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
    background-color: #6bbf00;
    border-color: #6bbf00;
    color: #fff;
}

    .btn.btn-main.focus,
    .btn.btn-main.active,
    .btn.btn-main:active,
    .btn.btn-main:focus,
    .btn.btn-main:hover {
        background-color: #6bbf00 !important;
        border-color: transparent !important;
        outline: 0;
        color: #fff;
        -webkit-box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0.08);
        -moz-box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0.08);
        box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0.08);
    }

/*
* === LOADING ===
*/
.overflow-hidden {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#loading {
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999999;
    background: #fff;
}

.cssload-loader {
    display: block;
    margin: -15px auto auto -15px;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    border: 4px solid #6bbf00;
    animation: cssload-loader 1.9s infinite ease;
    -o-animation: cssload-loader 1.9s infinite ease;
    -ms-animation: cssload-loader 1.9s infinite ease;
    -webkit-animation: cssload-loader 1.9s infinite ease;
    -moz-animation: cssload-loader 1.9s infinite ease;
}

.cssload-loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #6bbf00;
    animation: cssload-loader-inner 1.9s infinite ease-in;
    -o-animation: cssload-loader-inner 1.9s infinite ease-in;
    -ms-animation: cssload-loader-inner 1.9s infinite ease-in;
    -webkit-animation: cssload-loader-inner 1.9s infinite ease-in;
    -moz-animation: cssload-loader-inner 1.9s infinite ease-in;
}

@keyframes cssload-loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes cssload-loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

@-o-keyframes cssload-loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

@-ms-keyframes cssload-loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

@-webkit-keyframes cssload-loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

@-moz-keyframes cssload-loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

/*
* === OWL CAROUSEL ===
*/
.owl-carousel {
    overflow-x: hidden;
}

    .owl-carousel .owl-controls .owl-buttons div {
        height: 50px;
        width: 40px;
        line-height: 50px;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        margin: 0;
        font-size: 16px;
        padding: 0;
        text-align: center;
        background: #fff;
        color: #50514f;
        opacity: 1;
        -webkit-transition: color ease-in-out .3s, background ease-in-out .3s;
        -o-transition: color ease-in-out .3s, background ease-in-out .3s;
        transition: color ease-in-out .3s, background ease-in-out .3s;
    }

    .owl-carousel.owl-small .owl-controls .owl-buttons div {
        height: 40px;
        width: 30px;
        line-height: 40px;
        font-size: 14px;
    }

    .owl-carousel .owl-controls .owl-buttons div:hover,
    .owl-carousel .owl-controls.clickable .owl-buttons div:hover {
        background: #6bbf00;
        color: #fff;
    }

    .owl-carousel .owl-controls .owl-buttons div {
        position: absolute;
        top: 50%;
        margin-top: -38px;
    }

    .owl-carousel .owl-controls .owl-buttons .owl-next,
    .owl-carousel .owl-controls .owl-buttons .owl-prev {
        -webkit-transition: left ease-in-out .2s, right ease-in-out .2s;
        -o-transition: left ease-in-out .2s, right ease-in-out .2s;
        transition: left ease-in-out .2s, right ease-in-out .2s;
    }

    .owl-carousel .owl-controls .owl-buttons .owl-prev {
        left: -40px;
    }

    .owl-carousel .owl-controls .owl-buttons .owl-next {
        right: -40px;
    }

    .owl-carousel:hover .owl-controls .owl-buttons .owl-prev {
        left: 0px;
    }

    .owl-carousel:hover .owl-controls .owl-buttons .owl-next {
        right: 0px;
    }

    .owl-carousel .owl-controls {
        text-align: center;
        margin-top: 0;
    }

        .owl-carousel .owl-controls .owl-page {
            top: -30px;
            position: relative;
        }

            .owl-carousel .owl-controls .owl-page span {
                display: block;
                width: 10px;
                height: 10px;
                opacity: 1;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                background: transparent;
                -webkit-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0.5);
                -moz-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0.5);
                box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0.5);
            }

            .owl-carousel .owl-controls .owl-page.active span {
                background: #fff;
            }

        .owl-carousel .owl-controls.clickable .owl-page:hover span {
            -webkit-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
            -moz-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
            box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,1);
        }

/*
* === SOCIAL ICONS ===
*/
.social-icons {
    position: relative;
    font-size: 0;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
        border: 1px solid #fff;
        border: 1px solid rgba(255,255,255,0.2);
        text-align: center;
        line-height: 38px;
        color: #fff;
        background: transparent;
        font-size: 14px;
        padding: 0;
        -webkit-transition: color ease .2s, border-color ease .2s, background ease .2s;
        -o-transition: color ease .2s, border-color ease .2s, background ease .2s;
        transition: color ease .2s, border-color ease .2s, background ease .2s;
    }

        .social-icons a:hover {
            background: #fff;
            color: #6bbf00;
        }

.wrapper {
    background: #fff;
    margin: 0 auto;
}

    .wrapper.boxed {
        width: 100%;
        padding: 0 15px;
        max-width: 1200px;
    }

footer .instagram-static-gallery:before,
footer .instagram-static-gallery:after,
.post-detail-gallery-tiled:before,
.post-detail-gallery-tiled:after,
.widget.related-post.grid-style:before,
.widget.related-post.grid-style:after,
.widget.related-post li:before,
.widget.related-post li:after,
.comments li:before,
.comments li:after,
.post-meta-box:before,
.post-meta-box:after,
.featured.featured-tiled:before,
.featured.featured-tiled:after,
.instagram-gallery-widget:before,
.instagram-gallery-widget:after,
.comments-widget li:before,
.comments-widget li:after,
.post-list-widget li:before,
.post-list-widget li:after,
.archive-list li:before,
.archive-list li:after,
.archive-list:before,
.archive-list:after,
header:before,
header:after {
    display: table;
    content: "";
}

footer .instagram-static-gallery:after,
.post-detail-gallery-tiled:after,
.widget.related-post.grid-style:after,
.widget.related-post li:after,
.comments li:after,
.post-meta-box:after,
.featured.featured-tiled:after,
.instagram-gallery-widget:after,
.comments-widget li:after,
.post-list-widget li:after,
.archive-list li:after,
.archive-list:after,
header:after {
    clear: both;
}


/*
* === FIXED NAV ===
*/
header.main-nav-fixed .main-nav {
    -webkit-transition: top ease .3s, left ease .3s, right ease .3s, background ease .3s;
    -o-transition: top ease .3s, left ease .2s, right ease .3s, background ease .3s;
    transition: top ease .3s, left ease .3s, right ease .3s, background ease .3s;
}

header.main-nav-fixed.do-fixed .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

header.main-nav-fixed.scroll-down .main-nav {
    top: -60px;
}

header.main-nav-fixed.scroll-down.disable-scroll-down .main-nav {
    top: 0px;
}

header.main-nav-fixed .logo.add-margin {
    margin-bottom: 120px;
}

header.hero-image.main-nav-fixed.do-fixed .main-nav {
    background: #33363b;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(255,255,255,0);
    -moz-box-shadow: 0px 0px 0px 1px rgba(255,255,255,0);
    box-shadow: 0px 0px 0px 1px rgba(255,255,255,0);
}

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > a {
        color: #aeaeae;
    }

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li.active > a {
        color: #ffffff;
    }

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li:hover {
        background: transparent;
    }

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li > ul > li > a:hover,
    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li:hover > a,
    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li > a:hover {
        background: #f9f9f9;
    }

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li.active.has-children:after,
    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li.has-children:after {
        color: #aeaeae;
    }

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li.active.has-children:after {
        color: #fff;
    }

header.hero-image.main-nav-fixed.do-fixed .main-navul > li > ul > li.has-children:after {
    color: #aeaeae;
}

header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li:hover > ul > li {
    background: transparent;
}

    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li:hover > ul > li > ul > li.active > a,
    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li:hover > ul > li.active > a,
    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li.active > a:hover,
    header.hero-image.main-nav-fixed.do-fixed .main-nav ul > li > ul > li.active > a {
        color: #fff;
        background: #6bbf00;
    }

/*
* === HEADER ===
*/
header {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    z-index: 15;
    background: #fff;
}

    header .header-inner {
        position: relative;
        z-index: 3;
    }

    header .social-icons {
        position: absolute;
        left: 0;
        top: 60px;
    }

        header .social-icons a {
            color: #33363b;
            border-color: #e0e0e0;
        }

            header .social-icons a:hover {
                color: #fff;
                border-color: transparent;
                background: #6bbf00;
            }

    header .logo {
        background: #6bbf00;
        display: inline-block;
        padding: 20px;
        margin-bottom: 60px;
        position: relative;
        -webkit-transition: top ease .2s;
        -o-transition: top ease .2s;
        transition: top ease .2s;
        text-decoration: none;
        color: #fff;
    }

        header .logo.has-site-description {
            padding: 10px 20px;
        }

        header .logo.logo-transparent {
            background: transparent;
            top: 30px;
            color: #33363b;
        }

        header .logo h1 {
            line-height: 1;
            padding: 0;
            line-height: 60px;
            height: 60px;
            margin: 0;
            font-family: 'Aladin', cursive;
            font-weight: normal;
            font-size: 42px;
            display: none;
        }

        header .logo p {
            font-family: 'Droid Serif', serif;
            font-weight: normal;
            font-size: 12px;
            display: none;
            height: 20px;
            padding: 0;
            margin: 0;
            line-height: 20px;
            position: relative;
            top: -6px;
            color: #fff;
        }

        header .logo.logo-text.disable-site-description p {
            display: none;
        }

        header .logo img {
            height: 60px;
        }

        header .logo.logo-text h1,
        header .logo.logo-text p {
            display: block;
        }

        header .logo.logo-text img {
            display: none;
        }

        header .logo.logo-transparent p {
            color: #777677;
        }

    header.hero-image .logo.logo-transparent p,
    header.hero-image .logo p,
    header.hero-image .logo.logo-transparent,
    header.hero-image .logo {
        color: #fff;
    }

    header .search-form {
        width: 275px;
        position: absolute;
        right: 0;
        top: 60px;
        padding: 0;
    }

        header .search-form .form-group {
            margin: 0;
            padding: 0;
            position: relative;
        }

        header .search-form .form-control {
            height: 40px;
            font-family: 'Droid Serif', serif;
            font-size: 12px;
            -webkit-transition: background ease .2s;
            -o-transition: background ease .2s;
            transition: background ease .2s;
            background: #fff;
        }

.search-form .search-icon {
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    padding: 0;
    line-height: 40px;
    width: 40px;
    z-index: 2;
    background: transparent;
    color: #aeaeae;
}

    .search-form .search-icon:active {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
    }

    .search-form .search-icon:hover {
        -webkit-box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0);
        -moz-box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0);
        box-shadow: inset 0px 50px 0px 0px rgba(0,0,0,0);
    }

header .hero-content {
    display: none;
}

.wrapper.boxed header.hero-image {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 40px;
}

header.hero-image {
    margin-bottom: 60px;
    background: rgba(0,0,0,0.7);
    background: -moz-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(246,246,246,0) 50%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.7)), color-stop(50%, rgba(246,246,246,0)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(246,246,246,0) 50%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(246,246,246,0) 50%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,0.7) 0%, rgba(246,246,246,0) 50%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(246,246,246,0) 50%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#ffffff', GradientType=0 );
}

.parallax-mirror:after {
    background: transparent;
    background: rgba(0,0,0,0.5);
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
}

header.hero-image .social-icons a {
    color: #fff;
    border-color: #fff;
    border-color: rgba(255,255,255,0.2);
}

    header.hero-image .social-icons a:hover {
        background: #fff;
        color: #6bbf00;
        border-color: #fff;
        border-color: rgba(255,255,255,1);
    }

header.hero-image .search-form .form-control {
    border-color: #fff;
    border-color: rgba(255,255,255,0.2);
    background: transparent;
}

    header.hero-image .search-form .form-control:focus {
        border-color: #fff;
        border-color: rgba(255,255,255,1);
        background: #fff;
    }

header.hero-image .hero-content {
    padding: 110px 0;
    text-align: left;
    color: #fff;
    display: block;
}

    header.hero-image .hero-content h1 {
        padding: 0;
        margin: 0;
        font-size: 80px;
        line-height: 1.2;
    }

header.hero-image .main-nav {
    background: transparent;
    -webkit-box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.3);
    -moz-box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.3);
    box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.3);
}

    header.hero-image .main-nav ul > li > a {
        color: #fff;
    }

    header.hero-image .main-nav ul > li:hover {
        background: #000;
        background: rgba(0,0,0,0.4);
    }

    header.hero-image .main-nav ul > li > ul > li > ul > li > a:hover,
    header.hero-image .main-nav ul > li > ul > li:hover > a,
    header.hero-image .main-nav ul > li > ul > li > a:hover {
        background: #f9f9f9;
    }

    header.hero-image .main-nav ul > li.active.has-children:after,
    header.hero-image .main-nav ul > li.has-children:after {
        color: #fff;
    }

    header.hero-image .main-nav ul > li > ul > li.has-children:after {
        color: #aeaeae;
    }

    header.hero-image .main-nav ul > li:hover > ul > li {
        background: #fff;
    }

        header.hero-image .main-nav ul > li:hover > ul > li > ul > li.active > a,
        header.hero-image .main-nav ul > li > ul > li:hover > ul > li.active > a,
        header.hero-image .main-nav ul > li > ul > li.active > a:hover,
        header.hero-image .main-nav ul > li > ul > li.active > a {
            color: #fff;
            background: #6bbf00;
        }

.sidebar-menu-button,
.search-button {
    position: absolute;
    z-index: 9;
    width: 60px;
    height: 60px;
    background: #33363b;
    right: 0;
    top: 0;
    cursor: pointer;
    color: #fff;
    color: rgba(255,255,255,0.6);
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    display: none;
    visibility: hidden;
    font-family: 'FontAwesome';
}

.sidebar-menu-button {
    right: auto;
    left: 0;
    z-index: 7;
}

.search-button:after {
    content: "\f002";
}

.search-button.close-search:after {
    content: "\f00d";
}

.sidebar-menu-button:after {
    content: "\f0c9";
}

.body-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    content: "";
    z-index: 11;
    display: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility ease-in-out .3s, opacity ease-in-out .3s;
    -o-transition: visibility ease-in-out .3s, opacity ease-in-out .3s;
    transition: visibility ease-in-out .3s, opacity ease-in-out .3s;
}

/*
* === MAIN NAV ===
*/
.main-nav {
    background: #33363b;
    display: block;
    position: relative;
    z-index: 12;
}

    .main-nav li.has-children .toggle-submenu {
        position: absolute;
        height: 60px;
        left: 0;
        right: 0;
        background: transparent;
        content: "";
        z-index: 3;
        cursor: pointer;
        display: none;
    }

    .main-nav li ul li.has-children .toggle-submenu {
        height: 40px;
    }

    .main-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
        font-size: 0;
    }

        .main-nav ul > li {
            display: inline-block;
            font-size: 14px;
            text-transform: uppercase;
            position: relative;
            font-family: 'Roboto Condensed', sans-serif;
            -webkit-transition: color ease .2s, background ease .2s;
            -o-transition: color ease .2s, background ease .2s;
            transition: color ease .2s, background ease .2s;
        }

            .main-nav ul > li > a {
                color: #aeaeae;
                text-decoration: none;
                display: block;
                height: 60px;
                line-height: 60px;
                padding: 0 20px;
                position: relative;
            }

                .main-nav ul > li:hover a,
                .main-nav ul > li.active > a,
                .main-nav ul > li > a:hover,
                .main-nav ul > li > a:focus {
                    color: #fff;
                }

                    .main-nav ul > li.active > a:before {
                        position: absolute;
                        bottom: 0;
                        width: 20px;
                        height: 5px;
                        background: #6bbf00;
                        content: "";
                        z-index: 1;
                        left: 50%;
                        margin-left: -10px;
                    }

            .main-nav ul > li.has-children > a {
                padding-right: 25px;
            }

            .main-nav ul > li.has-children:after {
                font-family: 'FontAwesome';
                content: "\f107";
                position: absolute;
                width: 10px;
                line-height: 60px;
                right: 10px;
                top: 0;
                text-align: center;
                color: #aeaeae;
                z-index: 3;
                font-size: 12px;
            }

            .main-nav ul > li.active.has-children:after,
            .main-nav ul > li.active.has-children:hover:after {
                color: #fff;
            }

            .main-nav ul > li > ul {
                position: absolute;
                top: 100%;
                width: 250px;
                left: 0;
                text-align: left;
                background: #fff;
                -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.15);
                -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.15);
                box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.15);
                display: none;
            }

            .main-nav ul > li:hover > ul {
                display: block;
            }

            .main-nav ul > li > ul > li > ul {
                top: 0px;
                left: 100%;
                display: none;
            }

            .main-nav ul > li > ul > li:hover > ul {
                display: block;
            }

            .main-nav ul > li > ul > li {
                width: auto;
                display: block;
                font-family: 'Roboto', sans-serif;
                text-transform: none;
                font-size: 13px;
            }

                .main-nav ul > li > ul > li.has-children:after {
                    line-height: 40px;
                    content: "\f105";
                    color: #aeaeae;
                }

                .main-nav ul > li:hover > ul > li > ul > li > a,
                .main-nav ul > li:hover > ul > li > a,
                .main-nav ul > li > ul > li > a {
                    color: #aeaeae;
                    height: 40px;
                    line-height: 40px;
                    -webkit-transition: color ease .2s, background ease .2s;
                    -o-transition: color ease .2s, background ease .2s;
                    transition: color ease .2s, background ease .2s;
                }

                    .main-nav ul > li > ul > li > ul > li > a:hover,
                    .main-nav ul > li > ul > li:hover > a,
                    .main-nav ul > li > ul > li > a:hover {
                        background: #f9f9f9;
                        color: #777677;
                    }

                .main-nav ul > li:hover > ul > li > ul > li.active > a,
                .main-nav ul > li > ul > li:hover > ul > li.active > a,
                .main-nav ul > li > ul > li.active > a:hover,
                .main-nav ul > li > ul > li.active > a {
                    color: #fff;
                    background: #6bbf00;
                }

/*
* === TYPOGRAPHY ===
*/
.dropcap {
    float: left;
    font-size: 75px;
    line-height: 1;
    color: #33363b;
    font-family: 'Droid Serif', serif;
    margin-top: 5px;
    margin-right: 10px;
    padding: 0;
    line-height: 65px;
}


/*
* === MAIN CONTENT ===
*/
.content {
    padding: 0 0 30px 0;
}

.boxed-heading {
    border: 1px solid #eeeeee;
    position: relative;
    padding: 30px 20px;
    margin-bottom: 40px;
    text-align: center;
}

.post-heading .post-title,
.page-heading {
    color: #33363b;
    font-size: 30px;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
}

    .post-heading .post-title:after,
    .page-heading:after {
        position: absolute;
        left: 50%;
        margin-left: -15px;
        height: 5px;
        content: "";
        background: #6bbf00;
        bottom: 0;
        width: 30px;
    }

.boxed-heading .small-heading {
    height: 20px;
    text-align: center;
    position: relative;
    padding: 0;
    margin: 0;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #33363b;
}

    .boxed-heading .small-heading span {
        background: #fff;
        padding: 0 50px;
        line-height: 20px;
    }

.boxed-heading h2 {
    padding: 0;
    margin: 0;
    font-size: 30px;
    color: #6bbf00;
}

.boxed-heading p {
    padding: 0;
    margin: 20px 0 0 0;
}

.large-heading {
    font-size: 24px;
    color: #33363b;
    padding: 0;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    position: relative;
    height: 30px;
    line-height: 30px;
}

    .large-heading:before {
        position: absolute;
        height: 1px;
        background: #f4f4f4;
        left: 0;
        right: 0;
        content: "";
        top: 14px;
    }

    .large-heading span {
        background: #fff;
        padding-left: 50px;
        padding-right: 50px;
        position: relative;
        z-index: 3;
    }

.category {
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 5px;
}

    .category a {
        margin: 0 5px;
    }

.post-title,
.post-meta {
    font-family: 'Droid Serif', serif;
    margin: 0;
    padding: 0;
}

    .post-title a {
        color: #33363b;
    }

    .post-meta span {
        color: #aeaeae;
        margin: 0 5px;
    }

    .post-meta a {
        color: #aeaeae;
    }

        .post-meta a:hover {
            color: #777677;
        }

.post-likes {
    background: #6bbf00;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 0;
    z-index: 4;
    width: 40px;
    height: 65px;
    left: 50%;
    margin-left: -20px;
}

    .post-likes a {
        padding: 10px 5px 5px;
        color: #fff;
        display: block;
        text-decoration: none;
    }

        .post-likes a:hover {
            color: #fff;
        }

    .post-likes .fa {
        font-size: 16px;
    }

    .post-likes .fa,
    .post-likes span {
        display: block;
        padding: 3px 0;
        margin: 0;
    }

/*
* === NOT FOUND PAGE ===
*/
.page-wrapper {
    padding: 100px 0;
    text-align: center;
}

    .page-wrapper h1 {
        font-size: 60px;
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        color: #6bbf00;
        margin-bottom: 50px;
    }

    .page-wrapper p {
        font-family: 'Droid Serif', serif;
        margin-bottom: 50px;
    }

    .page-wrapper .search-widget .form-control {
        background: #f9f9f9;
    }

        .page-wrapper .search-widget .form-control:focus {
            background: #fff;
        }

/*
* === SINGLE POST ===
*/
.post-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .post-heading .post-title {
        margin-bottom: 0;
    }

.featured-img-detail {
    position: relative;
    overflow: hidden;
    height: 400px;
    z-index: 2;
    margin-bottom: 0;
    background: #999999;
}

    .featured-img-detail.featured-page-img {
        margin-bottom: 30px;
    }

    .featured-img-detail img {
        position: absolute;
        width: 100%;
        margin: auto;
        top: -9999px;
        right: -9999px;
        bottom: -9999px;
        left: -9999px;
    }

.post-detail-gallery-slideshow {
    margin-bottom: -25px;
}

    .post-detail-gallery-slideshow .item {
        height: 400px;
        background: #999999;
        position: relative;
        overflow: hidden;
        z-index: 3;
    }

    .featured-img-detail.fullwidth-post,
    .post-detail-gallery-slideshow.fullwidth-post .item {
        height: 540px;
    }

    .post-detail-gallery-slideshow .item img {
        width: 100%;
    }

.post-detail-gallery-tiled {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .post-detail-gallery-tiled li {
        float: left;
        width: 33.33333333%;
        padding-bottom: 33.33333333%;
        position: relative;
        overflow: hidden;
        z-index: 2;
        background: #999999;
    }

        .post-detail-gallery-tiled li img {
            position: absolute;
            margin: auto;
            height: 100%;
            top: -9999px;
            right: -9999px;
            bottom: -9999px;
            left: -9999px;
        }

.post-detail-post-format {
    position: relative;
    overflow: hidden;
    height: auto;
    z-index: 2;
    background: #999999;
    padding: 30px;
    text-align: center;
}

    .post-detail-post-format:after {
        position: absolute;
        background: transparent;
        background: rgba(0,0,0,0.4);
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
    }

    .post-detail-post-format img {
        position: absolute;
        margin: auto;
        width: 100%;
        top: -9999px;
        right: -9999px;
        bottom: -9999px;
        left: -9999px;
    }

    .post-detail-post-format .caption {
        position: relative;
        z-index: 3;
    }

    .post-detail-post-format .content-title {
        line-height: 1.4;
        font-size: 30px;
        color: #fff;
        color: rgba(255,255,255,0.6);
        -webkit-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease;
        margin-bottom: 20px;
    }

    .post-detail-post-format .content-title {
        font-style: italic;
    }

        .post-detail-post-format .content-title:before {
            content: '"';
        }

        .post-detail-post-format .content-title:after {
            content: '"';
        }

        .post-detail-post-format .content-title a {
            color: #fff;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            -webkit-transition: color 0.2s ease;
            -o-transition: color 0.2s ease;
            transition: color 0.2s ease;
        }

    .post-detail-post-format:hover .content-title,
    .post-detail-post-format:hover .content-title a {
        color: #fff;
        color: rgba(255,255,255,1);
    }

    .post-detail-post-format .content-subtitle {
        color: #fff;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        margin-bottom: 30px;
    }

        .post-detail-post-format .content-subtitle:before {
            content: "- ";
        }

        .post-detail-post-format .content-subtitle:after {
            content: " -";
        }

.post-detail-video-embed {
    position: relative;
    padding-bottom: 56.20%;
    height: 0;
}

    .post-detail-video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        margin: 0;
        padding: 0;
    }

.post-detail-soundcloud-embed {
    height: 200px;
}

    .post-detail-soundcloud-embed iframe {
        width: 100%;
        border: none;
        margin: 0;
        padding: 0;
        height: 100%;
    }

/*
* === CONTACT FORM ===
*/
.contact-form .form-group {
    margin-bottom: 30px;
}

    .contact-form .form-group textarea.form-control {
        height: 220px;
    }

/*
* === POST METABOX ===
*/
.post-meta-box {
    background: #f4f4f4;
    height: 60px;
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
    padding-right: 10px;
    color: #aeaeae;
}

    .post-meta-box .post-likes {
        width: 60px;
        height: 60px;
        left: 0;
        margin-left: 0;
    }

        .post-meta-box .post-likes a {
            padding: 6px 5px 5px;
        }

        .post-meta-box .post-likes .fa,
        .post-meta-box .post-likes span {
            padding: 2px 0;
        }

        .post-meta-box .post-likes .fa {
            font-size: 24px;
        }

    .post-meta-box .share-icons,
    .post-meta-box .post-meta {
        float: left;
        font-family: 'Droid Serif', serif;
        line-height: 60px;
    }

        .post-meta-box .post-meta span {
            padding: 0 10px;
        }

        .post-meta-box .post-meta a:hover {
            color: #33363b;
        }

    .post-meta-box .share-icons {
        float: right;
    }

        .post-meta-box .share-icons a {
            color: #33363b;
            text-decoration: none;
            padding: 0 8px;
        }

            .post-meta-box .share-icons a:hover {
                color: #6bbf00;
            }

.post-detail-tags {
    font-size: 12px;
    padding: 15px 0;
    font-family: 'Droid Serif', serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

    .post-detail-tags p {
        padding: 0;
        margin: 0;
    }

    .post-detail-tags span a {
        color: #33363b;
        text-transform: lowercase;
        font-style: italic;
        margin: 0 2px;
    }

        .post-detail-tags span a:after {
            content: " ,";
        }

    .post-detail-tags span:last-child a:after {
        content: "";
    }

.post-meta-box.bottom-meta-box {
    padding-left: 0px;
    background: #ffffff;
    margin-top: 30px;
}

    .post-meta-box.bottom-meta-box .share-icons {
        float: left;
    }

/*
* === POST COMMENTS ===
*/
.comments {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 50px;
}

    .comments li {
        padding: 15px 0;
    }

        .comments li .widget.post-comment-form {
            margin-left: 100px;
            padding: 40px 20px 20px 20px;
            margin-bottom: 40px;
            margin-top: 30px;
        }

            .comments li .widget.post-comment-form .form-horizontal .btn-main {
                bottom: -45px;
            }

        .comments li .children {
            padding-left: 100px;
            margin-top: 30px;
            margin-bottom: 0;
        }

        .comments li .comment-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: relative;
            float: left;
            overflow: hidden;
            z-index: 2;
            background: #999999;
        }

            .comments li .comment-avatar img {
                height: 80px;
                position: absolute;
                margin: auto;
                top: -9999px;
                right: -9999px;
                bottom: -9999px;
                left: -9999px;
            }

        .comments li .comment-content {
            position: relative;
            margin-left: 100px;
        }

            .comments li .comment-content .name {
                color: #33363b;
                font-weight: 700;
                padding: 0;
                margin: 0 0 5px 0;
            }

                .comments li .comment-content .name a {
                    color: #33363b;
                }

            .comments li .comment-content .date-time {
                color: #aeaeae;
                text-transform: uppercase;
                font-family: 'Roboto Condensed', sans-serif;
                font-size: 12px;
                padding: 0;
                margin: 0 0 10px 0;
            }

            .comments li .comment-content p {
                font-size: 12px;
            }

            .comments li .comment-content .btn {
                font-size: 12px;
                background: #f4f4f4;
                line-height: 25px;
                height: 25px;
                padding: 0 20px;
                color: #33363b;
            }

/*
* === COMMENT FORM ===
*/
.widget.post-comment-form {
    padding: 40px 30px 30px 30px;
    margin-bottom: 65px;
}

    .widget.post-comment-form .form-horizontal {
        position: relative;
        padding-bottom: 30px;
    }

    .widget.post-comment-form .form-group .form-control {
        margin-bottom: 15px;
    }

    .widget.post-comment-form .form-group textarea.form-control {
        height: 220px;
    }

    .widget.post-comment-form .form-horizontal .btn-main {
        width: 200px;
        position: absolute;
        bottom: -55px;
        left: 50%;
        margin-left: -100px;
    }

/*
* === PREV NEXT POSTS ===
*/
.widget.prev-next-posts {
    padding: 20px;
    margin-bottom: 50px;
}

    .widget.prev-next-posts:last-child {
        margin-bottom: 50px;
    }

    .widget.prev-next-posts.post-list-widget li,
    .widget.prev-next-posts.post-list-widget li:last-child {
        margin-bottom: 0;
    }

    .widget.prev-next-posts.post-list-widget.next-post li .featured-img {
        float: right;
    }

    .widget.prev-next-posts.post-list-widget.next-post li .caption {
        margin-left: 0;
        margin-right: 100px;
        text-align: right;
    }

/*
* === POST AUTHOR BOX ===
*/
.widget.post-author.about-widget {
    text-align: left;
    padding-bottom: 0px;
    margin-bottom: 50px;
    padding: 30px;
    padding-left: 140px;
    background: #33363b;
    border: none;
}

.post-author.about-widget .avatar {
    left: 0;
    margin-left: 0px;
    margin-bottom: 20px;
    position: absolute;
    left: 30px;
    top: 30px;
}

.post-author.about-widget .name {
    font-size: 20px;
    color: #fff;
}

.post-author.about-widget .subtitle {
    color: #6bbf00;
    margin-bottom: 10px;
}

.post-author.about-widget p {
    color: #aeaeae;
    font-size: 13px;
}

.post-author.about-widget .social-icon-links {
    padding: 0;
    border: none;
    position: relative;
    bottom: auto;
    background: transparent;
    left: auto;
    right: auto;
    height: auto;
    margin-top: 20px;
}

    .post-author.about-widget .social-icon-links a {
        color: #aeaeae;
        line-height: 1.2;
    }

        .post-author.about-widget .social-icon-links a:first-child {
            padding-left: 0;
        }

        .post-author.about-widget .social-icon-links a:hover {
            color: #fff;
        }

/*
* === RELATED POSTS ===
*/
.widget.related-post {
    padding-top: 40px;
}

    .widget.related-post li {
        margin-bottom: 30px;
    }

        .widget.related-post li:last-child {
            margin-bottom: 0px;
        }

        .widget.related-post li .featured-img {
            position: relative;
            width: 230px;
            height: 160px;
            overflow: hidden;
            z-index: 2;
            background: #999999;
            float: left;
        }

            .widget.related-post li .featured-img img {
                position: absolute;
                margin: auto;
                width: 280px;
                top: -9999px;
                right: -9999px;
                bottom: -9999px;
                left: -9999px;
            }

        .widget.related-post li .caption {
            position: relative;
            margin-left: 260px;
        }

            .widget.related-post li .caption .post-title {
                font-size: 20px;
                position: relative;
                padding-bottom: 20px;
                margin-bottom: 15px;
            }

                .widget.related-post li .caption .post-title a:hover {
                    text-decoration: none;
                }

                .widget.related-post li .caption .post-title:before {
                    bottom: 0;
                    height: 5px;
                    width: 30px;
                    left: 0;
                    margin: auto;
                    content: "";
                    position: absolute;
                    background: #f4f4f4;
                    -webkit-transition: width 0.2s ease;
                    -o-transition: width 0.2s ease;
                    transition: width 0.2s ease;
                }

                .widget.related-post li .caption .post-title:hover:before {
                    width: 100%;
                }

                .widget.related-post li .caption .post-title:after {
                    bottom: 0;
                    height: 5px;
                    width: 30px;
                    left: 0;
                    content: "";
                    position: absolute;
                    background: #6bbf00;
                }

            .widget.related-post li .caption .date {
                text-transform: uppercase;
                font-family: 'Roboto Condensed', sans-serif;
                color: #aeaeae;
            }

    .widget.related-post.grid-style ul {
        text-align: center;
        margin-left: -10px;
        margin-right: -10px;
    }

    .widget.related-post.grid-style li {
        width: 33.33333333%;
        float: left;
        padding: 0 10px;
    }

        .widget.related-post.grid-style li:nth-last-child(-n+3) {
            margin-bottom: 0;
        }

        .widget.related-post.grid-style li .featured-img {
            width: 100%;
            float: none;
            height: 150px;
            margin-bottom: 15px;
        }

        .widget.related-post.grid-style li .caption p {
            display: none;
            visibility: hidden;
        }

            .widget.related-post.grid-style li .caption p.date {
                display: block;
                visibility: visible;
                margin: 0 0 5px 0;
            }

        .widget.related-post.grid-style li .caption {
            margin-left: 0;
        }

            .widget.related-post.grid-style li .caption .post-title {
                font-size: 16px;
            }

                .widget.related-post.grid-style li .caption .post-title:before {
                    display: none;
                    visibility: hidden;
                }

                .widget.related-post.grid-style li .caption .post-title:after {
                    left: 50%;
                    margin-left: -15px;
                }

/*
* === TILED FEATURED POSTS ===
*/
.featured {
    margin-bottom: 50px;
}

    .featured.featured-tiled {
        background: #ddd;
    }

        .featured.featured-tiled .item {
            float: left;
            width: 25%;
            height: 280px;
            display: block;
            background: #000;
            margin: 0;
            padding: 0;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

            .featured.featured-tiled .item .post-likes {
                background: #000;
                background: rgba(0,0,0,0.2);
                -webkit-transition: background ease .3s;
                -o-transition: background ease .3s;
                transition: background ease .3s;
            }

                .featured.featured-tiled .item .post-likes a {
                    color: #fff;
                    color: rgba(255,255,255,0.6);
                    -webkit-transition: color ease .3s;
                    -o-transition: color ease .3s;
                    transition: color ease .3s;
                }

            .featured.featured-tiled .item:hover .post-likes {
                background: #6bbf00;
            }

                .featured.featured-tiled .item:hover .post-likes a {
                    color: #fff;
                }

            .featured.featured-tiled .item .caption {
                position: absolute;
                z-index: 3;
                bottom: 30px;
                left: 20px;
                right: 20px;
                padding: 20px 10px 25px 10px;
                text-align: center;
                border: 1px solid #fff;
                border: 1px solid rgba(255,255,255,0.3);
                border-bottom: none;
            }

                .featured.featured-tiled .item .caption .post-title {
                    font-size: 16px;
                    line-height: 1.4;
                }

                    .featured.featured-tiled .item .caption .post-title a {
                        color: #fff;
                    }

                .featured.featured-tiled .item .caption .date {
                    color: #fff;
                    color: rgba(255,255,255,0.6);
                    position: absolute;
                    bottom: -10px;
                    left: 0;
                    right: 0;
                    height: 20px;
                    padding: 0;
                    line-height: 20px;
                    margin: 0;
                    display: block;
                    text-transform: uppercase;
                    font-family: 'Roboto Condensed', sans-serif;
                }

                    .featured.featured-tiled .item .caption .date:after,
                    .featured.featured-tiled .item .caption .date:before {
                        position: absolute;
                        content: "";
                        height: 1px;
                        background: #fff;
                        background: rgba(255,255,255,0.3);
                        left: 0;
                        width: 60px;
                        bottom: 10px;
                    }

                    .featured.featured-tiled .item .caption .date:after {
                        right: 0;
                        left: auto;
                    }

            .featured.featured-tiled .item img {
                height: 100%;
                position: absolute;
                margin: auto;
                top: -9999px;
                right: -9999px;
                bottom: -9999px;
                left: -9999px;
                opacity: 0.7;
            }

            .featured.featured-tiled .item:nth-child(2) {
                width: 50%;
                height: 560px;
            }

                .featured.featured-tiled .item:nth-child(2) .caption {
                    bottom: 30px;
                    left: 30px;
                    right: 30px;
                    padding: 30px 20px 35px 20px;
                }

                    .featured.featured-tiled .item:nth-child(2) .caption .post-title {
                        font-size: 24px;
                        padding-bottom: 20px;
                        position: relative;
                        line-height: 1.2;
                    }

                        .featured.featured-tiled .item:nth-child(2) .caption .post-title:after {
                            position: absolute;
                            width: 30px;
                            height: 5px;
                            left: 50%;
                            margin-left: -15px;
                            bottom: 0;
                            content: "";
                            background: #6bbf00;
                        }

                    .featured.featured-tiled .item:nth-child(2) .caption .date:after,
                    .featured.featured-tiled .item:nth-child(2) .caption .date:before {
                        width: 170px;
                    }

    /*
* === SLIDESHOW FEATURED POSTS ===
*/
    .featured.featured-slideshow .item {
        height: 540px;
        background: #999999;
        position: relative;
        overflow: hidden;
        z-index: 3;
    }

        .featured.featured-slideshow .item:after {
            position: absolute;
            content: "";
            background: transparent;
            background: rgba(0,0,0,0.4);
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        .featured.featured-slideshow .item .caption {
            position: absolute;
            z-index: 3;
            bottom: 60px;
            left: 200px;
            right: 200px;
            padding: 100px 40px 60px 40px;
            text-align: center;
            border: 1px solid #fff;
            border: 1px solid rgba(255,255,255,0.3);
            border-bottom: none;
        }

            .featured.featured-slideshow .item .caption .post-title {
                font-size: 36px;
                line-height: 1.2;
                position: relative;
                padding-bottom: 20px;
            }

                .featured.featured-slideshow .item .caption .post-title:after {
                    position: absolute;
                    width: 30px;
                    height: 5px;
                    left: 50%;
                    margin-left: -15px;
                    bottom: 0;
                    content: "";
                    background: #6bbf00;
                }

                .featured.featured-slideshow .item .caption .post-title a {
                    color: #fff;
                }

            .featured.featured-slideshow .item .caption .date {
                color: #fff;
                color: rgba(255,255,255,0.6);
                position: absolute;
                bottom: -10px;
                left: 0;
                right: 0;
                height: 20px;
                padding: 0;
                line-height: 20px;
                margin: 0;
                display: block;
                text-transform: uppercase;
                font-family: 'Roboto Condensed', sans-serif;
            }

                .featured.featured-slideshow .item .caption .date:after,
                .featured.featured-slideshow .item .caption .date:before {
                    position: absolute;
                    content: "";
                    height: 1px;
                    background: #fff;
                    background: rgba(255,255,255,0.3);
                    left: 0;
                    width: 280px;
                    bottom: 10px;
                }

                .featured.featured-slideshow .item .caption .date:after {
                    right: 0;
                    left: auto;
                }

        .featured.featured-slideshow .item img {
            width: 100%;
            position: absolute;
            margin: auto;
            top: -9999px;
            right: -9999px;
            bottom: -9999px;
            left: -9999px;
        }

    .featured.featured-slideshow .owl-controls {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

        .featured.featured-slideshow .owl-controls .owl-pagination {
            background: #000;
            display: table-row;
            margin: 0;
            padding: 0;
        }

        .featured.featured-slideshow .owl-controls .owl-page {
            top: 0px;
            position: relative;
            display: block;
            list-style: none;
            display: table-cell;
            text-align: center;
        }

            .featured.featured-slideshow .owl-controls .owl-page span {
                height: 6px;
                width: 100%;
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                border-radius: 0px;
                background: #33363b;
                margin: 0;
                -webkit-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,1);
                -moz-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,1);
                box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,1);
            }

            .featured.featured-slideshow .owl-controls .owl-page:last-child span {
                -webkit-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,0);
                -moz-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,0);
                box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,0);
            }

            .featured.featured-slideshow .owl-controls.clickable .owl-page.active:hover span,
            .featured.featured-slideshow .owl-controls .owl-page.active span {
                background: #6bbf00;
                -webkit-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,0);
                -moz-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,0);
                box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,0);
            }

        .featured.featured-slideshow .owl-controls.clickable .owl-page:hover span {
            -webkit-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,1);
            -moz-box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,1);
            box-shadow: inset -1px 0px 0px 0px rgba(174,174,174,1);
        }

        .featured.featured-slideshow .owl-controls .owl-buttons div {
            margin-top: -28px;
        }

/*
* === CAROUSEL FEATURED POSTS ===
*/
.featured-carousel-wrapper {
    margin-right: -15px;
    margin-left: -15px;
    position: relative;
}

    .featured-carousel-wrapper:before,
    .featured-carousel-wrapper:after {
        position: absolute;
        width: 15px;
        background: #fff;
        z-index: 9;
        top: 0;
        bottom: 0;
        content: "";
        left: 0;
    }

    .featured-carousel-wrapper:after {
        left: auto;
        right: 0;
    }

.featured.featured-carousel {
    margin-bottom: 30px;
}

    .featured.featured-carousel .item {
        height: 240px;
        background: #999999;
        position: relative;
        overflow: hidden;
        z-index: 3;
        margin: 0 15px;
    }

        .featured.featured-carousel .item:after {
            position: absolute;
            content: "";
            background: transparent;
            background: rgba(0,0,0,0.4);
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        .featured.featured-carousel .item .caption {
            position: absolute;
            z-index: 3;
            bottom: 30px;
            left: 20px;
            right: 20px;
            padding: 20px 10px 10px 10px;
            text-align: center;
            border: 1px solid #fff;
            border: 1px solid rgba(255,255,255,0.3);
            border-bottom: none;
        }

            .featured.featured-carousel .item .caption .post-title {
                font-size: 18px;
                line-height: 1.2;
                position: relative;
                padding-bottom: 20px;
            }

                .featured.featured-carousel .item .caption .post-title a {
                    color: #fff;
                }

            .featured.featured-carousel .item .caption .date {
                color: #fff;
                color: rgba(255,255,255,0.6);
                position: absolute;
                bottom: -10px;
                left: 0;
                right: 0;
                height: 20px;
                padding: 0;
                line-height: 20px;
                margin: 0;
                display: block;
                text-transform: uppercase;
                font-family: 'Roboto Condensed', sans-serif;
            }

                .featured.featured-carousel .item .caption .date:after,
                .featured.featured-carousel .item .caption .date:before {
                    position: absolute;
                    content: "";
                    height: 1px;
                    background: #fff;
                    background: rgba(255,255,255,0.3);
                    left: 0;
                    width: 60px;
                    bottom: 10px;
                }

                .featured.featured-carousel .item .caption .date:after {
                    right: 0;
                    left: auto;
                }

        .featured.featured-carousel .item img {
            width: 120%;
            position: absolute;
            margin: auto;
            top: -9999px;
            right: -9999px;
            bottom: -9999px;
            left: -9999px;
        }

    .featured.featured-carousel .owl-controls {
        margin-top: 10px;
    }

        .featured.featured-carousel .owl-controls .owl-page {
            top: 0px;
        }

            .featured.featured-carousel .owl-controls .owl-page span {
                -webkit-border-radius: 0px;
                -moz-border-radius: 0px;
                border-radius: 0px;
                -webkit-box-shadow: inset 0px 0px 0px 2px #e0e0e0;
                -moz-box-shadow: inset 0px 0px 0px 2px #e0e0e0;
                box-shadow: inset 0px 0px 0px 2px #e0e0e0;
            }

            .featured.featured-carousel .owl-controls .owl-page.active span {
                background: #33363b;
                -webkit-box-shadow: inset 0px 0px 0px 2px #33363b;
                -moz-box-shadow: inset 0px 0px 0px 2px #33363b;
                box-shadow: inset 0px 0px 0px 2px #33363b;
            }

        .featured.featured-carousel .owl-controls.clickable .owl-page:hover span {
            -webkit-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0);
            -moz-box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0);
            box-shadow: inset 0px 0px 0px 2px rgba(255,255,255,0);
            background: #e0e0e0;
        }


/*
* === ARCHIVE LIST ===
*/
.archive-list {
    position: relative;
    padding: 0;
    list-style: none;
}

    .archive-list li {
        padding: 0;
        margin: 0 0 40px 0;
        position: relative;
    }

        .archive-list li .featured-img {
            overflow: hidden;
            position: relative;
            z-index: 2;
            background: #999999;
        }

        .archive-list li.post-format .featured-img:before {
            position: absolute;
            background: transparent;
            background: rgba(0,0,0,0);
            z-index: 2;
            content: "";
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            -webkit-transition: background ease .3s;
            -o-transition: background ease .3s;
            transition: background ease .3s;
        }

        .archive-list li:hover.post-format .featured-img:before {
            background: transparent;
            background: rgba(0,0,0,0.2);
            pointer-events: none;
        }

        .archive-list li.post-format .featured-img:after {
            position: absolute;
            width: 60px;
            height: 60px;
            background: transparent;
            z-index: 3;
            content: "";
            left: 0;
            text-align: center;
            line-height: 60px;
            left: 50%;
            margin-left: -30px;
            top: 50%;
            margin-top: -30px;
            -webkit-transition: background ease .3s;
            -o-transition: background ease .3s;
            transition: background ease .3s;
            color: #fff;
            font-size: 20px;
            font-family: 'FontAwesome';
            border-radius: 50%;
        }

        .archive-list li:hover.post-format .featured-img:after {
            background: #6bbf00;
        }

        .archive-list li.post-format.gallery-post .featured-img:after {
            content: "\f03e";
        }

        .archive-list li.post-format.video-post .featured-img:after {
            content: "\f04b";
            padding-left: 3px;
        }

        .archive-list li.post-format.audio-post .featured-img:after {
            content: "\f001";
            padding-right: 3px;
        }

        .archive-list li .featured-img img {
            top: -9999px;
            right: -9999px;
            bottom: -9999px;
            left: -9999px;
            margin: auto;
            position: absolute;
            width: 100%;
            z-index: 1;
        }

        .archive-list li .caption {
            padding: 20px 0;
        }

            .archive-list li .caption .post-title {
                position: relative;
                padding: 0 0 20px;
                margin-bottom: 20px;
                overflow: hidden;
            }

                .archive-list li .caption .post-title a:hover {
                    text-decoration: none;
                }

                .archive-list.list-style.large-post-first li:first-child .caption .post-title:hover:before,
                .archive-list.grid-style.large-post-first li:first-child .caption .post-title:hover:before,
                .archive-list li .caption .post-title:hover:before {
                    width: 100%;
                }

                .archive-list.list-style.large-post-first li:first-child .caption .post-title:before,
                .archive-list.grid-style.large-post-first li:first-child .caption .post-title:before,
                .archive-list li .caption .post-title:before {
                    bottom: 0;
                    height: 5px;
                    width: 30px;
                    left: -9999px;
                    right: -9999px;
                    margin: auto;
                    content: "";
                    position: absolute;
                    background: #f4f4f4;
                    -webkit-transition: width 0.2s ease;
                    -o-transition: width 0.2s ease;
                    transition: width 0.2s ease;
                }

                .archive-list.list-style.large-post-first li:first-child .caption .post-title:after,
                .archive-list.grid-style.large-post-first li:first-child .caption .post-title:after,
                .archive-list li .caption .post-title:after {
                    bottom: 0;
                    height: 5px;
                    width: 30px;
                    left: 50%;
                    margin-left: -15px;
                    content: "";
                    position: absolute;
                    background: #6bbf00;
                }

            .archive-list.list-style.large-post-first li:first-child .caption .post-meta,
            .archive-list.grid-style.large-post-first li:first-child .caption .post-meta,
            .archive-list li .caption .post-meta {
                margin: 15px 0;
                font-size: 0;
                padding: 0;
                height: 30px;
                overflow: hidden;
                position: relative;
            }

                .archive-list.list-style.large-post-first li:first-child .caption .post-meta:before,
                .archive-list.grid-style.large-post-first li:first-child .caption .post-meta:before,
                .archive-list li .caption .post-meta:before {
                    left: 0;
                    right: 0;
                    content: "";
                    top: 14px;
                    height: 1px;
                    background: #eeeeee;
                    position: absolute;
                    z-index: 0;
                    display: block;
                }

                .archive-list.list-style.large-post-first li:first-child .caption .post-meta span,
                .archive-list.grid-style.large-post-first li:first-child .caption .post-meta span,
                .archive-list li .caption .post-meta span {
                    background: #fff;
                    margin: 0;
                    font-size: 14px;
                    line-height: 30px;
                    height: 30px;
                    display: inline-block;
                    padding: 0 8px;
                    position: relative;
                    z-index: 2;
                }

                    .archive-list.list-style.large-post-first li:first-child .caption .post-meta span:after,
                    .archive-list.grid-style.large-post-first li:first-child .caption .post-meta span:after,
                    .archive-list li .caption .post-meta span:after {
                        content: "/";
                        margin-left: 15px;
                    }

                    .archive-list.list-style.large-post-first li:first-child .caption .post-meta span:last-child:after,
                    .archive-list.grid-style.large-post-first li:first-child .caption .post-meta span:last-child:after,
                    .archive-list li .caption .post-meta span:last-child:after {
                        content: "";
                        margin-left: 0;
                    }

                    .archive-list.list-style.large-post-first li:first-child .caption .post-meta span:first-child,
                    .archive-list.grid-style.large-post-first li:first-child .caption .post-meta span:first-child,
                    .archive-list li .caption .post-meta span:first-child {
                        padding-left: 40px;
                    }

                    .archive-list.list-style.large-post-first li:first-child .caption .post-meta span:last-child,
                    .archive-list.grid-style.large-post-first li:first-child .caption .post-meta span:last-child,
                    .archive-list li .caption .post-meta span:last-child {
                        padding-right: 40px;
                    }

                .archive-list li .caption .post-meta .fa {
                    margin-right: 5px;
                }

        /*
* === ARCHIVE POST FORMAT ===
*/
        .archive-list.large-post-first.grid-style li:first-child.post-format.quote-post .featured-img,
        .archive-list.large-post-first.grid-style li:first-child.post-format.link-post .featured-img,
        .archive-list.large-post-first li:first-child.post-format.quote-post .featured-img,
        .archive-list.large-post-first li:first-child.post-format.link-post .featured-img,
        .archive-list li.post-format.quote-post .featured-img,
        .archive-list li.post-format.link-post .featured-img {
            width: 100%;
            height: auto;
            float: none;
            position: relative;
        }

            .archive-list.large-post-first.grid-style li:first-child.post-format.quote-post .featured-img img,
            .archive-list.large-post-first.grid-style li:first-child.post-format.link-post .featured-img img,
            .archive-list.large-post-first li:first-child.post-format.quote-post .featured-img img,
            .archive-list.large-post-first li:first-child.post-format.link-post .featured-img img,
            .archive-list li.post-format.quote-post .featured-img img,
            .archive-list li.post-format.link-post .featured-img img {
                width: 100% !important;
            }

    .archive-list.grid-style li.post-format.quote-post .featured-img img,
    .archive-list.grid-style li.post-format.link-post .featured-img img {
        height: 100% !important;
        width: auto !important;
    }

    .archive-list.grid-style li.post-format.quote-post .featured-img,
    .archive-list.grid-style li.post-format.link-post .featured-img {
        height: 100%;
    }

        .archive-list.grid-style li.post-format.quote-post .featured-img img,
        .archive-list.grid-style li.post-format.link-post .featured-img img {
            height: 100%;
            width: auto;
        }

    .archive-list.large-post-first li:first-child.post-format.quote-post .caption,
    .archive-list.large-post-first li:first-child.post-format.link-post .caption,
    .archive-list li.post-format.quote-post .caption,
    .archive-list li.post-format.link-post .caption {
        display: none;
    }

    .archive-list li.post-format.quote-post .featured-img:after,
    .archive-list li.post-format.link-post .featured-img:after {
        display: none;
    }

    .archive-list li.post-format.quote-post .featured-img:before,
    .archive-list li.post-format.link-post .featured-img:before,
    .archive-list li:hover.post-format.quote-post .featured-img:before,
    .archive-list li:hover.post-format.link-post .featured-img:before {
        background: transparent;
        background: rgba(0,0,0,0.4);
    }

    .archive-list.classic-style li.post-format.quote-post,
    .archive-list.classic-style li.post-format.link-post,
    .archive-list.list-style li.post-format.quote-post,
    .archive-list.list-style li.post-format.link-post {
        margin-bottom: 60px;
    }

    .archive-list li.post-format.quote-post .post-format-content,
    .archive-list li.post-format.link-post .post-format-content {
        display: table;
        visibility: visible;
    }

    .archive-list li.post-format .post-format-content {
        padding: 30px;
        padding-bottom: 50px;
        z-index: 3;
        text-align: center;
        width: auto;
        visibility: hidden;
        display: none;
        position: relative;
        display: block;
        width: 100%;
    }

        .archive-list li.post-format .post-format-content .inner {
            display: table-cell;
            vertical-align: middle;
        }

        .archive-list.large-post-first.grid-style li:first-child.post-format .post-format-content .content-title,
        .archive-list li.post-format .post-format-content .content-title {
            max-height: 120px;
            line-height: 1.4;
            overflow: hidden;
            font-size: 30px;
            color: #fff;
            color: rgba(255,255,255,0.6);
            -webkit-transition: color 0.2s ease;
            -o-transition: color 0.2s ease;
            transition: color 0.2s ease;
            margin-bottom: 20px;
        }

    .archive-list.grid-style li.post-format .post-format-content .content-title {
        max-height: 110px;
        line-height: 1.4;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .archive-list li.post-format.quote-post .post-format-content .content-title {
        font-style: italic;
    }

        .archive-list li.post-format.quote-post .post-format-content .content-title:before {
            content: '"';
        }

        .archive-list li.post-format.quote-post .post-format-content .content-title:after {
            content: '"';
        }

    .archive-list li.post-format .post-format-content .content-title a {
        color: #fff;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        -webkit-transition: color 0.2s ease;
        -o-transition: color 0.2s ease;
        transition: color 0.2s ease;
    }

    .archive-list li:hover.post-format .post-format-content .content-title a {
        color: #fff;
        color: rgba(255,255,255,1);
    }

    .archive-list li.post-format .post-format-content .content-subtitle {
        color: #fff;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        margin-bottom: 30px;
    }

        .archive-list li.post-format .post-format-content .content-subtitle:before {
            content: "- ";
        }

        .archive-list li.post-format .post-format-content .content-subtitle:after {
            content: " -";
        }

    /*
* === CLASSIC ARCHIVE LIST ===
*/
    .archive-list.classic-style {
        text-align: center;
    }

        .archive-list.list-style.large-post-first li:first-child .featured-img,
        .archive-list.grid-style.large-post-first li:first-child .featured-img,
        .archive-list.classic-style li .featured-img {
            width: 100%;
            display: block;
            height: 400px;
            float: none;
        }

        .archive-list.list-style.large-post-first li:first-child .caption .post-title,
        .archive-list.grid-style.large-post-first li:first-child .caption .post-title,
        .archive-list.classic-style li .caption .post-title {
            font-size: 30px;
        }

    /*
* === LIST STYLE ARCHIVE ===
*/
    .archive-list.list-style {
        text-align: left;
    }

        .archive-list.list-style li .featured-img {
            width: 280px;
            height: 240px;
            display: block;
            float: left;
        }

            .archive-list.list-style li .featured-img img {
                width: 400px;
            }

        .archive-list.list-style li .caption {
            position: relative;
            margin-left: 310px;
            padding: 0;
        }

            .archive-list.list-style li .caption .category a {
                margin: 0 10px 0 0;
            }

            .archive-list.list-style li .caption .post-title {
                font-size: 24px;
            }

                .archive-list.list-style li .caption .post-title:before {
                    left: 0;
                    right: auto;
                }

                .archive-list.list-style li .caption .post-title:after {
                    left: 0;
                    margin-left: 0;
                }

            .archive-list.list-style li .caption .post-meta {
                margin: 15px 0;
                height: auto;
                overflow: visible;
            }

                .archive-list.list-style li .caption .post-meta:before {
                    display: none;
                }

                .archive-list.list-style li .caption .post-meta span:first-child {
                    padding-left: 0px;
                }

                .archive-list.list-style li .caption .post-meta span:last-child {
                    padding-right: 0px;
                }

    /*
* === GRID ARCHIVE LIST ===
*/
    .archive-list.grid-style {
        text-align: center;
        margin-left: -15px;
        margin-right: -15px;
    }

        .archive-list.grid-style li {
            width: 50%;
            float: left;
            padding: 0 15px;
        }

        .archive-list.grid-style.grid-full-width li {
            width: 33.33333333%;
        }

        .archive-list.grid-style li .caption {
            padding: 20px 0 0 0;
        }

        .archive-list.grid-style li .featured-img {
            width: 100%;
            display: block;
            height: 220px;
        }

        .archive-list.grid-style li .caption .post-title {
            font-size: 20px;
        }

        .archive-list.grid-style li .caption .post-meta {
            margin-bottom: 0px;
        }

            .archive-list.grid-style li .caption .post-meta span {
                font-size: 12px;
                padding: 0 4px;
            }

                .archive-list.grid-style li .caption .post-meta span:after {
                    margin-left: 8px;
                }

                .archive-list.grid-style li .caption .post-meta span:last-child:after {
                    content: "";
                    margin-left: 0;
                }

                .archive-list.grid-style li .caption .post-meta span:first-child {
                    padding-left: 20px;
                }

                .archive-list.grid-style li .caption .post-meta span:last-child {
                    padding-right: 20px;
                }

        /*
* === ARCHIVE LIST LARGE POST FIRST ===
*/
        .archive-list.list-style.large-post-first li:first-child,
        .archive-list.grid-style.large-post-first li:first-child {
            text-align: center;
            width: 100%;
        }

            .archive-list.list-style.large-post-first li:first-child .caption,
            .archive-list.grid-style.large-post-first li:first-child .caption {
                margin-left: 0;
                padding: 20px 0;
                display: block;
            }

            .archive-list.list-style.large-post-first li:first-child .featured-img img,
            .archive-list.grid-style.large-post-first li:first-child .featured-img img {
                width: 100%;
            }

            .archive-list.list-style.large-post-first li:first-child .caption .category a,
            .archive-list.grid-style.large-post-first li:first-child .caption .category a {
                margin: 0 5px;
            }

/*
* === SIDEBAR ===
*/
.sidebar {
    padding: 0 0 30px 0;
    position: relative;
}

.widget {
    border: 1px solid #eeeeee;
    position: relative;
    padding: 30px 20px 20px 20px;
    margin-bottom: 40px;
}

    .widget:last-child {
        margin-bottom: 0px;
    }

    .widget ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .widget li {
        position: relative;
    }

    .widget .widget-heading {
        color: #33363b;
        background: #fff;
        padding: 0 10px;
        height: 20px;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 700;
        font-weight: bold;
        position: absolute;
        font-size: 14px;
        line-height: 20px;
        margin: 0;
        width: 220px;
        top: -10px;
        left: 50%;
        margin-left: -110px;
    }

/*
* === ADS BANNER WIDGET ===
*/
.ads-banner-widget {
    text-align: center;
    display: block;
}

    .ads-banner-widget img {
        width: auto;
        max-width: 100%;
    }

    .ads-banner-widget a {
        margin-bottom: 30px;
        display: block;
    }

        .ads-banner-widget a:last-child {
            margin-bottom: 10px;
        }

/*
* === ABOUT WIDGET ===
*/
.about-widget {
    text-align: center;
    position: relative;
    padding-bottom: 45px;
    margin-bottom: 75px;
}

    .about-widget .avatar {
        width: 100px;
        height: 100px;
        position: relative;
        background: #999999;
        border-radius: 50%;
        overflow: hidden;
        z-index: 2;
        left: 50%;
        margin-left: -40px;
        margin-bottom: 20px;
    }

        .about-widget .avatar img {
            height: 100px;
            position: absolute;
            margin: auto;
            top: -99999px;
            right: -99999px;
            bottom: -99999px;
            left: -99999px;
        }

    .about-widget .name {
        font-size: 20px;
        color: #33363b;
        padding: 0;
        margin: 0 0 5px 0;
        font-family: 'Droid Serif', serif;
    }

    .about-widget .subtitle {
        text-transform: uppercase;
        color: #6bbf00;
        font-size: 12px;
        margin-bottom: 20px;
        font-family: 'Roboto Condensed', sans-serif;
    }

    .about-widget p {
        font-size: 12px;
    }

    .about-widget .social-icon-links {
        padding: 15px;
        border: 1px solid #eeeeee;
        position: absolute;
        bottom: -25px;
        height: 50px;
        background: #fff;
        left: 30px;
        right: 30px;
    }

        .about-widget .social-icon-links a {
            color: #aeaeae;
            line-height: 20px;
            padding: 0 7px;
        }

            .about-widget .social-icon-links a:hover {
                color: #6bbf00;
            }

/*
* === INSTAGRAM GALLERY WIDGET ===
*/
.instagram-gallery-widget .images-wrapper {
    margin-left: -5px;
    margin-right: -5px;
}

.instagram-gallery-widget .item {
    width: 25%;
    float: left;
    padding-bottom: 25%;
    position: relative;
    z-index: 2;
}

    .instagram-gallery-widget .item .item-inner {
        position: absolute;
        top: 5px;
        right: 5px;
        bottom: 5px;
        left: 5px;
        overflow: hidden;
    }

    .instagram-gallery-widget .item img {
        height: 100%;
        position: absolute;
        margin: auto;
        top: -99999px;
        right: -99999px;
        bottom: -99999px;
        left: -99999px;
        z-index: 1;
    }

/*
* === TWITTER WIDGET ===
*/
.twitter-widget li {
    padding: 10px 0;
    position: relative;
    margin: 0;
}

    .twitter-widget li .caption {
        position: relative;
        top: 0;
        left: auto;
        right: 0;
        margin: 0 0 0 25px;
    }

        .twitter-widget li .caption p {
            padding: 0;
            margin: 0;
            font-size: 12px;
            font-family: 'Droid Serif', serif;
        }

        .twitter-widget li .caption .time {
            font-family: 'Roboto Condensed', sans-serif;
            color: #c2c2c2;
            font-size: 10px;
            text-transform: uppercase;
            margin-top: 5px;
            font-weight: 400;
        }

    .twitter-widget li:before {
        position: absolute;
        left: 0;
        top: 15px;
        font-family: 'FontAwesome';
        color: #ebebeb;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        content: "\f099";
        transition: color 0.3s ease;
    }

    .twitter-widget li:hover:before,
    .twitter-widget li:hover:after {
        color: #6bbf00;
    }

/*
* === TAGS WIDGET ===
*/
.tagcloud {
    font-size: 0px;
}

.tag a {
    font-size: 12px;
    padding: 0 15px;
    height: 35px;
    display: inline-block;
    line-height: 33px;
    background: #fff;
    color: #777677;
    border: 1px solid #ececec;
    text-transform: lowercase;
    margin: 0 10px 10px 0;
    -webkit-transition: border-color ease .3s, color ease .3s, background ease .3s;
    -o-transition: border-color ease .3s, color ease .3s, background ease .3s;
    transition: border-color ease .3s, color ease .3s, background ease .3s;
}

    .tag a:active,
    .tag a:focus,
    .tag a:hover {
        background: #6bbf00;
        color: #fff;
        text-decoration: none;
        border-color: #6bbf00;
    }

/*
* === TEXT LIST (CATEGORY,PLAIN LIST, ARCHIVE) WIDGET ===
*/
.widget-text-list li {
    display: block;
    border-bottom: 1px solid #f4f4f4;
    padding: 15px 0;
}

    .widget-text-list li:last-child {
        border-bottom: none;
    }

    .widget-text-list li span {
        min-width: 30px;
        height: 30px;
        padding: 0 10px;
        position: absolute;
        right: 0;
        top: 10px;
        text-align: center;
        line-height: 30px;
        font-weight: 700;
        border: 1px solid #e0e0e0;
        font-size: 12px;
        border-radius: 15px;
        color: #6bbf00;
        -webkit-transition: border-color ease .2s, color ease .2s, background ease .2s;
        -o-transition: border-color ease .2s, color ease .2s, background ease .2s;
        transition: border-color ease .2s, color ease .2s, background ease .2s;
    }

    .widget-text-list li a {
        color: #777677;
    }

    .widget-text-list li:hover a {
        color: #6bbf00;
        text-decoration: none;
    }

    .widget-text-list li:hover span {
        color: #fff;
        background: #6bbf00;
        border-color: #6bbf00;
    }

.category-widget .widget-text-list li {
    text-transform: uppercase;
    font-size: 12px;
}

.archive-widget .widget-text-list li strong {
    color: #6bbf00;
    margin-left: 5px;
}


/*
* === SUBSCRIBE WIDGET ===
*/
.subscribe-widget {
    text-align: center;
    padding-bottom: 35px;
    margin-bottom: 75px;
}

    .subscribe-widget p {
        margin-bottom: 30px;
    }

    .subscribe-widget .form-group {
        position: relative;
    }

    .subscribe-widget .form-control {
        padding-left: 50px;
        background: #fff;
    }

    .subscribe-widget .form-group .fa {
        position: absolute;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        color: #aeaeae;
        left: 0;
        top: 0;
    }

    .subscribe-widget .form-group-btn {
        position: absolute;
        width: 240px;
        bottom: -25px;
        left: 50%;
        margin-left: -120px;
    }


/*
* === POST LIST WIDGET ===
*/
.post-list-widget li {
    margin-bottom: 30px;
}

.post-list-widget.large-post-first li:first-child {
    overflow: hidden;
}

.post-list-widget li:last-child {
    margin-bottom: 10px;
}

.post-list-widget.large-post-first.with-numbering li:first-child .post-likes,
.post-list-widget li .post-likes {
    display: none;
    visibility: hidden;
}

.post-list-widget.large-post-first.no-thumbnail li:first-child .post-likes,
.post-list-widget.large-post-first li:first-child .post-likes {
    display: block;
    visibility: visible;
}

.post-list-widget.large-post-first.no-thumbnail li:first-child .featured-img,
.post-list-widget.large-post-first li:first-child .featured-img {
    float: none;
    width: 100%;
    height: 220px;
    display: block;
    visibility: visible;
}

    .post-list-widget.large-post-first.no-thumbnail li:first-child .featured-img:after,
    .post-list-widget.large-post-first li:first-child .featured-img:after {
        position: absolute;
        content: "";
        z-index: 3;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #000;
        background: rgba(0,0,0,0.4);
    }

    .post-list-widget.large-post-first.no-thumbnail li:first-child .featured-img img,
    .post-list-widget.large-post-first li:first-child .featured-img img {
        width: 100%;
    }

.post-list-widget.large-post-first.no-thumbnail li:first-child .caption,
.post-list-widget.large-post-first li:first-child .caption {
    margin-left: 0;
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px 10px 20px 10px;
    text-align: center;
    border: 1px solid #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-bottom: none;
}

    .post-list-widget.large-post-first.no-thumbnail li:first-child .caption .post-title,
    .post-list-widget.large-post-first li:first-child .caption .post-title {
        font-size: 18px;
    }

        .post-list-widget.large-post-first.no-thumbnail li:first-child .caption .post-title a,
        .post-list-widget.large-post-first li:first-child .caption .post-title a {
            color: #fff;
        }

    .post-list-widget.large-post-first.no-thumbnail li:first-child .caption .date,
    .post-list-widget.large-post-first li:first-child .caption .date {
        color: #fff;
        color: rgba(255,255,255,0.6);
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 20px;
        padding: 0;
        line-height: 20px;
        margin: 0;
        display: block;
    }

        .post-list-widget.large-post-first.no-thumbnail li:first-child .caption .date:after,
        .post-list-widget.large-post-first li:first-child .caption .date:after,
        .post-list-widget.large-post-first.no-thumbnail li:first-child .caption .date:before,
        .post-list-widget.large-post-first li:first-child .caption .date:before {
            position: absolute;
            content: "";
            height: 1px;
            background: #fff;
            background: rgba(255,255,255,0.3);
            left: 0;
            width: 80px;
            bottom: 10px;
        }

        .post-list-widget.large-post-first.no-thumbnail li:first-child .caption .date:after,
        .post-list-widget.large-post-first li:first-child .caption .date:after {
            right: 0;
            left: auto;
        }

.post-list-widget.large-post-first.with-numbering li:first-child .featured-img,
.post-list-widget.with-numbering li .featured-img,
.post-list-widget.no-thumbnail li .featured-img {
    display: none;
    visibility: hidden;
}

.post-list-widget.no-thumbnail li .caption {
    margin-left: 0;
}

.post-list-widget li .featured-img {
    float: left;
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #999999;
}

    .post-list-widget li .featured-img img {
        width: 150px;
        position: absolute;
        margin: auto;
        top: -9999px;
        right: -9999px;
        bottom: -9999px;
        left: -9999px;
        z-index: 1;
    }

.post-list-widget li .caption {
    margin-left: 100px;
}

    .post-list-widget li .caption .date {
        font-size: 12px;
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        margin-bottom: 3px;
        color: #6bbf00;
    }

    .post-list-widget li .caption .post-title {
        font-size: 14px;
        line-height: 1.5;
    }

.post-list-widget.large-post-first.with-numbering li:first-child {
    overflow: visible;
}

.post-list-widget.with-numbering {
    counter-reset: my-badass-counter;
}

    .post-list-widget.with-numbering li:before {
        content: counter(my-badass-counter);
        counter-increment: my-badass-counter;
        position: absolute;
        left: 0;
        top: 0;
        font-family: 'Droid Serif', serif;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        -webkit-transition: background ease-in-out .3s;
        -o-transition: background ease-in-out .3s;
        transition: background ease-in-out .3s;
        background: #ebebeb;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
    }

.post-list-widget.large-post-first.with-numbering li:first-child .caption .date {
    padding: 0;
    margin: 0;
    margin-bottom: 3px;
    color: #6bbf00;
    position: relative;
    height: auto;
    bottom: auto;
    left: auto;
    right: auto;
}

.post-list-widget.large-post-first.with-numbering li:first-child .caption,
.post-list-widget.with-numbering li .caption {
    margin-left: 70px;
    position: relative;
    border: none;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 0;
    text-align: left;
}

    .post-list-widget.large-post-first.with-numbering li:first-child .caption .post-title {
        font-size: 14px;
    }

        .post-list-widget.large-post-first.with-numbering li:first-child .caption .post-title a {
            color: #33363b;
        }

    .post-list-widget.large-post-first.with-numbering li:first-child .caption .date:after,
    .post-list-widget.large-post-first.with-numbering li:first-child .caption .date:before {
        display: none;
    }

.post-list-widget.with-numbering li:hover:before {
    background: #6bbf00;
}


/*
* === COMMENTS WIDGET ===
*/
.comments-widget li {
    padding: 15px 0;
    border-bottom: 1px solid #f4f4f4;
}

    .comments-widget li:last-child {
        border-bottom: none;
        padding-bottom: 0px;
    }

    .comments-widget li:first-child {
        padding-top: 10px;
    }

        .comments-widget li:first-child .caption .date {
            top: 10px;
        }

    .comments-widget li .comment-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        overflow: hidden;
        float: left;
    }

        .comments-widget li .comment-avatar img {
            height: 50px;
            position: absolute;
            top: -9999px;
            right: -9999px;
            bottom: -9999px;
            left: -9999px;
            margin: auto;
            z-index: 1;
        }

    .comments-widget li .caption {
        margin-left: 70px;
        font-size: 13px;
    }

        .comments-widget li .caption .name {
            text-transform: uppercase;
            font-family: 'Roboto Condensed', sans-serif;
            padding: 0;
            margin: 0 0 5px 0;
            font-weight: 700;
            color: #33363b;
        }

        .comments-widget li .caption .date {
            color: #aeaeae;
            font-size: 12px;
            font-family: 'Droid Serif', serif;
            position: absolute;
            top: 20px;
            right: 0;
        }

        .comments-widget li .caption a {
            text-decoration: none;
            color: #aeaeae;
        }

            .comments-widget li .caption a .comment {
                color: #777677;
                font-style: italic;
                display: block;
            }

                .comments-widget li .caption a .comment:before {
                    content: '" ';
                }

                .comments-widget li .caption a .comment:after {
                    content: ' "';
                }

            .comments-widget li .caption a .commented-post {
                color: #33363b;
                font-family: 'Droid Serif', serif;
            }

    .comments-widget li:hover .caption .name {
        color: #6bbf00;
    }

    .comments-widget li .caption a:hover .commented-post {
        text-decoration: underline;
    }


/*
* === SEARCH WIDGET ===
*/
.search-widget .form-group {
    position: relative;
    margin: 0;
}

.search-widget .form-control {
    padding-right: 50px;
    background: #fff;
    background: #fff;
}

.search-widget .search-icon {
    height: 50px;
    line-height: 50px;
    width: 50px;
}



/*
* === TAB WIDGET ===
*/
.tabs-widget {
    padding: 0;
}

    .tabs-widget .tab-boxed {
        margin-bottom: 0;
        border: none;
    }

    .tabs-widget .nav-tabs {
        background: #fff;
        -webkit-box-shadow: 0px 1px 0px 0px #eeeeee;
        -moz-box-shadow: 0px 1px 0px 0px #eeeeee;
        box-shadow: 0px 1px 0px 0px #eeeeee;
    }

        .tabs-widget .nav-tabs > li {
            margin-bottom: 0px;
            text-align: center;
            width: 33.33333333%;
            display: block;
            font-family: 'Roboto Condensed', sans-serif;
            text-transform: uppercase;
            font-weight: 700;
            position: relative;
        }

            .tabs-widget .nav-tabs > li > a {
                color: #aeaeae;
                height: 50px;
                line-height: 52px;
                padding: 0;
            }

                .tabs-widget .nav-tabs > li > a:hover {
                    color: #6bbf00;
                    background: transparent;
                }

            .tabs-widget .nav-tabs > li.active > a,
            .tabs-widget .nav-tabs > li.active > a:hover,
            .tabs-widget .nav-tabs > li.active > a:focus {
                background: #fff;
                color: #33363b;
                -webkit-box-shadow: 0px 1px 0px 0px rgba(80,81,79,0);
                -moz-box-shadow: 0px 1px 0px 0px rgba(80,81,79,0);
                box-shadow: 0px 1px 0px 0px rgba(80,81,79,0);
            }

            .tabs-widget .nav-tabs > li.active:after {
                position: absolute;
                width: 30px;
                height: 5px;
                left: 50%;
                margin-left: -15px;
                bottom: -1px;
                background: #6bbf00;
                content: "";
                z-index: 2;
            }

    .tabs-widget .tab-boxed .tab-content .tab-pane {
        padding: 20px;
    }


/*
* === PAGINATION ===
*/
.prev-next,
.centered-numbering-pagination {
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

    .centered-numbering-pagination .pagination {
        width: 100%;
    }

        .centered-numbering-pagination .pagination li a {
            margin: 0 5px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            padding: 0;
            border: none;
            color: #33363b;
            float: none;
            display: inline-block;
        }

        .centered-numbering-pagination .pagination li:first-child a {
            float: left;
        }

            .prev-next ul.pager li.previous a .fa,
            .centered-numbering-pagination .pagination li:first-child a .fa {
                margin-right: 10px;
            }

        .centered-numbering-pagination .pagination li:last-child a {
            float: right;
        }

            .prev-next ul.pager li.next a .fa,
            .centered-numbering-pagination .pagination li:last-child a .fa {
                margin-left: 10px;
            }

        .prev-next ul.pager li:hover a,
        .centered-numbering-pagination .pagination li:hover a {
            background: #fff;
            color: #6bbf00;
        }

        .prev-next ul.pager li.active a,
        .centered-numbering-pagination .pagination li.active a {
            background: #fff;
            color: #6bbf00;
            -webkit-box-shadow: inset 0px 0px 0px 1px rgba(224,224,224,1);
            -moz-box-shadow: inset 0px 0px 0px 1px rgba(224,224,224,1);
            box-shadow: inset 0px 0px 0px 1px rgba(224,224,224,1);
        }

        .prev-next ul.pager li.disabled:focus a,
        .prev-next ul.pager li.disabled:hover a,
        .prev-next ul.pager li.disabled a,
        .centered-numbering-pagination .pagination li.disabled:focus a,
        .centered-numbering-pagination .pagination li.disabled:hover a,
        .centered-numbering-pagination .pagination li.disabled a {
            color: #c2c2c2;
        }

        .centered-numbering-pagination .pagination li:first-child a,
        .centered-numbering-pagination .pagination li:last-child a {
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            border-radius: 0px;
            width: auto;
            padding: 0 15px;
        }

    .prev-next ul.pager li a {
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        height: 40px;
        padding: 0 15px;
        line-height: 40px;
        border: none;
        color: #33363b;
    }

    .centered-numbering-pagination .pagination,
    .prev-next .pager {
        margin: 0;
    }

nav.centered-numbering-pagination,
nav.prev-next {
    margin: 20px 0 40px;
}



/*
* === FOOTER ===
*/
.wrapper.boxed footer {
    margin-left: -15px;
    margin-right: -15px;
}

footer {
    margin-top: 80px;
}

    footer .instagram-static-gallery {
        height: auto;
        position: relative;
    }

.wrapper footer .instagram-static-gallery .item {
    width: 12.5%;
    height: 0;
    padding-bottom: 12.5%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    float: left;
    display: block;
    background: #999999;
}

.wrapper.boxed footer .instagram-static-gallery .item {
    width: 16.66666667%;
    padding-bottom: 16.66666667%;
}

    .wrapper.boxed footer .instagram-static-gallery .item:nth-child(n+7) {
        display: none;
    }

footer .instagram-static-gallery .item img {
    width: 150%;
    margin: auto;
    position: absolute;
    top: -9999px;
    right: -9999px;
    bottom: -9999px;
    left: -9999px;
}

footer .footer-social-icons {
    background: #6bbf00;
    padding: 20px;
    text-align: center;
}

footer .social-icons a {
    margin-right: 0px;
    margin: 0 5px;
}

footer .footer-copy {
    padding: 30px 15px;
    text-align: center;
    color: #777677;
}

footer .footer-menu {
    padding: 0;
    margin: 0 0 20px 0;
    list-style: none;
}

    footer .footer-menu li {
        display: inline-block;
        padding: 10px;
        font-family: 'Roboto Condensed', sans-serif;
        text-transform: uppercase;
    }

        footer .footer-menu li a {
            color: #33363b;
        }

            footer .footer-menu li a:hover {
                color: #6bbf00;
            }

footer p {
    font-size: 12px;
}

/*
* === BACK TO TOP ===
*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    background: #6bbf00;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: opacity 0.2s ease, visibility 0.2s ease,background 0.2s ease;
    -o-transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
    transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

    .back-to-top:hover {
        background: #33363b;
        color: #fff;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

/*
* === HERO TEXT TYPE BLINKING CURSOR ===
*/
.typed-cursor {
    opacity: 1;
    font-weight: 100;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    -ms-animation: blink 0.7s infinite;
    -o-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*
* === BOXED DEMO ===
*/
.boxed-layout-menu {
    cursor: pointer;
}
