/*
Theme Name: Shutter
Theme URI: http://themes.dynamiclayers.net/shutter
Author: DynamicLayers
Author URI: https://dynamiclayers.net
Description: Create your next photography website with Shutter WordPress Theme.
Version: 2.9.4
License: GNU General Public License v2 or later
shutter is distributed under the terms of the GNU GPL version 2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shutter
Tags: custom-menu, featured-images, theme-options, translation-ready, custom-background, custom-colors, custom-header, editor-style, accessibility-ready
*/

/*  ==========================================================================
    Table of Content
    ==========================================================================

    1.0 Media
    2.0 Button
    3.0 Preloader
    4.0 Header
        4.1 Header One
        4.2 Header Two
        4.3 Header 2 Dark
        4.4 Mobile Menu
        4.5 Fullscreen Search Box
    5.0 Portfolio Single
        5.1 Portfolio Carousel
        5.2 Portfolio Related Posts
    6.0 Blog
        6.1 Sticky Post
        6.2 Single Post
    7.0 Pagination
    8.0 Related Posts
    9.0 Featured Image Hover
    10.0 Page Header
    11.0 Breadcrumb
    12.0 Author Info
        12.1 Author Profile
    13.0 404 Page
    14.0 Content None
    15.0 Widgets
        15.1 widget forms
        15.2 widget lists
        15.3 Widget lists of links
        15.4 Widget Markup
        15.5 Text widget
        15.6 RSS Widget
        15.7 Recent Comments
        15.8 Recent Posts widget
        15.9 Search Box
        15.10 Tag cloud widget
        15.11 Calendar widget
        15.12 Gallery widget
    16.0 Footer Widgets
    17.0 Comments
    18.0 Footer
    19.0 Scroll To Top

    ==========================================================================
    Shutter
    ========================================================================== */

/* ==========================================================================
   1.0 Media
   ========================================================================== */
img,
video {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}
img.alignleft,
img.alignright {
    float: none;
    margin: 0;
}
img.alignleft {
    float: left;
    margin-right: 25px;
}
img.alignright {
    float: right;
    margin-left: 25px;
}
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    margin-bottom: 25px;
    max-width: 100%;
}

/* Remove bottom on embeds that wrapped in paragraphs via wpautop. */
p > embed:only-child,
p > iframe:only-child,
p > object:only-child {
    margin-bottom: 0;
}
.wp-caption,
.gallery-caption {
    color: #555;
    font-size: 13px;
    font-style: italic;
    max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption .wp-caption-text {
    margin: 12px 0;
    color: #555;
}

/* SVG Icons base styles */
.icon {
    display: inline-block;
    fill: currentColor;
    height: 15px;
    position: relative; /* Align more nicely with capital letters */
    top: -0.0625em;
    vertical-align: middle;
    width: 15px;
}
/* Row Minus Margin */
.mtb-15{
    margin-top: -15px;
    margin-bottom: -15px;
}

/* ==========================================================================
   2.0 Button
   ========================================================================== */
.btn-group-left .b-btn{ margin-right: 10px; }
.btn-group-right .b-btn{ margin-left: 10px; }
.btn-group-center .b-btn{ margin: 0 5px; }
.b-btn:hover{
    color: #fff;
}
.learn-more{
    color: #555;
}
.learn-more:hover{
    color: #555;
    text-decoration: underline;
}

/* Button */
.dl-btn{
    font-family: "Work Sans",sans-serif;
    letter-spacing: 0.125px;
    background-color: #000000;
    color: #fff;
    line-height: 50px;
    display: inline-block;
    padding: 0 35px;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.dl-btn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    opacity: 0.2;
    -webkit-transform-origin: right center;
       -moz-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: scale(0, 1);
       -moz-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
         -o-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
       -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.dl-btn:hover{
    color: #fff;
}
.dl-btn:hover:before{
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
        transform-origin: left center;
    -webkit-transform: scale(1, 1);
       -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
         -o-transform: scale(1, 1);
            transform: scale(1, 1);
}

/* ==========================================================================
   3.0 Preloader
   ========================================================================== */
#preloader{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s .5s ease;
    -moz-transition: all .5s .5s ease;
    transition: all .5s .2s ease;
}
.loader{
    position:absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -30px;
}
body.loaded #preloader{
    opacity: 0;
    visibility: hidden;
}
.spinner {
    background-color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: wt-scaleout 1.0s infinite ease-in-out;
    animation: wt-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes wt-scaleout {
    0% {
        -webkit-transform: scale(0) }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes wt-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    } 100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* ==========================================================================
   4.0 Fullscreen Search Box
   ========================================================================== */
.search-box-wrap{
  cursor: pointer;
}
#wt-search {
   position: fixed;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   background-color: rgba(0, 0, 0, 0.95);
   -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
   -webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
   opacity: 0;
}

#wt-search.open {
   -webkit-transform: translate(0px, 0px) scale(1, 1);
   -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1);
   opacity: 1;
   z-index: 999;
}
form#fullscreen-search {
    display: block;
    margin: 0 auto;
    text-align: center;
}
#wt-search input[type="text"] {
    display: block;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    margin: 0px auto;
    padding-left: 50px;
    padding-right: 50px;
    outline: none;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 60px;
}
#wt-search .search-btn {
    margin: 30px 0 0;
    padding: 0 40px;
    line-height: 50px;
    font-weight: 600;
    border-radius: 30px;
}
#wt-search .close {
   position: fixed;
   top: 40px;
   right: 40px;
   display: block;
   background-color: rgba(255,255,255,0.2);
   opacity: 1;
   box-shadow: none;
   outline: none;
   border: none;
   text-shadow: none;
   height: 60px;
   width: 60px;
   border-radius: 50%;
   z-index: 1;
}
#wt-search .close:before{
   font-family: themify;
   content: '\e646';
   color: rgba(255,255,255,0.6);
   font-size: 16px;
   line-height: 60px;
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0;
   top: 0;
   transition: all 0.2s ease-in-out;
   z-index: -1;
}
#wt-search .close:hover:before{
   color: rgba(255,255,255,0.8);
   transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 782px) {
    #wt-search input[type="text"]{
        font-size: 30px;
        width: 90%;
        padding-left: 40px;
        padding-right: 40px;
    }
    #wt-search .search-btn{ margin-top: 25px; }
    #wt-search .close{
        height: 50px;
        width: 50px;
    }
    #wt-search .close:before{
        font-size: 14px;
        line-height: 50px;
    }
}

/* ==========================================================================
   5.0 Portfolio Single
   ========================================================================== */
#portfolio-single-wrapper{ margin-bottom: 70px; }
.portfolio-fetured-img{
    width: 100%;
    height: 70vh;
    max-height: 750px;
    position: relative;
}
.portfolio-fetured-img .bg-img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.portfolio-single-title{
    display: block;
    text-align: center;
    padding: 50px 0;
}
.portfolio-single-title h2{
    font-size: 34px;
    line-height: 1.6;
    text-transform: uppercase;
    margin: 0;
}
.portfolio-single-title .breadcrumbs{
    color: #999;
    margin-top: 20px;
}
.portfolio-single-title .breadcrumbs span a,
.portfolio-single-title .breadcrumbs span a span,
.portfolio-single-title .breadcrumbs span.current-item{
    color: #444;
}
.portfolio-single-gallery .dl-col{ padding: 10px; }
.portfolio-navigation .navigation.post-navigation{
    margin: 50px 0 0;
}
.container-fluid .portfolio-navigation .navigation.post-navigation{ padding: 0 15px; }
.portfolio-related-posts{
    margin-top: 50px;
}
.container-fluid .portfolio-related-posts{ padding: 0 15px; }
.portfolio-related-posts .rel-title{
    text-align: center;
    margin-bottom: 40px;
}
.rel-portfolios.dl-row{ margin: -10px; }
.rel-portfolios .dl-col{ padding: 10px; }
/* ==========================================================================
   6.0 Blog
   ========================================================================== */
.full-width .site-main{
    padding: 0 15px;
}
.shutter .wrapper{
    padding: 70px 0;
}
.blog-posts{
    margin-top: -15px;
    margin-bottom: -15px;
    column-gap: 0;
}
.archive .blog-posts .blog-post,
.blog .blog-posts .blog-post,
.search .blog-posts .blog-post{
    padding: 15px;
}
.blog-posts .m-col{ margin: 0; }
.blog-posts .blog-post .blog-post-inner{
    box-shadow: 0px 5px 15px 0px rgba(130,136,147,0.13);
}
.search.search-no-results .blog-posts{
    height: auto!important;
}
.blog-posts .entry_thumb {
    position: relative;
    overflow: hidden;
}
.blog-posts .entry_thumb .post-cat {
    position: absolute;
    width: auto;
    height: auto;
    left: 30px;
    bottom: 20px;
    z-index: 1;
    display: inline-block;
    padding: 10px 15px;
    background-color: #222;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
    line-height: 10px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.blog-posts .entry_thumb .post-cat:hover{
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}
.blog-posts .entry_thumb-link img {
    width: 100%;
    vertical-align: bottom;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.blog-posts .entry_text {
    padding: 30px;
    background-color: #fff;
}
.blog-posts .entry_title {
    font-family: "Playfair Display",sans-serif;
    font-size: 24px;
    color: #222;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 17px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.blog-posts .entry_title a {
    color: #222;
    text-decoration: none;
}
.blog-posts .entry_title a:hover,
.blog-posts .entry_title a:focus {
    color: #000000;
}
.blog-posts .entry_header .post-date{
    font-family: "Work Sans",sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 5px;
    display: block;
    color: #777;
}
.blog-posts .entry-excerpt .page-links{
    padding-bottom: 0;
}
.blog-posts .entry_meta-links a::after {
    content: ", ";
}
.blog-posts .entry_meta-links a:last-child::after {
    display: none;
}
.blog-posts .blog-post-inner .readmore{
    position: relative;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #222;
    display: inline-block;
    margin-top: 16px;
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
}
.blog-posts .blog-post-inner .readmore{ color: #777; }
.blog-posts .blog-post-inner .readmore .dl-arrow{
    width: 24px;
    height: 1px;
    top: 0;
    display: inline-block;
    background-color: #777;
    -webkit-transition: width .3s ease,transform .3s ease;
    -moz-transition: width .3s ease,transform .3s ease;
    transition: width .3s ease,transform .3s ease;
    vertical-align: middle;
}
.blog-posts .blog-post-inner .readmore .dl-arrow.left{
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
}
.blog-posts .blog-post-inner .readmore .dl-text{
    display: inline-block;
    vertical-align: middle;
    /* font-weight: inherit; */
    margin: 0 10px 0 0;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    transition: transform .3s ease;
}
.blog-posts .blog-post-inner .readmore .dl-arrow.right{
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    transform-origin: right;
}
.blog-posts .blog-post-inner .readmore:hover .dl-text {
    -webkit-transform: translateX(34px);
    -moz-transform: translateX(34px);
    transform: translateX(34px);
    font-weight: inherit;
    color: #000;
}
.blog-posts .blog-post-inner .readmore:hover .dl-arrow.left {
    width: 24px
}
.blog-posts .blog-post-inner .readmore:hover .dl-arrow.right {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    transform-origin: right
}

/* 6.1 Sticky Post */
.blog-posts .sticky .blog-post-inner{}
.blog-posts .sticky .blog-post-inner .entry_text{
    border-bottom: 4px solid #222;
    
}
.read-more-box{
    display: block;
}
.read-more-link{
    text-transform: uppercase;
    text-decoration: none;
}
.page-links {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 20px 0;
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.entry-content .page-links{
    text-align: left;
}
.entry-content .page-links span{
    margin: 0 4px 0 0;
}
.page-links .page-number {
    color: #555;
    display: inline-block;
    padding: 0.5em 1em;
}
.page-links a {
    color: #555555;
    display: inline-block;
}
.page-links a span{
    opacity: 0.8;
}
.page-links a:hover span{
    opacity: 1;
}
.page-links span{
    margin: 0 2px;
    color: #fff;
    background-color: #000000;
    padding: 3px 13px;
    line-height: inherit;
    display: inline-block;
    border-radius: 3px;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}
.page-links a:hover{
    color: #000000;
}
.page-links a .page-number {
    color: #303133;
}

/* 6.2 Single Post */
.page .page-featured-img,
.blog-single .featured-img{
    margin-bottom: 30px;
}
.page .page-featured-img img,
.blog-single .featured-img img{
    max-width: 100%;
}
.blog-single .entry-header{
    margin: 0 0 30px;
    position: relative;
}
.blog-single header.entry-header .entry-meta .entry-item {
    display: inline-block;
    margin-right: 15px;
    color: #333;
}
.blog-single header.entry-header .entry-meta .entry-item i{
    margin-right: 5px;
}
.blog-single .entry-title{
    font-family: "Work Sans", sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #222;
    line-height: normal;
    text-decoration: none;
    margin: 0 0 10px;
}

/*Single Post Head*/
.single-post-head,
.single-post-head img{
    margin-bottom: 35px;
}
.single-post-meta{
    padding: 0;
    margin: 0;
    display: inline-block;
}
.single-post-meta li{
    display: inline-block;
    list-style: none;
    margin-right: 15px;
    line-height: 40px;
}
.single-post-meta li span,
.single-post-meta li a{
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-post-meta li a:hover{
    color: #000000;
}
.single-post-meta .author{}

.single-post-meta li i{
    margin-right: 10px;
    color: #000000;
}
.entry-content p:first-child{
    margin-top: 0;
}
/* Social Share */
.sp-head-right{
    float: right;
    margin-top: 7px;
    margin-right: -5px;
}
.sp-head-right .share {
  display: inline-block;
  cursor: default;
  padding: 0;
  margin: 0 5px;
  position: relative;
  text-align: center;
}
.sp-head-right .share:hover .label {
  opacity: 0;
  transition: opacity .5s .125s ease-out;
}
.sp-head-right .share:hover .icon {
    border-radius: 50%;
    margin: 0 0;
}
.sp-head-right .icon, .sp-head-right .label {
  background-color: #000000;
  line-height: 28px;
  color: #fff;
}
.sp-head-right .label {
  position: absolute;
  font-size: 12px;
    letter-spacing: 0.5px;
  font-weight: 500;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  pointer-events: none;
  text-transform: uppercase;
  transition: opacity .5s .75s ease-out;
}
.sp-head-right .icon {
  border-radius: 0;
  font-size: 10px;
  cursor: pointer;
  display: inline-block;
  height: 28px;
  margin: 0 -7px;
  transition: background-color .3s ease-out, border-radius .3s .15s ease-out, margin .3s .15s ease-out;
  width: 28px;
  color: #fff;
}
.sp-head-right .icon a{
    color: #fff;
}
.sp-head-right .icon.first {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: 0;
}
.sp-head-right .icon.last {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: 0;
}

/* Meta */
.entry-footer {
    margin: 10px 0 0;
    padding: 10px 0;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
.entry-footer .edit-link{
    padding-right: 0;
    font-size: 11px;
    color: #555;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
}
.entry-footer .meta-label{
    font-size: 13px;
    color: #333;
    letter-spacing: 1px;
    font-weight: 700;
}
.entry-footer .entry-meta .entry-item{
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    color: #333;
}
.entry-footer .entry-meta{
    display: block;
    padding-left: 25px;
    position: relative;
}
.entry-footer .meta-tags i{
    display: inline-block;
    position: absolute;
    left: 0;
    top: 23px;
}
.entry-footer .entry-meta a {
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    color: #222;
    margin: 5px;
    letter-spacing: 0.5px;
    font-family: "Work Sans",sans-serif;
    font-weight: 600;
    background: #f7f7f7;
    padding: 10px 20px;
}
.entry-footer .entry-meta a:hover{
    background-color: #000000;
    color: #fff;
}
.social-share span{
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0;
    color: #333;
}
.entry-footer .social-share a {
    display: inline-block;
    margin: 0 5px;
    color: #333;
}
.entry-footer .social-share a:hover{
    color: #000000;
}
.post-navigation{
    margin-top: 50px;
}
.post-navigation .nav-links a{
    font-size: 22px;
    font-family: "Work Sans", sans-serif;
}
.post-navigation .nav-links a:hover{
    box-shadow: none;
    text-decoration: underline;
}
.post-navigation .nav-inner{
    border: 1px solid #eaeaea;
    border-radius: 2px;
    display: inline-block;
    padding: 10px 40px;
}
.post-navigation a{
    font-size: 16px;
    display: inline-block;
    line-height: 22px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
}
.post-navigation a i{
    font-size: 25px;
}
.post-navigation .post-prev a i{
    margin-right: 10px;
}
.post-navigation .post-next a i{
    margin-left: 10px;
}
.post-navigation a:hover{
    color: #000000;
    text-decoration: none;
    cursor: pointer;
}
.entry-content ol,
.entry-content ul{
    margin-left: 10px;
}

/* ==========================================================================
   7.0 Pagination
   ========================================================================== */
.pagination-wrap{
    text-align: center;
    margin-bottom: 0;
    margin-top: 40px;
    padding: 0;
}
.pagination-wrap li{
  display: inline-block;
  margin: 0 2px;
}
.pagination-wrap li a{
    text-decoration: none;
    display: block;
    line-height: 43px;
    border: none;
}
.pagination-wrap li .page-link{
    background-color: #f7f7f7;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    padding: 0;
    border: none;
}
.pagination-wrap li .page-link,
.page-item:last-child .page-link,
.page-item:first-child .page-link{
    border-radius: 50%;
}
.pagination-wrap li .page-link:hover{
    background-color: #ddd;
    color: #222;
    text-decoration: none;
}
.pagination-wrap li .page-link:hover a{
    
    color: #222;
    text-decoration: none;
}
.pagination-wrap li .page-link a:hover{
    text-decoration: none;
}
.pagination-wrap li.page-item.active .page-link{
    background-color: #222;
    color: #fff;
}

/* ==========================================================================
   8.0 Related Posts
   ========================================================================== */
.related-posts{
    margin: 50px 0 0;
}
.related-posts-list .thumb{
    position: relative;
    overflow: hidden;
}
.related-posts-list .thumb .post-cat{
    position: absolute;
    width: auto;
    height: auto;
    left: 25px;
    bottom: 20px;
    z-index: 1;
    display: inline-block;
    padding: 10px 15px;
    background-color: #000000;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
    line-height: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}
.related-posts-list .thumb .post-cat:hover{
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}
.related-posts h3.rel-title{
    font-family: "Work Sans", sans-serif;
    color: #222;
    font-size: 28px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 35px;
    letter-spacing: -1px;
    -webkit-font-smoothing: antialiased;
    text-transform: none;
}
.related-posts-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.related-posts-list li{
    float: left;
    width: 50%;
}
.related-posts-list li:first-child {
    padding-right: 15px;
}
.related-posts-list li:last-child{
    padding-left: 15px;
}
.related-posts-list li .rel-post-content{
    box-shadow: 0px 5px 15px 0px rgba(130,136,147,0.13);
    display: block;
    padding: 30px 25px;
}
.related-posts-list li .rel-post-content .rel-entry-date{
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #777;
    letter-spacing: 0.5px;
}
.related-posts-list li .rel-post-content h4 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    letter-spacing: 0;
}
.related-posts-list li .rel-post-content h4 a{
    text-decoration: none;
    color: #222;
}
.related-posts-list li .rel-post-content h4 a:hover{
    color: #000000;
}
.related-posts-list li .rel-post-content p{
    margin: 0;
    font-weight: 400;
}
.related-posts-list li .rel-post-content .rel-entry-meta{
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 25px;
}
.related-posts-list li .rel-post-content .rel-entry-meta a{
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
}
.related-posts-list li .rel-post-content .rel-entry-meta a:not(:last-of-type):after{
    content: ", ";
}
.related-posts-list li img{
    width: 100%;
}
.related-posts-list li h4{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    -webkit-font-smoothing: antialiased;
    margin: 0 0 10px;
}
.related-posts-list li h4 a{
    color: #222;
}
.related-posts-list li p{
    font-size: 14px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
}

/* ==========================================================================
   9.0 Featured Image Hover
   ========================================================================== */
.post-thumbnail {
    margin-bottom: 15px;
}
.post-thumbnail a img {
    -webkit-backface-visibility: hidden;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.post-thumbnail a:hover img,
.post-thumbnail a:focus img {
    opacity: 0.7;
}

/* ==========================================================================
   10.0 Page Header
   ========================================================================== */
.page-header{
    background-color: #161616;
    background-attachment: scroll;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    display: block;
    height: 350px;
    position: relative;
    z-index: 1;
}
.header-transparent.page-header{
    height: 500px;
}
.header-opacity.page-header{
    height: 500px;
    padding-top: 90px;
}
.page-header h1.page-title{
    font-family: 'Playfair Display', sans-serif;
    font-style: normal;
    letter-spacing: 0;
    color: #fff;
    position: relative;
    margin: 0;
    font-size: 60px;
    text-transform: inherit;
    font-weight: 500;
    line-height: 70px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.page-header p{
    color: #eee;
    margin: 15px 0 0;
    font-size: 14px;
}
.page-header p.page-description{
    font-size: 14px;
    margin-top: 10px;
}
.page-header:before{
    background-color: rgba(0,0,0,0.8);
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.8;
}
@media (max-width: 992px){
    .header-transparent.page-header{
        height: 300px;
    }
    .header-opacity.page-header{
        height: 300px;
        padding-top: 0;
    }
}

/* ==========================================================================
   11.0 Breadcrumb
   ========================================================================== */
.breadcrumbs {
    margin: 20px 0 0;
    list-style: none;
    color: #fff;
    display: inline-block;
    border-radius: 0;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
}
.breadcrumbs span{
    padding: 0 3px;
}

.breadcrumbs span a {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}
.breadcrumbs span a span{
    color: #ddd;
    transition: all 0.3s ease-in-out;
}
.breadcrumbs span a:hover,
.breadcrumbs span a:hover span{
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.breadcrumbs span.current-item{
    color: #ddd;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   12.0 Author Info
   ========================================================================== */
.page-header.author-page{
    height: 500px;
}
.author-posts-title{
    position: relative;
    padding-bottom: 12px;
    color: #222;
    font-weight: 700;
    font-size: 24px;
}
.author-info{
    color: #bbb;
    display: block;
    text-align: center;
}
.author-info img.avatar{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.author-info ul{
    list-style: none;
    padding: 0;
}
.author-info ul li a{
    color: #bbb;
}
.author-socials{
    margin-top: 20px;
}
.author-socials li{
    display: inline-block;
    margin: 0 3px;
}
.author-socials li a{
    background-color: #000000;
    color: #fff!important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
}
.author-socials li a:hover{
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

/* 12.1 Author Profile */
.author-bio{
    margin:45px 0 0;
    display: block;
    background-color: #f7f7f7;
}
.author-bio .bio-inner {
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: center;
    padding: 40px;
}
.author-bio .bio-inner .avatar{
    padding-right: 30px;
}
.author-bio .bio-inner .author-avatar {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.author-bio .bio-inner h3{
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.5px;
}
.author-bio .bio-inner p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #555;
}
.author-bio .bio-inner ul{
    margin: 0;
    padding: 0;
}
.author-bio .bio-inner ul li{
    display: inline-block;
    margin-right: 15px;
}
.author-bio .bio-inner ul li a{
    color: #222;
    font-size: 14px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}
.author-bio .bio-inner ul li a:hover{
    color: #000000;
    transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   13.0 404 Page
   ========================================================================== */
#error-404-wrapper{
    padding: 100px 0;
}
.error-404 i {
    font-size: 80px;
    color: #000000;
}
.error-404 h1{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 40px 0 15px;
    color: #222;
}
.error-404 p{
    color: #333;
}
.error-404 a{
    color: #333;
}
.error-404 a:focus,
.error-404 a:hover{
    color: #000000;
}

/* ==========================================================================
    14.0 Content None
   ========================================================================== */
.no-results.not-found{
    display: block;
    width: 100%;
}
.no-results.not-found.without-sidebar{
    padding: 40px 0;
}
.no-results.not-found .not-found-icon{
    color: #dd0000;
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 45px;
    background-color: #f7f7f7;
    display: block;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 25px;
}
.no-results.not-found.text-center .not-found-icon{
    margin: 0 auto 25px;
}
.no-results.not-found .page-content p{ margin: 0; }
/* ==========================================================================
   15.0 Portfolio Page Template
   ========================================================================== */
.portfolio-filter{
    display: block;
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    text-align: center;
}
.portfolio-filter li{
    display: inline-block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 10px;
    cursor: pointer;
}
.portfolio-items .hide{
    display: none;
}
/* Loadmore */
.dl-loademore-btn-wrap{
    display: block;
    text-align: center;
    margin-top: 40px;
}
.dl-loadmore{
    display: inline-block;
    padding: 10px 20px;
    background-color: #f1f1f1;
    border-radius: 3px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}
/* ==========================================================================
   15.0 Widgets
   ========================================================================== */
.sidebar-inner{
    padding-left: 10px;
    padding-right: 10px;
}
.full-width #right-sidebar{
    padding-right: 30px;
}
.full-width #left-sidebar{
    padding-left: 30px;
}
#secondary {
    padding: 15px 0 30px;
}
.widget-area .widget{}
.widget-area .widget.widget_search{
    padding: 0;
}
.widget-area .widget.widget_search .widget-title{
    display: none;
}
.widget-area .widget:not(:last-of-type) {
    margin-bottom: 60px;
}
.widget-title{
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}
.widget_rss .widget-title h3 a:last-child,
.widget-title h3 {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}
.widget-title h3:after{
    background-color: #222;
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    top: 50%;
    position: absolute;
    margin-left: 20px;
}
.widget-title a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
}

/* 15.1 widget forms */
.widget select{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0 10px;
}

/* 15.2 widget lists */
.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget ul li{}

.widget ul li,
.widget ol li {
    font-family: "Work Sans", sans-serif;
    color: #555;
    font-weight: 500;
    font-size: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.widget ul li:not(:last-of-type),
.widget ol li:not(:last-of-type),
.widget ul li li:not(:last-of-type),
.widget ol li li:not(:last-of-type){
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
    margin: 0 0 10px;
}
.widget select,
.widget select option,
.widget ul li a{
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    box-shadow: none;
    font-family: "Open Sans",sans-serif;
    letter-spacing: 0;
}
.widget ul li a:hover{
    color: #000000;
    text-decoration: none;
}
.widget:not(.widget_tag_cloud) ul li + li {
    margin-top: -1px;
}
.widget ul li ul {
    margin: 0 0 -1px;
    padding: 0;
    position: relative;
}
.widget ul li li {
    border: 0;
    padding-left: 15px;
}
.widget ul li ul li{
    padding-left: 15px;
}
.widget ul li ul li:before,
.widget.widget_rss ul li:before{
    display: none;
}
/* 15.3 Widget lists of links */
.widget_rss ul li {
    padding-bottom: 15px;
    padding-top: 15px;
}

/* 15.4 Widget Markup */
.widget .post-date,
.widget .rss-date {
    font-size: 12px;
}

/* 15.5 Text widget */
.widget_text {
    word-wrap: break-word;
}
.widget_text ul {
    list-style: disc;
    margin: 0 0 25px 25px;
}
.widget_text ol {
    list-style: decimal;
}
.widget_text ul li,
.widget_text ol li {
    border: none;
}
.widget_text ul li:last-child,
.widget_text ol li:last-child {
    padding-bottom: 0;
}
.widget_text ul li ul {
    margin: 0 0 0 25px;
}
.widget_text ul li li {
    padding-left: 0;
    padding-right: 0;
}
.widget_text ol li {
    list-style-position: inside;
}
.widget_text ol li + li {
    margin-top: -1px;
}

/* 15.6 RSS Widget */
.widget_rss .widget-title a{
    box-shadow: none;
}
.textwidget b, .textwidget strong,
.widget_rss b, .widget_rss strong{
    font-weight: 500;
}
.widget_rss .widget-title a:last-child{
    box-shadow: none;
    line-height: normal;
    margin-bottom: 10px;
    margin-bottom: 20px;
}
.widget_rss .widget-title .rsswidget:first-child {
    float: right;
    margin-top: 1px;
    background-color: transparent;
}
.widget_rss .widget-title .rsswidget:first-child:hover {
    background-color: transparent;
}
.widget_rss .widget-title .rsswidget:first-child img {
    display: block;
    box-shadow: none;
}
.widget_rss ul{
    list-style: none;
}
.widget_rss ul li {
    padding: 15px 0;
}
.widget_rss ul li:first-child {
    border-top: none;
    padding-top: 0;
}
.widget_rss li .rsswidget {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #222;
}
.widget_rss .rss-date,
.widget_rss li cite {
    color: #333;
    display: block;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}
.widget_rss .rss-date {
    margin: 10px 0px;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 600;
}
.widget_rss .rssSummary {
    margin-bottom: 10px;
    font-weight: normal;
    font-family: 'Work Sans', sans-serif;
    color: #333;
}

/* Contact Info Widget */
.widget_contact_info .contact-map {
    margin-bottom: 10px;
}

/* Gravatar */
.widget-grofile h4 {
    font-size: 16px;
    margin-bottom: 0;
}

/* 15.7 Recent Comments */
.widget_recent_comments table,
.widget_recent_comments th,
.widget_recent_comments td {
    border: 0;
}
.widget.widget_recent_comments{}
.widget.widget_recent_comments ul{}
.widget.widget_recent_comments ul li{ padding-left: 20px; }
.widget.widget_recent_comments ul li:before{ display: none; }
.widget.widget_recent_comments ul li a{
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    box-shadow: none;
    font-family: "Open Sans",sans-serif;
    letter-spacing: 0;
}
.widget.widget_recent_comments ul li span.comment-author-link{
    padding-left: 20px;
    position: relative;
    margin-left: -20px;
}
.widget.widget_recent_comments ul li span.comment-author-link:before{
    font-family: "themify";
    content: "\e602";
    font-size: 10px;
    color: #222;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* 15.8 Recent Posts widget */
.widget_recent_entries .post-date {
    display: block;
}
.widget_recent_entries ul{}
.widget_recent_entries ul li{}
.widget_recent_entries ul li a{
    font-size: 14px;
    line-height: 22px;
}
.widget_recent_entries ul li a:hover{}

/* 15.9 Search Box */
.search-form{
    position: relative;
}
.search-form .form-control{
    background-color: #fff;
    border: 1px solid #eaeaea!important;
    box-shadow: none;
    width: 100%;
    display: block;
    border: none;
    color: #333;
    height: auto;
    padding: 15px;
    border-radius: 0;
    padding-right: 60px;
}
.widget-box .search-form .form-control{
    background-color: #252525;
    color: #fff;
}
.search-form .search-btn{
    background-color: transparent;
    font-size: 15px;
    color: #222;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 13px 0;
}
.search-form .search-btn:focus,
.search-form .search-btn:hover{
    color: #000000;
}
.search-form .form-control:focus{
    outline: 0;
    border: none;
}
.search-form input::-webkit-input-placeholder{
    color: #777 !important;
}
.search-form input:-moz-placeholder{ /* Firefox 18- */
    color: #777 !important;
}
.search-form input::-moz-placeholder{  /* Firefox 19+ */
    color: #777 !important;
}
.search-form input:-ms-input-placeholder{
    color: #777 !important;
}
/* 15.10 Tag cloud widget */
.tagcloud ul li {
    float: left;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    margin: 4px 4px 0 0;
}
.tagcloud,
.widget_tag_cloud,
.wp_widget_tag_cloud {
    line-height: 1.5;
}
.widget .tagcloud a,
.widget.widget_tag_cloud a,
.wp_widget_tag_cloud a {
    background-color: #f7f7f7;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    width: auto;
    word-wrap: break-word;
    z-index: 0;
    margin: 0 7px 7px 0;
    font-size: 12px!important;
    color: #555;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.widget .tagcloud a:hover,
.widget .tagcloud a:focus,
.widget.widget_tag_cloud a:hover,
.widget.widget_tag_cloud a:focus,
.wp_widget_tag_cloud a:hover,
.wp_widget_tag_cloud a:focus {
    background-color: #000000;
    color: #fff;
    border-color: #000000;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    opacity: 1;
}

/* 15.11 Calendar widget */
.widget_calendar th,
.widget_calendar td {
    text-align: center;
}
.widget_calendar tfoot tr {
    border-bottom: 0;
}
.widget.widget_calendar #wp-calendar{
    border: 1px solid #ddd;
    margin: 0;position: relative;
}
.widget.widget_calendar #wp-calendar caption{
    text-align: center;
    height: 36px;
    line-height: 36px;
    padding: 0;
    caption-side: top;
    vertical-align: middle;
    border: 1px solid #eaeaea;
    border-bottom: none;
    color: #333;
    font-family: "Work Sans",sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}
.widget.widget_calendar #wp-calendar tfoot{
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    height: 36px;
    line-height: 36px;
}
.widget.widget_calendar #wp-calendar tfoot td{ border: none; }
.widget.widget_calendar #wp-calendar tfoot #prev,
.widget.widget_calendar #wp-calendar tfoot #next{
    position: absolute;
    width: 36px;
    height: 36px;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding: 0;
    color: transparent;
}
.widget.widget_calendar #wp-calendar tfoot #prev{
    left: 0;
}
.widget.widget_calendar #wp-calendar tfoot #next{
    right: 0;
}
.widget.widget_calendar #wp-calendar tfoot #prev a,
.widget.widget_calendar #wp-calendar tfoot #next a{
    color: transparent;
}
.widget.widget_calendar #wp-calendar tfoot #prev a:before,
.widget.widget_calendar #wp-calendar tfoot #next a:before{
    background-color: transparent;
    font-family: "themify";
    font-size: 12px;
    color: #333;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}
.widget.widget_calendar #wp-calendar tfoot #prev a:hover:before,
.widget.widget_calendar #wp-calendar tfoot #next a:hover:before{
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.widget.widget_calendar #wp-calendar tfoot #prev a:before{ content: "\e64a"; }
.widget.widget_calendar #wp-calendar tfoot #next a:before{ content: "\e649"; }
.widget.widget_calendar #wp-calendar th{
    border-color: #eaeaea;
    padding: 5px 10px;
    font-family: "Work Sans",sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #222;
    opacity: 0.5;
}
.widget.widget_calendar #wp-calendar td{
    padding: 5px;
    color: #222;
    font-size: 12px;
}
.widget.widget_calendar #wp-calendar td a{ font-weight: 700; color: #222; }
.widget-box .widget.widget_calendar #wp-calendar{
    border: 1px solid #333;
}
.widget-box .widget.widget_calendar #wp-calendar th{
    border-color: #333;
}

/* 15.12 Gallery widget */
.gallery-columns-5 .gallery-caption,
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

/* ==========================================================================
   16.0 Footer Widgets
   ========================================================================== */
.footer-widget-section{
    background-color: #161616;
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 1;
}
.footer-pattern{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.3;
}
.footer-widgets{
    margin-top: -15px;
    margin-bottom: -15px;
}
.footer-widgets .m-col{
    margin-bottom: 10px;
}
.footer-widget{
    padding: 20px 15px;
}
.dark-widget .widget_rss .widget-title a:last-child,
.dark-widget .widget-title h3{
    color: #fff;
}
.dark-widget .widget-title h3:after{
    background-color: #ddd;
}
.dark-widget .text-widget p,
.dark-widget p{
    color: #ddd;
}
.dark-widget .widget-box .text-widget p:not(:last-of-type),
.dark-widget .widget-box p:not(:last-of-type){
    margin-bottom: 15px;
}
.dark-widget .widget-box ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.dark-widget .widget ul li{
    color: #ddd;
    border: none;
}

.dark-widget .search-form .form-control{
    border: none!important;
}
.dark-widget.widget ul li:not(:last-of-type), .widget ol li:not(:last-of-type), 
.widget ul li li:not(:last-of-type), 
.dark-widget .widget ol li li:not(:last-of-type){
    border: none;
}
.dark-widget .widget ul li a{
    color: #ddd;
}
.dark-widget .widget ul li a:hover{
    color: #fff;
}
.dark-widget .widget .tagcloud a,
.dark-widget .widget.widget_tag_cloud a,
.dark-widget .wp_widget_tag_cloud a {
    background-color: #222;
    color: #ddd;
}
.dark-widget .widget .tagcloud a:hover,
.dark-widget .widget.widget_tag_cloud a:hover,
.dark-widget .wp_widget_tag_cloud a:hover{
    background-color: #000000;
    color: #fff;
}
.dark-widget .widget select {
    border: 1px solid #282828;
    background-color: #222;
    color: #ddd;
}
.dark-widget .widget select option{
    color: #ddd;
}
.dark-widget .widget.widget_calendar #wp-calendar caption {
    border: 1px solid #222;
    color: #ddd;
}
.dark-widget tr {
    border-bottom: 1px solid #222;
}
.dark-widget td{ border-right: 1px solid #222; }
.dark-widget .widget.widget_calendar #wp-calendar td { color: #ddd; }
.dark-widget .widget.widget_calendar #wp-calendar td a{ color: #ddd; }
.dark-widget .widget.widget_calendar #wp-calendar td a:hover{ color: #fff; }
.dark-widget .widget.widget_calendar #wp-calendar tfoot #prev a:before,
.dark-widget .widget.widget_calendar #wp-calendar tfoot #next a:before{
    color: #fff;
}
.dark-widget .widget.widget_calendar #wp-calendar th{ border-color: #222; color: #ddd; }
.dark-widget th:first-child, .dark-widget td:first-child {
    border-left: 1px solid #222;
}
.dark-widget .widget.widget_recent_comments ul li span.comment-author-link:before{
    color: #000000;
}
/* ==========================================================================
   17.0 Comments
   ========================================================================== */
#comments {
    clear: both;
    padding: 0;
    margin-top: 50px;
}
.related-posts h3.rel-title,
.comment-respond .comment-reply-title,
#comments .comments-title {
    font-size: 25px;
    font-family: "Work Sans", sans-serif;
    margin-bottom: 40px;
    color: #222;
    line-height: 25px;
    letter-spacing: -1px;
    font-weight: 600;
}
.comment-respond .comment-reply-title{
    margin-bottom: 5px;
}
.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}
.comment-list li:before {
	display: none;
}
.comment-body {
	margin-left: 65px;
}
.comment-author {
	font-size: 18px;
	margin-bottom: 0.4em;
	position: relative;
	z-index: 2;
}
.comment-author .avatar {
	height: 50px;
	left: -65px;
	position: absolute;
	width: 50px;
    border-radius: 50%;
}
.comment-author .fn,
.comment-author a{
    text-decoration: none;
    color: #222;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 15px;
}
.comment-author a:hover{
    opacity: 0.9;
}
.comment-author .says {
	display: none;
}
.comment-meta {
	margin-bottom: 15px;
}
.comment-body .reply{ margin-top: 15px; }
.comment-metadata a.comment-edit-link,
.comment-metadata a,
.comment-metadata {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    font-family: "Work Sans",sans-serif;
    letter-spacing: 0;
}
.comment-metadata a {
	    color: #777;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.comment-metadata a.comment-edit-link {
	margin-left: 1em;
}
.comment-body {
	color: #333;
	font-size: 14px;
	margin-bottom: 4em;
}
.comment-reply-link {
    font-weight: 500;
    position: relative;
    font-family: "Work Sans",sans-serif;
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.comment-reply-link .icon {
	color: #222;
	left: -2em;
	height: 1em;
	position: absolute;
	top: 4px;
	width: 1em;
    transition: all 0.3s ease-in-out;
}
.comment-reply-link:hover .icon,
.comment-reply-link:hover{
    color: #666;
}
.comment-body .comment-content p{
    margin-bottom: 0;
}
.children .comment-author .avatar {
	height: 30px;
	left: -45px;
	width: 30px;
}
.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	border: 1px solid #303133;
	padding: 2px;
}
.no-comments,
.comment-awaiting-moderation {
	color: #333;
	font-size: 14px;
	font-size: 0.875rem;
	font-style: italic;
}
.comments-pagination {
    margin: 0px 0 50px;
    font-size: 0.875rem;
    font-weight: 800;
    padding: 0px 0 0px;
    text-align: center;
}
.comments-pagination .nav-links{}
.comments-pagination .prev.page-numbers {
    float: left;
    margin-right: 10px;
    margin-left: 0;
}
.comments-pagination .next.page-numbers{
    float: right;
    margin-left: 10px;
    margin-right: 0;
}
.comments-pagination .prev.page-numbers,
.comments-pagination .next.page-numbers {
    background-color: #f7f7f7;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    color: #333;
    transition: all 0.3s ease-in-out;
    height: 35px;
    line-height: 35px;
    width: 45px;
    border: none;
}
.comments-pagination .prev.page-numbers:hover,
.comments-pagination .next.page-numbers:hover{
    background-color: #f1f1f1;
    color: #666;
    transition: all 0.3s ease-in-out;
}
.comments-pagination .page-numbers {
    display: none;
    width: 35px;
    height: 35px;
    line-height: 33px;
    border: 1px solid #f7f7f7;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease-in-out;
}
.comments-pagination .page-numbers:hover,
.comments-pagination .page-numbers.current{
    background-color: #f7f7f7;
    transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 67em){
    .comments-pagination .page-numbers {
        display: inline-block;
    }
}

.comment-form #wp-comment-cookies-consent {
	margin: 0 10px 0 0;
}
.comment-form .comment-form-cookies-consent label {
	display: inline;
}

@media screen and (min-width: 48em){
    ol.children .children {
        padding-left: 2em;
    }
}
/* Comment Form */
.children .comment-respond{
    margin-bottom: 50px;
    padding-left: 28px;
}
.comment-list .depth-1 .comment-respond{
    margin-bottom: 50px;
}
.comment-respond .comment-reply-title small a{
    text-decoration: none;
    font-size: 16px;
    color: #888;
}
.comment-respond .comment-reply-title small a:hover{
    color: #666;
}
.form-submit {
    text-align: left;
    margin: 0;
}
.form-submit .b-btn {
    background-color: #222;
    width: inherit;
    height: inherit;
    padding: 20px 45px;
    font-family: "Work Sans",sans-serif;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.form-submit .b-btn:hover{
    opacity: 0.8;
}
.form-group, .wpcf7 .wpcf7-form p{
    margin-bottom: 20px;
}
.comment-form .form-group{
    margin-bottom: 25px;
}
.comment-form .form-control{
    background: #fff;
    font-size: 14px;
    font-family: "Work Sans",sans-serif;
    border-radius: 0;
    box-sizing: border-box;
    color: #333;
    cursor: pointer;
    border: none;
    padding: 15px;
    letter-spacing: 0;
    border: 1px solid #eaeaea;
}
.comment-form textarea.form-control{
    line-height: 26px;
}
.comment-form .form-control:hover,
.comment-form .form-control:focus{
    box-shadow: none;
    outline: none;
}
.comment-form .form-control:hover{
    border: 1px solid #222;
}
.comment-form .comment-notes{
    color: #333;
}
.comment-list li.pingback .comment-body{
    margin: 0 0 35px 0;
    padding-left: 0;
}
.comment-navigation{
    margin-bottom: 20px;
}
.comment-navigation a{
    color: #222;
}
.comment-navigation a:hover{
    text-decoration: underline;
}
.comment-form p:last-child{
    margin: 0;
}

/* ==========================================================================
   18.0 Footer
   ========================================================================== */
.shutter-footer {
    background-color: #222;
    color: #333;
    padding: 30px 0;
    display: block;
}
.shutter-footer .site-info{
    color: #bbb;
    margin: 0;
    font-size: 13px;
}
.footer-row-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-1.fitem-3{}
.footer-1.fitem-3 .copyright-wrap,
.footer-1.fitem-3 .footer-social-wrap{ width: 30%; }
.footer-1.fitem-3 .footer-menu-wrap{ width: 40%; }
.footer-2.fitem-3 .footer-social-wrap,
.footer-2.fitem-3 .footer-logo{ width: 25%; }
.footer-2.fitem-3 .copyright-wrap{ width: 50%; }
.footer-2.fitem-3 .copyright-wrap .site-info{ text-align: center; }
.footer-3{
    padding: 100px 0;
}
.footer-3 .footer-info{ 
    width: 40%; 
    color: #ddd;
    font-family: "Work Sans", sans-serif;
}
.footer-3 .footer-logo{ 
    width: 20%;
    text-align: center;
}
.footer-3 .footer-info.info-right{ text-align: right; }
.footer-3 .footer-info .label{
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.footer-3 .footer-info .info-text{
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}
.footer-menu{
    margin: 0;
    text-align: right;
    padding: 0;
}
.footer-menu li{
    display: inline-block;
    margin-left: 20px;
}
.footer-menu li a{
    font-size: 14px;
    color: #bbb;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    font-weight: 400;
}
.footer-menu li a:hover{
    color: #fff;
    text-decoration: none;
}
.footer-social{ 
    text-align: right;
    margin: 0;
    padding: 0;
}
.footer-social li{
    display: inline-block;
    margin-left: 15px;
}
.footer-social li a{
    display: inline-block;
    font-size: 14px;
    color: #bbb;
}
.footer-social li a:hover{
    color: #fff;
}
.footer-logo img{
    max-width: 200px;
}
@media (max-width: 992px){
    .footer-row-wrap{
        display: block;
    }
    .footer-3 { padding: 60px 0; }
    .footer-3 .footer-info,
    .footer-3 .footer-logo,
    .footer-2.fitem-3 .footer-social-wrap,
    .footer-2.fitem-3 .footer-logo,
    .footer-2.fitem-3 .copyright-wrap,
    .footer-1.fitem-3 .copyright-wrap,
    .footer-1.fitem-3 .footer-social-wrap,
    .footer-1.fitem-3 .footer-menu-wrap{ width: 100%; }
    .footer-3 .footer-info,
    .footer-2 .footer-logo,
    .footer-2 .footer-social,
    .footer-2 .site-info,
    .footer-1 .footer-social,
    .footer-1 .site-info,
    .footer-1 .footer-menu{
        text-align: center!important;
    }
    .footer-2 .copyright-wrap,
    .footer-2 .footer-social,
    .footer-1 .footer-social,
    .footer-1 .footer-menu{ margin-top: 10px; }
    .footer-3 .footer-logo {
        padding: 30px 0;
    }
    .footer-3 .footer-info .info-text{ font-size: 18px; }

}

/* ==========================================================================
   19.0 Gallery
   ========================================================================== */
.dl-password-wrapper{
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.gal-page-header-overlay,
.dl-pass-wrap-overlay{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.dl-password-form{
    width: 600px;
    height: auto;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
}
.dl-password-form .password-form-inner{
    border: 1px solid #ddd;
    padding: 60px 30px;
}
.dl-pass-input{
  position:relative;
  margin-bottom: 30px;
}
.dl-pass-input .hello{
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.5s ease;
    pointer-events: none;
    margin: 0;
    text-transform: capitalize;
}
.dl-pass-input input[type=password]:focus~.hello {
    display:block;
    top: -18px;
}
.dl-pass-input input[type=password]:focus~.enter {
    background-color: #333;
    position: absolute;
    content: ' ';
    height: 1px;
    right: 0;
    top: 39px;
    transform: scaleX(1);
    width: 100%;
}
.dl-pass-input .enter{
    transition: all ease 0.5s;
    width: 0;
    transform: scaleX(0)
}
.dl-pass-input input { 
    outline: none;
    border: 0;
    border-bottom: 1px solid #ddd;
    height: 40px;
    width: 100%;
    padding: 0;
}
.dl-pass-input input:focus{
    content: '';
}
.dl-password-form input[type=submit]{
    background-color: #333;
    font-size: 12px;
    letter-spacing: 0.9px;
    font-weight: 600;
    padding: 15px 15px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}
.dl-password-form input[type=submit]:hover{
    opacity: 0.9;
    transition: all 0.3s ease-in-out;
}
.dl-password-form h2{
    margin: 0;
}
.dl-password-form p{
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 25px;
}
@media (max-width: 600px){
    .dl-password-form { width: 90%; }
    .dl-password-form .password-form-inner { padding: 30px 25px; }
}
/* Page Header */
.gallery-page-header{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.gal-page-header-inner{ width: 100%; }
.gal-page-header-overlay{}
.gal-page-header-content{
    color: #fff;
}
.gal-page-header-content h1{
    font-size: 60px;
    color: #fff;
    font-weight: 700;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    line-height: 1.2;
}
.gal-page-header-content span{
    font-size: 18px;
    color: #ddd;
    font-weight: 600;
}
.dl-gallery-images{
    background-color: #fff;
    padding: 60px 0;
    display: block;
}
.gallery-nav{
    position: relative;
    min-height: 50px;
}
.gallery-nav .dl-download-btn{
    background-color: #222;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    border-radius: 3px;
    z-index: 1;
}
.gallery-nav .dl-download-btn i{
    margin-right: 5px;
}
.gallery-nav .dl-download-btn:hover{
    opacity: 0.9;
}
/* Client Page Header */
.client-header{
    height: 80vh;
}
.client-header .gal-page-header-content {
    background-color: #fff;
    padding: 40px 30px;
    width: 450px;
    margin: 0 auto;
    border-radius: 3px;
}
.client-header .client-thumb{
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
}
.client-header h1{
    color: #222;
    font-size: 28px;
    margin: 0;
}
.client-header .client-desc{
    color: #444;
    margin-top: 15px;
}
.client-gallery{
    margin: -10px;
}
.client-gallery .dl-col{
    padding: 10px;
}
.client-gallery .client-item{
    position: relative;
    z-index: 1;
}
.client-gallery .client-item img{ width: 100%; }
.client-gallery .client-item a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}
.client-gallery .client-item .client-overlay{
    background: linear-gradient(rgba(0,0,0,0.01), rgba(0,0,0,0.6));
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 40px 20px 20px;
    color: #fff;
    transition: all 0.2s linear;
    z-index: 1
}
.client-gallery .client-item:hover .client-overlay{
    padding: 80px 20px 20px;
}
.client-gallery .client-item .client-overlay h3{
    color: #fff;
    font-size: 22px;
    margin: 0;
    transform: translateY(7px);
    transition: all 0.2s linear;
}
.client-gallery .client-item .client-overlay span{
    display: block;
    margin-top: 5px;
    transform: translateY(7px);
    opacity: 0;
    transition: all 0.2s linear;
}
.client-gallery .client-item:hover .client-overlay h3,
.client-gallery .client-item:hover .client-overlay span{
    transform: translateY(0);
    opacity: 1;
}
.client-item .dl-gallery{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}
.client-item .dl-gallery img{
    width: 100%;
}
.client-item:hover .dl-gallery{
    opacity: 1;
    visibility: visible;
}
@media (max-width: 600px){
    .gallery-page-header{ height: 60vh; }
    .gal-page-header-content h1{
        font-size: 36px;
    }
    .client-header h1 {
        font-size: 24px;
    }
    .gal-page-header-content span{
        font-size: 16px;
    }
    .gallery-nav .dl-download-btn i {
        margin-right: 0;
    }
    .post-navigation .nav-inner span,
    a.dl-download-btn span {
        display: none;
    }
    .post-navigation .post-next a i {
        margin-left: 0;
    }
    .post-navigation .post-prev a i{
        margin-right: 0;
    }
}
/* ==========================================================================
   20.0 Scroll To Top
   ========================================================================== */
#scrollup{
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}
.scroll-to-top{
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #222;
    font-size: 10px;
    padding: 0;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}
#scrollup.show{ opacity: 1; }
#scrollup.show .scroll-to-top{
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:focus{
    outline: none;
}
