/*
Theme Name: Johnny
Theme URI: http://prthemes.net/johnny
Author: PRThemes
Author URI: http://prthemes.net
Description: Johnny is a responsive WordPress blog theme made for bloggers who loves to write about their adventures
Version: 1.3
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: white, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, post-formats, sticky-post, translation-ready
Text Domain: johnny

*/

body{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    background: #f1f1f1;
    padding: 40px 0 0;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
}

body.logo-top-page{
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
    line-height: 1.4;
}
.container{
    width: 1140px;
    margin: 0 auto;
}

.no-select{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

input, select, textarea{
    font-family: 'Merriweather', serif;
}

.table-box{
    position: relative;
    display: table;
    width: 100%;
    height: 100%;

}

.table-box .cell-box{
    display: table-cell;
    vertical-align: bottom;
padding: 10px;
    text-align: center;

}

img{
    max-width: 100%;
}

::selection {
    background: #4b6c4f; /* WebKit/Blink Browsers */
    color: #fff;
}
::-moz-selection {
    background: #baa378; /* Gecko Browsers */
    color: #fff;
}

@media (max-width: 1200px){
    .container{
        max-width: 940px;
        width: 100%;
    }
}

@media (max-width: 991px){
    .container{
        padding: 0 10px;
    }
}

/* ===== HEADER ===== */
#header{
    background: #fff;
    z-index: 1000;
    transform: translateZ(0);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
}

#main-menu{
    padding-left: 10px;
    float: left;
}

#main-menu li{
    float: left;
}

#main-menu a{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    line-height: 50px;
    color: #444;
    text-transform: uppercase;
    display: block;
    padding: 0 22px;
    transition: color .3s;
}

#main-menu a:hover,
#main-menu .current-menu-item > a{
    color: #baa378;
}

#main-menu li.menu-item-has-children{
    position: relative;
}

#main-menu > li.menu-item-has-children > ul.sub-menu{
    position: absolute;
    top: 100%;
    left: -10px;
    width: 180px;
    background: #fff;
    padding: 0 10px;
    display: none;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#main-menu > li.menu-item-has-children:hover > ul.sub-menu{
    display: block;
    -webkit-animation: fadeInUp .3s ease-in;
    -moz-animation: fadeInUp .3s ease-in;
    animation: fadeInUp .3s ease-in;
}

#main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children ul.sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    background: #fff;
    padding: 0 10px;
    display: none;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover ul.sub-menu{
    display: block;
    -webkit-animation: fadeInRight .3s ease-in;
    -moz-animation: fadeInRight .3s ease-in;
    animation: fadeInRight .3s ease-in;
}

#main-menu > li.menu-item-has-children > ul.sub-menu li{
    float: none;
    border-bottom: 1px dashed #ddd;
}

#main-menu > li.menu-item-has-children > ul.sub-menu li:last-child{
    border: 0;
}

#main-menu > li.menu-item-has-children > ul.sub-menu li a{
    line-height: 30px;
    text-transform: none;
}

#open-search-form,
#mobile-menu-trigger{
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    float: right;
    margin-right: 20px;
    background: #baa378;
    color: #fff;
    font-size: 14px;
    text-align: center;
    transition: background .3s, color .3s;
}

#mobile-menu-trigger{
    float: left;
    margin-left: 20px;
    display: none;
}

#open-search-form:hover,
#mobile-menu-trigger:hover{
    background: #baa378;
    color: #fff;
}

#mobile-menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100000;
    display: none;
}

#mobile-menu-overlay .overlay{
    background: #000;
    opacity: 0.7;
    position: absolute;
    width: 100%;
    height: 100%;
}

#mobile-menu-wrap{
    position: fixed;
    top: 0;
    left: -250px;
    z-index: 100000;
    height: 100%;
    width: 250px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    overflow: auto;
    overflow-x: hidden;
    transition: left .4s;
}

#mobile-menu-wrap.opened{
    left: 0;
}

#mobile-menu{
    position: relative;
    padding: 40px 0;
    height: 100%;
}

#close-mobile-menu{
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background: #444;
    text-align: center;
    cursor: pointer;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    display: block;
    z-index: 10;
}

#mobile-menu li{
    border-bottom: 1px solid #ddd;
}

#mobile-menu a{
    color: #444;
    font-size: 12px;
    display: block;
    padding: 0 40px 0 20px;
    line-height: 40px;
    transition: color .2s;
}

#mobile-menu a:hover{
    color: #baa378;
}

#mobile-menu li .submenu-toggle{
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-left: 1px solid #ddd;
    color: #444;
    cursor: pointer;
    text-align: center;
}

#mobile-menu li ul{
    position: absolute;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    padding: 0 0 40px;
    border-top: 3px solid #444;
    z-index: 15;
    transition: left .4s;
}

#mobile-menu li ul ul{
    top: -3px;
}

#mobile-menu li ul.opened{
    left: 0;
}

#mobile-menu li ul a{
    color: #444;
}

#mobile-menu li .close-submenu a{
    padding-left: 20px;
    transition: padding-left .2s;
}

#mobile-menu li .close-submenu a:hover{
    padding-left: 30px;
}

@media (max-width: 991px){
    #main-menu{
        display: none;
    }
    #mobile-menu-trigger{
        display: block;
    }
}

/* ===== SEARCH OVERLAY ===== */
#search-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    display: none;
}

#search-overlay .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.85;
}

#search-blog-content{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#search-blog-content form{
    margin-top: -20px;
    padding: 0 10px;
    transition: margin-top .6s;
}

#search-overlay.opened #search-blog-content form{
    margin-top: 0;
}

#search-blog-content input{
    background: none;
    border: 0;
    outline: 0;
    border-bottom: 2px solid #fff;
    text-align: center;
    font-size: 20px;
    color: #fff;
    padding: 10px;
    display: block;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
}

#search-blog-content button{
    display: none;
}

#search-close-overlay{
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 40px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}

/* ===== LOGO SECTION ===== */
#logo-section{
    padding: 30px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}

#logo-section.logo-top{
    padding: 30px 0;
}

#logo-section h1 a{
    display: inline-block;
    max-width: 100%;
}

#logo-section h1 a.blog-title{
    display: inline-block;
    font-family: 'Merriweather', serif;
    font-size: 60px;
    font-weight: normal;
    font-style: normal;
    color: #444;
    transition: color .3s;
}

#logo-section h1 a.blog-title:hover{
    color: #baa378;
}

#logo-section h1 img{
    display: block;
    max-width: 100%;
    margin: 0 auto 10px;
    transition: opacity .3s;
}

#logo-section h1 a:hover img{
    opacity: 0.9;
}

#logo-section p{
    font-family: 'Merriweather Sans', sans-serif;
    font-style: italic;
    color: #baa378;
}

@media (max-width: 600px){
    #logo-section h1 a.blog-title{
        font-size: 40px;
    }
}

/* ===== FEATURED POSTS ===== */
.logo-top #featured-posts-wrap{
    margin-top: 40px;
}

#featured-posts-wrap{
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 20px;
}

#featured-posts img{
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
}

#featured-posts li{
    position: relative;
}

#featured-posts .text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
} 

#featured-posts .text-inner{
    width: 100%;
    height: 100%;
}

#featured-posts .text .bg{
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    height: 30%;
    background: #444;
    opacity: 0.6;
    transition: opacity .3s;
}

#featured-posts .text:hover .bg{
    opacity: 0.8;
}

#featured-posts .featured-content-wrap{
    position: relative;
    padding: 0 20px;
}

#featured-posts h2{
    font-family: 'Merriweather', serif;
    font-size: 12px;
    font-weight: normal;
}

#featured-posts h2 a{
    color: #fff;
    transition: color .3s;
}

#featured-posts h2 a:hover{
    color: #baa378;
}

#featured-posts .line{
    width: 10px;
    height: 1px;
    background: #baa378;
    margin: 15px auto;
}

#featured-posts .categories a{
    color: #e9e6e6;
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 5px;
    margin-right: 10px;
    display: inline-block;
    transition: color .3s;
}

#featured-posts .categories a:hover{
    color: #baa378;
}

#featured-posts-wrap .owl-buttons{
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -151px;
    width: 302px;
    line-height: 40px;
    z-index: 100;
}

#featured-posts-wrap .owl-buttons span{
    display: block;
    width: 150px;
    float: left;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #444;
    background: #fff;
    text-align: center;
    margin-right: 1px;
    cursor: pointer;
    transition: background .3s, color .3s;
}

#featured-posts-wrap .owl-buttons span:hover{
    background: #444;
    color: #fff;
}

/* ===== CONTENT ===== */
#main-content{
    float: left;
    width: 760px;
    margin-bottom: 40px;
}

#main-content.masonry-layout-inner{
    margin-bottom: 120px;
}

.sidebar-left #main-content{
    float: right;
}

.content-no-sidebar #main-content{
    float: none;
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-full-width #main-content{
    width: 100%;
}

#sidebar{
    float: right;
    width: 340px;
    margin-bottom: 40px;
}

.sidebar-left #sidebar{
    float: left;
}

@media (max-width: 1200px){
    #main-content{
        width: 560px;
    }
}

@media (max-width: 991px){
    #main-content{
        max-width: 760px;
        width: 100%;
        margin: 0 auto 40px;
        float: none;
    }
    .sidebar-left #main-content{
        float: none;
    }
    #sidebar{
        margin: 0 auto 40px;
        max-width: 500px;
        width: 100%;
        float: none;
    }
    .sidebar-left #sidebar{
        float: none;
    }
}

/* ===== POST ===== */
.post,
#main-content .page{
    background: #fff;
    color: #444;
    padding: 20px;
    margin-bottom: 40px;
}

.grid-layout .post{
    float: left;
    width: 47.36%;
    margin-right: 5.28%;
}

.masonry-layout-inner{
    width: 100%;
    position: relative;
}

.masonry-layout-inner .post{
    width: 47%;
    margin: 0 3% 20px 0;
}

.grid-layout .post:nth-child(2n+2){
    margin-right: 0;
}

.grid-layout .post:nth-child(2n+3){
    clear: left;
}

.list-layout .post .post-list-layout-media-box{
    float: left;
    width: 50%;
    margin-right: 2.7777777777%;
}

.list-layout .post .post-list-layout-textbox{
    float: left;
    width: 47.2222222222%;
    padding-top: 15px;
}

.list-layout .post .post-list-layout-textbox-full{
    width: 100%;
    padding-top: 0;
}

.list-layout .post-list-layout-media-box .post-media-box{
    margin-bottom: 0;
}

.post h2.post-title,
.page h2.post-title{
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: normal;
    text-align: center;
}

.list-layout .post .post-list-layout-textbox h2.post-title,
.list-layout .page .post-list-layout-textbox h2.post-title{
    text-align: left;
}

.post h2.post-title a,
#main-content .page h2.post-title a{
    color: #444;
    transition: color .3s;
}

.post h2.post-title a:hover,
#main-content .page h2.post-title a:hover{
    color: #baa378;
}
.post .line,
#main-content .page .line{
    width: 100px;
    height: 1px;
    margin: 15px auto;
    background: #baa378;
}

.post .divider,
#main-content .page .divider{
    width: 10px;
    height: 1px;
    margin: 15px auto;
    background: #baa378;
}

.list-layout .post .post-list-layout-textbox .divider,
#main-content.list-layout .page .post-list-layout-textbox .divider{
    margin:15px 0;
}

.post .categories{
    text-align: center;
    margin-bottom: 15px;
}

.list-layout .post .post-list-layout-textbox .categories,
.list-layout .page .post-list-layout-textbox .categories{
    text-align: left;
}

.post .categories a{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    color: #baa378;
    text-transform: uppercase;
    margin-right: 10px;
    transition: color .3s;
}

.post .categories a:last-child{
    margin-right: 0;
}

.post .categories a:hover{
    color: #baa378;
}

.post-media-box{
    position: relative;
    margin-bottom: 15px;
}

.post-media-box img{
    max-width: 100%;
    height: auto;
    display: block;
}

.post-media-box iframe{
    display: block;
    max-width: 100%;
}

.post-media-box .post-date{
    width: 65px;
    height: 65px;
    background: #fff;
    position: absolute;
    top: 1px;
    left: 1px;
    font-family: 'Merriweather Sans', sans-serif;
    line-height: 1;
    text-align: center;
    z-index: 100;
}

.post-media-box .post-date .month{
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    padding: 4px 0;
}

.post-media-box .post-date .year{
    display: block;
    font-size: 10px;
    padding: 5px 0;
}

.post-media-box .post-date .day{
    font-size: 20px;
    display: block;
}

.sticky{
    position: absolute;
    top: 1px;
    right: 1px;
    width: 30px;
    height: 30px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    z-index: 100;
}

.no-thumb-post-date{
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    margin: -5px 0 10px;
    font-family: 'Merriweather Sans', sans-serif;
}

.list-layout .no-thumb-post-date{
    text-align: left;
}

.no-thumb-post-date span{
    display: inline-block;
    padding: 2px 10px;
    background: #baa378;
    color: #fff;
}

.post-excerpt-box{
    text-align: center;
}

.list-layout .post .post-list-layout-textbox .post-excerpt-box,
.list-layout .page .post-list-layout-textbox .post-excerpt-box{
    text-align: left;
}

.read-more-btn-wrap{
    text-align: center; 
    margin-bottom: 15px;
}

.list-layout .post .post-list-layout-textbox .read-more-btn-wrap,
.list-layout .page .post-list-layout-textbox .read-more-btn-wrap{
    text-align: left;
}

.read-more-btn-wrap a{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #444;
    transition: color .3s;
}

.read-more-btn-wrap a:hover{
    color: #baa378;
}

.post-info-box-bottom{
    border-top: 1px dashed #999;
    padding: 15px 0 0;
}

.post-info-box-bottom .author-name{
    float: left;
}

.post-info-box-bottom .author-name a{
    color: #444;
    transition: color .3s;
}

.post-info-box-bottom .author-name a:hover{
    color: #baa378;
}

.post-info-box-bottom .share{
    float: right;
}

.post-info-box-bottom .share a{
    font-size: 16px;
    color: #444;
    display: inline-block;
    padding: 0 5px;
    margin: 0 2.5px;
    transition: color .3s;
}

.post-info-box-bottom .share a:last-child{
    margin: 0 0 0 5px;
}

.post-info-box-bottom .share a:hover{
    color: #baa378;
}

.image-attachment-box img{
    max-width: 100%;
    height: auto;
    display: block;
}

.owl-gallery-wrap{
    position: relative;
}

.owl-gallery-wrap img{
    transform: translateZ(0);
}

.owl-gallery-wrap .gallery-prev,
.owl-gallery-wrap .gallery-next{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #444;
    text-align: center;
    font-size: 20px;
    position: absolute;
    bottom: 1px;
    z-index: 100;
    transition: background .3s, color .3s;
}

.owl-gallery-wrap .gallery-prev{
    right: 42px;
}
.owl-gallery-wrap .gallery-next{
    right: 1px;
}

.owl-gallery-wrap .gallery-prev:hover,
.owl-gallery-wrap .gallery-next:hover{
    background: #444;
    color: #fff;
}

.quote-box{
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.quote-box .divider{
    width: 80px;
    height: 1px;
    margin: 15px auto;
    background: #baa378;
}

.quote-box p.quote-author{
    font-style: normal;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Merriweather Sans', sans-serif;
}

@media (max-width: 1200px){
    .masonry-layout-inner .post .post-info-box-bottom .share{
        float: left;
        padding-top: 15px;
    }
}

@media (max-width: 991px){
    .masonry-layout-inner .post .post-info-box-bottom .share{
        float: right;
        padding-top: 0;
    }
}

@media (max-width: 700px){
    .masonry-layout-inner .post .post-info-box-bottom .share{
        float: left;
        padding-top: 15px;
        width: 100%;
    }
}

@media (max-width: 650px){
    .list-layout .post .post-list-layout-media-box{
        width: 100%;
        margin-right: 0;
    }
    .list-layout .post .post-list-layout-textbox{
        width: 100%;
        padding-top: 15px;
    }
}

@media (max-width: 600px){
    .grid-layout .post{
        width: 100%;
        margin-right: 0;
    }
    .masonry-layout-inner .post .post-info-box-bottom .share{
        float: right;
        padding-top: 0;
        width: auto;
    }
}

@media (max-width: 480px){
    .post-info-box-bottom .author-name{
        font-size: 12px;
    }
    .post-info-box-bottom .share a{
        font-size: 14px;
    }
}

/* ===== POST NAVIGATION ===== */
.paging-navigation .pagination{
    text-align: center;
    font-family: 'Merriweather Sans', sans-serif;
    position: relative;
    padding: 0 150px;
}

.grid-layout .paging-navigation{
    clear: both;
}

.paging-navigation .pagination .page-numbers{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    color: #444;
    font-size: 16px;
}

.paging-navigation .pagination .page-numbers.current{
    background: #444;
    color: #fff;
}

.paging-navigation .pagination .page-numbers.next{
    position: absolute;
    right: 0;
    top: 0;
    width: 150px;
    text-transform: uppercase;
    font-size: 12px;
}

.paging-navigation .pagination .page-numbers.prev{
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    text-transform: uppercase;
    font-size: 12px;
}

.paging-navigation .pagination a.page-numbers{
    transition: background .3s, color .3s;
}

.paging-navigation .pagination a.page-numbers:hover{
    background: #444;
    color: #fff;
}

#post-navigation{
    margin-bottom: 40px;
}

#post-navigation .left,
#post-navigation .right{
    float: left;
    width: 49.5%;
}

#post-navigation .right{
    float: right;
    text-align: right;
}

#post-navigation .left a,
#post-navigation .right a{
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #444;
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    transition: background .3s, color .3s;
}

#post-navigation .left a:hover,
#post-navigation .right a:hover{
    background: #444;
    color: #fff;
}

#post-navigation .left a:before{
    content: '\f104';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

#post-navigation .right a:after{
    content: '\f105';
    font-family: 'FontAwesome';
    margin-left: 5px;
}

@media (max-width: 600px){
    .paging-navigation .pagination{
        padding: 0 0 60px;
    }
    .paging-navigation .pagination .page-numbers.next,
    .paging-navigation .pagination .page-numbers.prev{
        top: auto;
        bottom: 0;
    }
}

/* ===== SINGLE POST ===== */
.post-content-box p{
    margin: 0 0 20px; text-align: justify;
}

.post-content-box p strong{
    font-weight: 700;
}

.post-content-box h1,
.post-content-box h2,
.post-content-box h3,
.post-content-box h4,
.post-content-box h5,
.post-content-box h6{
    margin: 0 0 30px;
}

.post-content-box h1{
    font-size: 24px;
}

.post-content-box h2{
    font-size: 18px; font-weight:normal; text-transform: uppercase; margin-top: 50px; margin-bottom: 20px; 
}

.post-content-box h3{
    font-size: 16px; font-weight:400; color: #baa378;  margin-bottom: 20px;
}

.post-content-box h4{
    font-size: 12px; font-weight:normal; color: #4b6c4f;
}

.post-content-box h5{
    font-size: 12px; font-weight:normal; color: #4b6c4f;
}

.post-content-box h6{
    font-size: 12px;font-weight:normal;font-style: italic;
}

.post-content-box ul,
.post-content-box ol{
    list-style: disc;
    margin: 0 0 30px 20px;
}

.post-content-box ol{
    list-style: decimal;
}

.post-content-box ul li ul,
.post-content-box ol li ol{
    margin-bottom: 0;
}

.post-content-box dl{
    margin-bottom: 30px;
}

.post-content-box dl dd{
    margin-left: 20px;
}

.post-content-box .alignright{
    float: right;
    margin: 10px 0 10px 30px;
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-box .alignleft{
    float: left;
    margin: 10px 30px 10px 0;
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-box .aligncenter{
    margin: 10px auto 10px;
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content-box .alignnone{
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 10px 0 10px;
}

.post-content-box .wp-caption img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.post-content-box .wp-caption-text,
.post-content-box .gallery-caption{
    font-size: 12px;
    padding: 10px;
    display: block;
    text-align: center;
    margin: 0;
}

.post-content-box .wp-caption-text{
    background: none;
    color: #444;
}

.post-content-box .gallery-caption{
    background: rgba(0,0,0,0.4) !important;
    color: #fff !important;
}

.post-content-box blockquote{
    margin: 0 0 30px 20px;
    padding: 10px;
    border-left: 2px solid #baa378;
    font-style: italic;
}

.post-content-box blockquote p{
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.post-content-box blockquote p cite{
    font-family: 'Merriweather Sans', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    color: #baa378;
    display: block;
}

.post-content-box hr{
    border-color: #baa378;
    margin: -20px 0 15px;
    max-width: 80px;
}

.post-content-box address{
    padding: 20px;
    background: #444;
    color: #fff;
    margin-bottom: 30px;
}

.post-content-box a{
    color: #baa378;
}

.post-content-box a:hover{
    text-decoration: underline;
}

.post-content-box pre{
    background: #444;
    color: #fff;
    overflow-x: scroll;
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
}

.post-content-box table{
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #444;
}

.post-content-box table th,
.post-content-box table td{
    padding: 10px 5px;
    border: 1px solid #444;
}

.post-content-box .gallery{
    margin-bottom: 20px !important;
}

.post-content-box .gallery{
    clear: both;
}

.post-content-box .gallery img{
    width: 100%;
}

.post-content-box .gallery-item{
    padding: 0 1px 1px 0;
    margin: 0 0 1px !important;
    display: block !important;
    position: relative;
}

.post-content-box .gallery-icon a{
    display: block;
    padding: 0;
    margin: 0;
    outline: 0;
    transition: opacity .3s;
}

.post-content-box .gallery-icon a:hover{
    opacity: 0.8;
}

.post-content-box .gallery-icon img{
    border: 0 !important;
    display: block;
    height: auto;
}

.post-content-box .gallery-item .gallery-caption{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.post-content-box .gallery-columns-5 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-6 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-7 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-8 .gallery-item .gallery-caption,
.post-content-box .gallery-columns-9 .gallery-item .gallery-caption{
    position: static;
    background: #444;
}

.post-password-form input[type="password"]{
    border: 1px solid #444;
    padding: 8px 10px;
    color: #444;
}

.post-password-form input[type="submit"]{
    border: 1px solid #baa378;
    width: 150px;
    height: 33px;
    background: none;
    color: #baa378;
    cursor: pointer;
    transition: color .3s, background .3s;
}

.post-password-form input[type="submit"]:hover{
    background: #baa378;
    color: #fff;
}

.post-content-box .page-links{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    padding: 20px 0 0;
}

.post-content-box .page-links > span.page-links-link,
.post-content-box .page-links > a{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 2px;
}

.post-content-box .page-links > a{
    background: #baa378;
    color: #fff;
}

.post-info-box .tags{
    text-align: center;
    margin-bottom: 15px;
}

.post-info-box .tags a{
    color: #444;
    transition: color .3s;
}

.post-info-box .tags a:hover{
    color: #baa378;
}

@media (max-width: 480px){
    .post-content-box .gallery-item .gallery-caption{
        display: none;
    }
}

/* ===== WRITTEN BY ===== */
#written-by{
    display: none; /* jo! */
    background: #fff;
    padding: 20px;
    margin: 0 0 40px;
    text-align: center;
    color: #444;
}

#written-by h3{
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

#written-by .divider{
    width: 80px;
    height: 1px;
    background: #baa378;
    margin: 15px auto 20px;
}

#written-by .image-box img{
    max-width: 100%;
    border-radius: 150px;
}

#written-by .image-box{
    margin-bottom: 6px;
}

#written-by .author-name{
    text-transform: uppercase;
    color: #baa378;
    font-family: 'Merriweather Sans', sans-serif;
}

#written-by .follow{
    margin-top: 13px;
    margin-bottom: -10px;
}

#written-by .follow a{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    margin-right: 6px;
    margin-bottom: 10px;
    background: #444;
    color: #fff;
    transition: background .3s;
}

#written-by .follow a:last-child{
    margin-right: 0;
}

#written-by .follow a:hover{
    background: #baa378;
}

/* ===== RELATED POSTS ===== */
#related-posts{
    background: #fff;
    color: #444;
    padding: 20px 20px 40px;
    margin-bottom: 40px;
}

#related-posts h3{
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

#related-posts .line{
    width: 10px;
    height: 1px;
    background: #baa378;
    margin: 15px auto;
}

#related-posts img{
    max-width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
}

.owl-carousel-related .item,
#related-post .item{
    position: relative;
}

#related-post .item{
    max-width: 230px;
}

.owl-carousel-related .item .text,
#related-post .item .text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl-carousel-related .item .text .text-inner,
#related-post .item .text .text-inner{
    width: 100%;
    height: 100%;
}

.owl-carousel-related .item .text .bg,
#related-post .item .text .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #444;
    opacity: 0.4;
    transition: opacity .3s;
}

.owl-carousel-related .item:hover .text .bg,
#related-post .item:hover .text .bg{
    opacity: 0.8;
}

.owl-carousel-related .item .text .block,
#related-post .item .text .block{
    position: relative;
    transform: translateZ(0);
}

.owl-carousel-related .item .text .block p.title,
#related-post .item .text .block p.title{
    padding: 0 5px;
}

.owl-carousel-related .item .text .block p.title a,
#related-post .item .text .block p.title a{
    color: #fff;
    font-size: 18px;
    font-family: 'Merriweather', serif;
    transition: color .3s;
}

.owl-carousel-related .item .text .block p.title a:hover,
#related-post .item .text .block p.title a:hover{
    color: #baa378;
}

#related-posts .owl-carousel-related .item .text .block .divider,
#related-post .item .text .block .divider{
    margin: 10px auto;
}

.owl-carousel-related .item .text .block .categories a,
#related-post .item .text .block .categories a{
    font-size: 12px;
    text-transform: uppercase;
    color: #baa378;
    margin-right: 5px;
    transition: color .3s;
}

.owl-carousel-related .item .text .block .categories a:last-child,
#related-post .item .text .block .categories a:last-child{
    margin-right: 0;
}

.owl-carousel-related .item .text .block .categories a:hover,
#related-post .item .text .block .categories a:hover{
    color: #baa378;
}

.owl-carousel-related-wrap{
    position: relative;  
}

.owl-carousel-related-wrap .buttons{
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -151px;
    z-index: 100;
}

#owl-related-prev,
#owl-related-next{
    display: block;
    width: 150px;
    height: 40px;
    line-height: 40px;
    background: #f1f1f1;
    color: #444;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    transition: background .3s, color .3s;
    float: left;
    margin-right: 1px;
}

#owl-related-prev:hover,
#owl-related-next:hover{
    background: #444;
    color: #fff;
}

@media (max-width: 400px){
    .owl-carousel-related-wrap .buttons{
        width: 202px;
        margin-left: -101px;
    }
    #owl-related-prev,
    #owl-related-next{
        width: 100px;
    }
}

/* ========== COMMENTS ========== */
.comments-wrap{
    background: #fff;
    padding: 20px;
    color: #444;
    margin-bottom: 40px;
}

.comments-wrap h2.comments-title{
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

.comments-wrap .divider{
    width: 80px;
    height: 1px;
    background: #baa378;
    margin: 15px 0 16px;
}

.comment-body{
    position: relative;
    padding-left: 100px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    min-height: 110px;
}

.comment-list > .comment:last-child > .comment-body{
    border-bottom: 0;
}

.comment-body .comment-author .says{
    display: none;
}

.comment-body .comment-author cite.fn{
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    font-style: normal;
    font-size: 14px;
    margin-bottom: 0;
    display: block;
}

.bypostauthor > .comment-body .comment-author cite.fn,
.comment-body .comment-author cite.fn a{
    color: #baa378;
}

.comment-body .comment-author img{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 90px;
}

.comment-body .comment-meta{
    font-size: 12px;
    font-style: italic;
    color: #999;
    margin-bottom: 15px;
}

.comment-body .comment-meta a{
    color: #999;
}

.comment-body .comment-meta a.comment-edit-link{
    color: #baa378;
}

.comment-body > p a{
    color: #baa378;
}

.comment-body > blockquote{
    font-style: italic;
    padding: 5px 20px;
    position: relative;
}

.comment-body > blockquote:before{
    content: '\f10d';
    font-family: 'FontAwesome';
    font-size: 12px;
    position: absolute;
    top: 3px;
    left: 0;
}

.comment-body .reply{
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    padding-top: 15px;
}

.comment-body .reply a{
    color: #444;
    display: inline-block;
    transition: color .3s;
}

.comment-body .reply a:hover{
    color: #baa378;
}

.comment-body .comment-awaiting-moderation{
    display: inline-block;
    font-size: 12px;
    margin-bottom: 5px;
}

.comment .children{
    margin-left: 30px;
}

.comment-navigation{
    padding: 0 0 20px;
}

#comment-nav-above{
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}

#comment-nav-below{
    border-top: 1px solid #444;
    padding: 20px 0 0;
}

.comment-navigation h1{
    margin-bottom: 10px; 
}

.comment-navigation .nav-previous{
    float: left;
}

.comment-navigation .nav-next{
    float: right;
}

.comment-navigation .nav-previous a,
.comment-navigation .nav-next a{
    color: #baa378;
    transition: color .3s;
}

.comment-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover{
    color: #444;
}

@media (max-width: 600px){
    .comment-body{
        padding-left: 80px;
        min-height: 80px;
    }
    .comment-body .comment-author img{
        width: 60px;
        height: 60px;
    }
    .comment .children{
        margin-left: 15px;
    }
}

@media (max-width: 480px){
    .comment-body{
        padding-left: 60px;
        min-height: 60px;
    }
    .comment-body .comment-author img{
        width: 40px;
        height: 40px;
    }
    .comment .children{
        margin-left: 5px;
    }
}

/* ===== RESPOND ===== */
#respond{
    background: #fff;
    padding: 20px;
    color: #444;
    margin: 40px 0;
}

#respond h3{
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

#respond h3 small{
    font-size: 12px;
}

#respond h3 small a{
    color: #baa378;
}

#respond .divider{
    width: 10px;
    height: 1px;
    background: #baa378;
    margin: 15px 0 16px;
}

.comment-notes,
.logged-in-as{
    margin-bottom: 15px;
}

.logged-in-as a{
    color: #baa378;
}

.logged-in-as a:hover{
    text-decoration: underline;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label{
    display: block;
    font-size: 12px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea{
    border: 1px solid #f1f1f1;
    padding: 10px;
    outline: 0;
    display: block;
    max-width: 360px;
    width: 100%;
    margin-bottom: 15px;
    transition: box-shadow .3s;
}

.comment-form-comment textarea{
    max-width: 100%;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus,
.comment-form-comment textarea:focus{
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

#respond .form-submit input{
    display: block;
    border: 0;
    outline: 0;
    width: 150px;
    height: 40px;
    background: #baa378;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background .3s;
}

#respond .form-submit input:hover{
    background: #444;
}

/* ===== SIDEBAR WIDGETS ===== */
.widget{
    background: #fff;
    color: #444;
    padding: 20px;
    margin-bottom: 40px;
}

.widget-title{
    font-family: 'Merriweather Sans', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

.widget-title a{
    color: #444;
    transition: color .3s;
}

.widget-title a:hover{
    color: #baa378;
}

.widget_about_with_image .widget-title{
    text-align: center;
}

.widget .line{
    width: 80px;
    height: 1px;
    background: #baa378;
    margin: 15px 0 20px;
}

.widget_about_with_image .line{
    margin: 15px auto 20px;
}

.widget_search form,
#page-no-results-content form,
#error-404 form{
    position: relative;
}

.widget_search input,
#page-no-results-content form input,
#error-404 form input{
    display: block;
    width: 100%;
    font-style: italic;
    padding: 12px 45px 11px 10px;
    border: 1px solid #baa378;
    outline: 0;
    font-size: 12px;
    color: #baa378;
}

.widget_search button,
#page-no-results-content form button,
#error-404 form button{
    border: 0;
    background: #baa378;
    color: #fff;
    font-size: 16px;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    transition: background .3s, color .3s;
}

.widget_search button:hover,
#page-no-results-content form button:hover,
#error-404 form button:hover{
    background: #444;
    color: #fff;
}

.widget_recent_posts_with_thumb li{
    position: relative;
    padding-left: 160px;
    min-height: 150px;
    margin-bottom: 20px;
}

.widget_recent_posts_with_thumb li:last-child{
    margin: 0;
}

.widget_recent_posts_with_thumb .thumb{
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
}

.widget_recent_posts_with_thumb .thumb a{
    display: block;
    transition: opacity .3s;
}

.widget_recent_posts_with_thumb .thumb a:hover{
    opacity: 0.8;
}

.widget_recent_posts_with_thumb .thumb .post-date{
    width: 45px;
    height: 45px;
    background: #fff;
    position: absolute;
    top: 1px;
    left: 1px;
    line-height: 1;
    font-family: 'Merriweather Sans', sans-serif;
    text-align: center;
}

.widget_recent_posts_with_thumb .thumb .post-date .month{
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    padding: 3px 0;
}

.widget_recent_posts_with_thumb .thumb .post-date .year{
    font-size: 9px;
    display: block;
    padding: 3px 0 0;
}

.widget_recent_posts_with_thumb .thumb .post-date .day{
    display: block;
    font-size: 12px;
}

.widget_recent_posts_with_thumb p.title{
    font-size: 14px;
    font-family: 'Merriweather', serif;
    padding-top: 1px;
}

.widget_recent_posts_with_thumb p.title a{
    color: #444;
    transition: color .3s;
}

.widget_recent_posts_with_thumb p.title a:hover{
    color: #baa378;
}
.widget_recent_posts_with_thumb .divider,
#page-no-results-content .divider{
    width: 10px;
    height: 1px;
    background: #baa378;
    margin: 0px 0 0px; 
}

.widget_recent_posts_with_thumb .categories{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 10px;
    color: #baa378;
    text-transform: uppercase;
}

.widget_recent_posts_with_thumb .categories a{
    color: #baa378;
    margin-right: 5px;
    transition: color .3s;
}

.widget_recent_posts_with_thumb .categories a:last-child{
    margin-right: 0;
}

.widget_recent_posts_with_thumb .categories a:hover{
    color: #444;
}

.widget_categories ul li{
    border-bottom: 1px dashed #999;
    font-size: 13px;
    text-transform: uppercase;
    color: #444;
    padding-bottom: 4px;
    margin-bottom: 15px;
}

.widget_categories ul li:last-child{
    margin: 0;
    border: 0;
}

.widget_categories ul li a{
    color: #444;
    transition: color .3s;
}

.widget_categories ul li a:hover{
    color: #baa378;
}

.widget_categories ul li .children{
    padding-left: 20px;
    padding-top: 10px;
}

.widget_categories ul li .children li:last-child{
    border: 0;
}

.widget_categories select,
.widget_archive select{
    display: block;
    width: 100%;
    font-style: italic;
    padding: 11px 45px 10px 10px;
    border: 1px solid #baa378;
    outline: 0;
    font-size: 12px;
}

.widget_quote_of_the_day p.quote-text{
    font-style: italic;
    margin-bottom: 8px;
}

.widget_quote_of_the_day p.quote-author{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.widget_recent_comments_with_thumb ul li{
    position: relative;
    padding-left: 90px;
    padding-top: 5px;
    min-height: 80px;
    margin-bottom: 20px;
}

.widget_recent_comments_with_thumb ul li:last-child{
    margin: 0;
}

.widget_recent_comments_with_thumb ul li .thumb{
    position: absolute;
    top: 0;
    left: 0;  
}

.widget_recent_comments_with_thumb ul li .thumb img{
    border-radius: 80px;
}

.widget_recent_comments_with_thumb ul li .comment-author-link a,
.widget_recent_comments ul li .comment-author-link a{
    text-transform: uppercase;
    color: #baa378;
}

.widget_recent_comments_with_thumb ul li .comment-author-link a:hover,
.widget_recent_comments ul li .comment-author-link a:hover{
    text-decoration: underline;
}

.widget_recent_comments_with_thumb ul li > a,
.widget_recent_comments ul li > a{
    color: #444;
    transition: color .3s;
}

.widget_recent_comments_with_thumb ul li > a:hover,
.widget_recent_comments ul li > a:hover{
    color: #baa378;
}

.widget_recent_comments_with_thumb ul li p{
    font-size: 12px;
    margin-top: 10px;
}

.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_nav_menu ul li,
.widget_recent_comments ul li,
.widget_recent_entries ul li,
.widget_rss ul li{
    margin-bottom: 12px;
    border-bottom: 1px dashed #999;
    padding-bottom: 5px;
    font-size: 13px;
}

.widget_archive ul li:last-child,
.widget_meta ul li:last-child,
.widget_pages ul li:last-child,
.widget_nav_menu ul li:last-child,
.widget_recent_comments ul li:last-child,
.widget_recent_entries ul li:last-child,
.widget_rss ul li:last-child{
    border: 0;
    margin: 0;
    padding: 0;
}

.widget_archive ul li a,
.widget_meta ul li a,
.widget_pages ul li a,
.widget_nav_menu ul li a,
.widget_recent_entries ul li a,
.widget_rss ul li a{
    color: #444;
    transition: color .3s;
}

.widget_archive ul li a:hover,
.widget_meta ul li a:hover,
.widget_pages ul li a:hover,
.widget_nav_menu ul li a:hover,
.widget_recent_entries ul li a:hover,
.widget_rss ul li a:hover{
    color: #baa378;
}

.widget_tag_cloud .tagcloud a{
    color: #baa378;
    font-size: 12px !important;
    display: inline-block;
    padding: 0 20px;
    line-height: 30px;
    height: 30px;
    border: 1px solid #baa378;
    margin: 0 6px 10px 0;
    transition: background .3s, color .3s;
}

.widget_tag_cloud .tagcloud a:hover{
    background: #baa378;
    color: #fff;
}

.widget_nav_menu ul li .sub-menu{
    padding-left: 20px;
    padding-top: 10px;
}

.widget_recent_entries ul li .post-date,
.widget_rss ul li .rss-date{
    font-size: 12px;
    font-family: 'Merriweather Sans', sans-serif;
    display: block;
    text-transform: uppercase;
}

.widget_rss ul li a,
.widget_recent_entries ul li a{
    font-size: 16px;
}

.widget_rss ul li .rssSummary{
    font-size: 12px;
    padding: 5px 0 0;
}

.widget_rss ul li cite{
    font-size: 12px;
    color: #baa378;
}

.widget_text .textwidget a{
    color: #baa378;
}

.widget_text .textwidget img{
    max-width: 100%;
}

.widget_calendar #wp-calendar{
    width: 100%;
    margin-top: 10px;
}

.widget_calendar #wp-calendar caption{
    padding: 5px 0;
    background: #baa378;
    color: #fff;
}

.widget_calendar #wp-calendar thead tr th{
    padding: 10px 0;
    text-align: left;
    padding: 5px;
}

.widget_calendar #wp-calendar td{
    padding: 5px;
}

.widget_calendar #wp-calendar tbody td a{
    color: #baa378;
}

.widget_calendar #wp-calendar tbody td#today{
    background: #baa378;
    color: #fff;
}

.widget_calendar #wp-calendar tbody td#today a{
    color: #fff;
}

.widget_calendar #wp-calendar tfoot td#prev a,
.widget_calendar #wp-calendar tfoot td#next a{
    font-weight: 500;
    color: #baa378;
    transition: color .3s;
}

.widget_calendar #wp-calendar tfoot td#next{
    text-align: right;
}

.widget_about_with_image{
    text-align: center;
}

.widget_about_with_image img{
    display: block;
    max-width: 100%;
    margin: 0 auto 20px;
    border-radius: 150px;
}

.widget_about_with_image a{
    color: #baa378;
}

.mc4wp-form{
    margin: 0 !important;
}

.mc4wp-form form label{
    display: none;
}

.mc4wp-form form p.text{
    margin-bottom: 15px;
}

.mc4wp-form form input[type="text"],
.mc4wp-form form input[type="email"]{
    display: block;
    width: 100%;
    font-style: italic;
    padding: 12px 45px 11px 10px;
    border: 1px solid #baa378;
    outline: 0;
    font-size: 12px;
    color: #baa378;   
}

.mc4wp-form form input[type="submit"]{
    width: 150px;
    height: 40px;
    background: #baa378;
    color: #fff;
    border: 0;
    outline: 0;
    text-transform: uppercase;
    margin-top: 20px;
    font-size: 12px;
    font-family: 'Merriweather Sans', sans-serif;
    transition: background .3s;
}

.mc4wp-form form input[type="submit"]:hover{
    background: #444;
}

@media (max-width: 480px){
    .widget_recent_posts_with_thumb p.title{
        font-size: 16px;
    }
    .widget_recent_posts_with_thumb .thumb{
        width: 120px;
        height: 120px;
    }
    .widget_recent_posts_with_thumb .thumb img{
        width: 120px;
        height: 120px;
    }
    .widget_recent_posts_with_thumb li{
        padding-left: 130px;
        min-height: 120px;
    }
}

/* ===== INSTAGRAM WIDGET ===== */
#instagram-widget-area-wrap .widget{
    background: none;
    padding: 0;
    text-align: center;
    position: relative;
}

#instagram-widget-area-wrap .widget .widget-title{
    display: none;
}

#instagram-widget-area-wrap .widget .instagram-pics:before, #instagram-widget-area-wrap .widget .instagram-pics:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
#instagram-widget-area-wrap .widget .instagram-pics:after { clear: both; }  
#instagram-widget-area-wrap .widget .instagram-pics { zoom: 1; } 

#instagram-widget-area-wrap .widget .instagram-pics li{
    width: 12.5%;
    float: left;
    display: inline;
}

#instagram-widget-area-wrap .widget .instagram-pics li img{
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
    transform: translateZ(0);
}

#instagram-widget-area-wrap .widget .instagram-pics li a{
    display: block;
    transition: opacity .3s;
}

#instagram-widget-area-wrap .widget .instagram-pics li a:hover{
    opacity: 0.8;
}

#instagram-widget-area-wrap .widget p.clear a{
    display: block;
    font-size: 12px;
    font-family: 'Merriweather Sans', sans-serif;
    background: #fff;
    color: #444;
    text-transform: uppercase;
    padding: 15px 5px;
    width: 205px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -102.5px;
    margin-top: -25px;
    transition: background .3s, color .3s;
}

#instagram-widget-area-wrap .widget p.clear a:hover{
    background: #444;
    color: #fff;
}

@media (max-width: 600px){
    #instagram-widget-area-wrap .widget .instagram-pics li{
        width: 25%;
    }
}

/* ===== CUSTOM BOX ===== */
#custom-box{
    background: #fff;
    padding: 10px 20px;
    color: #444;
    font-size: 18px;
    margin-bottom: 40px;
}

#custom-box p span{
    color: #baa378;
    text-transform: uppercase;
}

#page-no-results-content{
    background: #fff;
    padding: 20px;
    color: #444;
}

#page-no-results-content p.title{
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

#page-no-results-content p{
    margin: 0 0 20px;
}

#page-no-results-content form{
    max-width: 300px;
}

#error-404 {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
    color: #444;
    margin: 0 0 40px;
}

.logo-top-page #error-404{
    margin: 40px 0;
}

#error-404 h2{
    font-family: 'Merriweather Sans', sans-serif;
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 15px;
}

#error-404 p{
    font-size: 18px;
    margin: 0 0 15px;
}

#error-404 form{
    max-width: 300px;
    margin: 0 auto;
}

/* ===== CONTACT FORM 7 ===== */
.wpcf7 .wpcf7-form-control-wrap input[type="text"],
.wpcf7 .wpcf7-form-control-wrap input[type="email"],
.wpcf7 .wpcf7-form-control-wrap textarea{
    border: 1px solid #f1f1f1;
    outline: 0;
    color: #444;
    padding: 12px 10px;
    display: block;
    max-width: 360px;
    width: 100%;
}

.wpcf7 .wpcf7-form-control-wrap input[type="text"]:focus,
.wpcf7 .wpcf7-form-control-wrap input[type="email"]:focus,
.wpcf7 .wpcf7-form-control-wrap textarea:focus{
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.wpcf7 .wpcf7-form-control-wrap textarea{
    max-width: 100%;
}

.wpcf7 input[type="submit"]{
    display: block;
    width: 150px;
    height: 40px;
    background: #baa378;
    border: 0;
    color: #fff;
    outline: 0;
    font-family: 'Merriweather Sans', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s;
}

.wpcf7 input[type="submit"]:hover{
    background: #444;
}

/* ===== FOOTER SOCIAL ===== */
#footer-social{
    text-align: center;
}

#footer-social a{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    color: #444;
    border-radius: 50px;
    margin: 0 16px 20px 0;
    font-size: 18px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    transition: background .3s, color .3s;
}

#footer-social a:last-child{
    margin-right: 0;
}

#footer-social a:hover{
    color: #fff;
    background: #444;
}

@media (max-width: 600px){
    #footer-social a{
        margin: 0 8px 20px;
    }
    #footer-social a:last-child{
        margin-right: 8px;
    }
}

/* ===== FOOTER ===== */
#footer{
    background: #444;
    color: #fff;
    text-align: center;
    font-size: 12px;
    position: relative;
    padding: 15px 80px;
    margin: 20px 0 40px;
}

#footer p a{
    color: #fff;
}

#back-to-top{
    position: absolute;
    top: 0;
    right: 20px;
    background: #baa378;
    color: #fff;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: background .3s, color .3s;
}

#back-to-top:hover{
    background: #fff;
    color: #444;
}

@media (max-width: 600px){
    #footer{
        padding: 15px 55px 15px 0;
    }
    #back-to-top{
        right: 0;
    }
}