/*  ==========================================================================
    Table of Content
    ==========================================================================

    1.0 Media
    2.0 Button
    3.0 Preloader
    4.0 Header
        4.1 Menu Style
        4.2 Top Bar
        4.3 Header 1
        4.4 Header 2
        4.5 Header 3
        4.6 Search Box
    5.0 Portfolio Single
    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 Events
    19.0 Footer
    20.0 Scroll To Top

    ==========================================================================
    Charitian Main CSS
    ========================================================================== */

/* ==========================================================================
   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: 15px 0 5px;
    color: #555;
    padding: 0;
}

/* 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);
}

.dl-btn-2 {
    display: inline-block;
    background: #99cc00;
    color: #FFF;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}

.dl-btn-2:hover {
    color: #FFF;
}

.dl-btn-2 span {
    background: #20212b none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}

.dl-btn-2:hover span {
    height: 562.5px;
    width: 562.5px;
}

/* ==========================================================================
   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: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -40px;
    animation: heartBeat 0.8s linear infinite;
}

.loader svg {
    fill: #99cc00;
    height: 80px;
    width: 80px;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

@-webkit-keyframes heartBeat {
    0% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    40% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    40% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ==========================================================================
   4.0 Header
   ========================================================================== */
.header {
    background-color: #fff;
    width: 100%;
    height: auto;
    display: block;
}

.header-logo img {
    max-width: 70%;
}

/* Headroom css */
.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    z-index: 99;
}

.sticky-header .primary-header {
    background-color: #fff;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.sticky-header.headroom--top {
    transform: translateY(-100%);
}

.admin-bar .sticky-header {
    top: 32px;
}

.admin-bar .header {
    margin-top: 32px;
}

.admin-bar .header-three {
    margin-top: 0;
}

.sticky-header.sticky-fixed-top,
.headroom {
    transition: transform .25s ease-in-out;
    will-change: transform;
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.sticky-header.sticky-fixed-top,
.headroom--pinned {
    transform: translateY(0);
}

.sticky-header,
.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Burger Menu */
.mobile-menu-icon {
    display: none;
}

.burger-menu {
    width: 20px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out;
}

.burger-menu.menu-open {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.line-menu {
    background-color: #222222;
    border-radius: 2px;
    width: 100%;
    height: 3px;
}

.line-menu.line-half {
    width: 50%;
}

.line-menu.first-line {
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: right;
}

.menu-open .line-menu.first-line {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -moz-transform: rotate(-90deg) translateX(3px);
    -o-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px);
}

.line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
    transform-origin: left;
}

.menu-open .line-menu.last-line {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -moz-transform: rotate(-90deg) translateX(-3px);
    -o-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px);
}

/* 4.1 Menu Style
================== */
.header-menu-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu-wrap ul li {
    display: inline-block;
    position: relative;
}

.header-menu-wrap ul li>a {
    display: block;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #20212b;
    padding: 0 15px;
    height: 80px;
    line-height: 80px;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

.header-menu-wrap ul li:hover>a {
    color: #99cc00;
}

.header-menu-wrap li ul {
    background-color: #fff;
    display: block;
    width: 250px;
    padding: 30px 0;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    position: absolute;
    left: -35px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transition: opacity .5s ease, visibility .5s ease;
    -o-transition: opacity .5s ease, visibility .5s ease;
    transition: opacity .5s ease, visibility .5s ease;
}

.header-menu-wrap li:hover>ul {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.header-menu-wrap li li {
    display: block;
    padding: 0 35px;
    margin-bottom: 5px;
    text-align: left;
    position: relative;
}

.header-menu-wrap li li:last-child {
    margin: 0;
}

.header-menu-wrap li li>a {
    font-family: "Open Sans", sans-serif;
    display: block;
    height: auto;
    line-height: inherit;
    color: #20212b;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    text-transform: capitalize;
    padding: 1px 7px;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.header-menu-wrap li li:hover>a {
    color: #99cc00;
    background-color: #f9f9f9;
}

.header-menu-wrap li ul li ul {
    width: 250px;
    position: absolute;
    left: 100%;
    top: 0;
}

/* Media Query */
@media (min-width: 993px) {
    .header-menu-wrap li ul {
        display: block !important;
    }
}

@media (max-width: 992px) {
    #page.site {
        margin-top: 0 !important;
    }

    .headroom--top .header-menu-wrap,
    .headroom--unpinned .header-menu-wrap {
        display: none !important;
    }

    .dropdown-plus {
        width: 49px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
    }

    .dropdown-plus:before,
    .dropdown-plus:after {
        position: absolute;
        content: '';
        top: 24px;
        right: 18px;
        width: 13px;
        height: 1px;
        background-color: #222222;
    }

    .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .header-menu-wrap {
        display: none;
        background-color: #fff;
        width: 100%;
        height: auto;
        padding: 0 20px;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 999;
    }

    .header-menu-wrap ul li {
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        padding: 11px 0;
        margin: 0;
    }

    .header-menu-wrap ul li:first-child {
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    .header-menu-wrap ul li>a {
        padding: 10px 15px;
        height: inherit;
        line-height: inherit;
    }

    .header-menu-wrap li li:hover>a {
        background-color: transparent;
    }

    .header-menu-wrap ul li ul li ul,
    .header-menu-wrap ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
        padding-top: 11px;
    }

    .header-menu-wrap li li {
        padding-left: 11px;
    }

    .header-menu-wrap li li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .header-menu-wrap li li>a {
        color: #20212b;
        font-size: 13px;
    }

    .header-menu-wrap li li:hover>a {
        color: #666;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .sticky-header {
        top: 0;
    }

    .admin-bar .header {
        margin-top: 0;
        padding-top: 46px;
    }
}

@media (max-width: 580px) {
    .header-right a.dl-btn {
        line-height: 40px;
        font-size: 10px;
        padding: 0 25px;
    }

    .primary-header .header-logo {
        max-width: 150px;
    }

    .top-bar .top-left li {
        font-size: 12px;
    }
}

.primary-header-inner .header-right {
    display: flex;
    align-items: center;
    line-height: 80px;
    margin-left: 20px;
}

.header-right .mobile-menu-icon {
    margin-left: 20px;
}

.header-right a.header-btn {
    display: inline-block;
    background: #99cc00;
    color: #FFF;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-left: 20px;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}

.header-right a.header-btn:hover {
    color: #fff;
}

.header-right a.header-btn span {
    background: #20212b none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}

.header-right a.header-btn:hover span {
    height: 562.5px;
    width: 562.5px;
}

.header-right .search-icon {
    color: #20212b;
    cursor: pointer;
}

.header-right .search-icon:hover {
    opacity: 0.8;
}

.primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.primary-header .header-logo {
    max-width: 180px;
}

.viewport-lg .primary-header .header-menu-wrap {
    display: block !important;
}

/* 4.2 Top Bar
=============== */
.top-bar {
    background-color: #20212b;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.top-bar ul {
    margin: 0;
    padding: 0;
}

.top-bar .top-left li {
    font-size: 14px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border-right: 1px solid #444;
    margin: 0;
    padding-top: 7px;
    padding-bottom: 7px;
}

.top-bar .top-left li:first-child {
    border-left: 1px solid #444;
}

.top-bar .top-left li a {
    color: #fff;
    text-decoration: none;
}

.top-bar .top-social {
    padding: 7px 20px;
    border-right: 1px solid #444;
    border-left: 1px solid #444;
}

.top-bar .top-social li {
    display: inline-block;
    margin-left: 13px;
}

.top-bar .top-social li:first-child {
    margin-left: 0;
}

.top-bar .top-social li a {
    color: #fff;
}

.top-bar .top-social li a:hover {
    color: #ddd;
}

@media (max-width: 767px) {
    .top-bar .top-right {
        display: none;
    }

    .top-bar .top-left li,
    .top-bar .top-left li:first-child {
        border: none;
    }

    .top-bar .top-left li {
        padding-left: 0;
        padding-right: 20px;
    }
}

/* 4.3 Header 1
=============== */
.viewport-sm .primary-header-one {}

.primary-header-one .header-menu-wrap {
    margin-left: auto;
}

.header-cart-btn {
    margin-left: 10px;
}

.header-cart-btn a {
    color: #20212b;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.header-cart-btn a .num {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #99cc00;
    color: #fff;
    font-size: 11px;
    display: block;
    top: -8px;
    right: -9px;
    line-height: 16px;
    text-align: center;
}

/* 4.4 Header 2
=============== */
.header-two {
    border-bottom: 4px solid #99cc00;
    position: relative;
}

.header-two .mid-header {
    padding: 30px 0 70px 0;
}

.header-two .mid-header {
    padding: 30px 0;
}

.header-two .mid-header .mid-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-two .mid-header .header-logo {
    max-width: 180px;
}

.header-two .mid-header ul {}

.header-two .mid-header ul li {
    display: inline-block;
    padding-left: 50px;
    position: relative;
    line-height: 20px;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 600;
}

.header-two .mid-header ul li:not(:last-of-type) {
    margin-right: 40px;
}

.header-two .mid-header ul li .icon {
    color: #99cc00;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 35px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-two .mid-header ul li span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #20212b;
    text-transform: capitalize;
}

.header-two .mid-header ul li a {
    text-decoration: none;
}

.header-two .mid-header ul li a:hover {
    opacity: 0.9;
}

.header-two .primary-header {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    z-index: 9;
}

.header-two .primary-header {
    background-color: #20212b;
    position: inherit;
    transform: translateY(0);
}

/* .header-two .primary-header-inner {
    background-color: #20212b;
    padding: 0 20px;
} */
.primary-header-two .header-menu-wrap ul li>a {
    color: #fff;
    padding-right: 30px;
    padding-left: 0;
}

.primary-header-two .header-menu-wrap ul li>a:hover {
    color: #99cc00;
}

.primary-header-two .header-menu-wrap li li>a {
    color: #20212b;
}

.primary-header-two .header-menu-wrap li li:hover>a:hover {
    color: #99cc00;
}

.primary-header-two .header-right .search-icon {
    color: #fff;
}

.primary-header-two .header-menu-wrap li ul {
    left: -20px;
}

.primary-header-two .header-menu-wrap li ul li ul {
    left: 100%;
}

.sticky-header .primary-header-two {
    box-shadow: none;
    background-color: transparent;
}

.header-2 .sticky-header {
    background-color: #20212b;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
}

.primary-header-two .header-right .header-cart-btn a {
    color: #fff;
}

@media (max-width: 992px) {
    .header-two {
        border: none;
    }

    .header-two .primary-header {
        background-color: #20212b;
        position: inherit;
        transform: translateY(0);
    }

    .header-two .mid-header {
        padding: 20px 0;
    }

    .header-two .mid-header-right {
        display: none;
    }

    .header-two .primary-header-inner {
        padding: 20px 0;
    }

    .header-2 .sticky-header .primary-header-inner {
        padding: 10px 0;
    }

    .primary-header-inner {
        padding: 0;
    }

    .sticky-header .primary-header-inner {
        padding: 0;
    }

    .primary-header-two .primary-header-inner .header-right {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    .header-two .mid-header .mid-header-inner {
        justify-content: center;
    }

    .viewport-sm .primary-header-two .header-right .search-icon {
        display: inherit;
    }

    .cart-enable.primary-header-two .header-right .header-cart-btn,
    .primary-header-two .header-right .search-icon {
        margin-right: auto;
    }

    .cart-enable.primary-header-two .header-right .search-icon {
        margin-right: 0;
    }

    .primary-header-two .header-right .mobile-menu-icon {
        margin-left: auto;
    }

    .primary-header-two .header-right .line-menu {
        background-color: #fff;
    }

    .primary-header-two .header-menu-wrap ul li ul li ul,
    .primary-header-two .header-menu-wrap ul li ul {
        left: inherit;
    }

    .primary-header-two .header-menu-wrap li li:hover>a,
    .primary-header-two .header-menu-wrap li li>a,
    .primary-header-two .header-menu-wrap ul li>a {
        color: #20212b;
    }

    .header-1 .header-right a.header-btn {
        margin-left: 15px;
        margin-right: 0;
    }
}

/* 4.5 Header 3
=============== */
.header-three {
    background-color: transparent;
    position: absolute;
    top: 32px;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 99;
}

.header-three .line-menu {
    background-color: #fff;
}

.header-three .top-bar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-three .top-bar .top-left li {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-three .top-bar .top-left li:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-three .top-bar .top-social {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.primary-header-three .header-menu-wrap,
.header-three .header-menu-wrap {
    margin-left: auto;
}

.header-three .header-menu-wrap ul li>a {
    color: #fff;
}

.header-three .header-menu-wrap ul li:hover>a {
    color: #fff;
}

.header-three .header-menu-wrap li li>a {
    color: #20212b;
}

.header-three .header-menu-wrap li li:hover>a:hover {
    color: #99cc00;
}

.primary-header-three .header-right .header-cart-btn a,
.header-three .header-right .search-icon {
    color: #fff;
}

.sticky-header .primary-header-three .header-right .header-cart-btn a {
    color: #20212b;
}

@media screen and (max-width: 782px) {
    .admin-bar .header-three {
        top: 0;
    }
}

@media (max-width: 992px) {
    .header-menu-wrap {
        top: 100%;
    }

    .primary-header-three .header-right .line-menu {
        background-color: #fff;
    }

    .sticky-header .primary-header-three .header-right .line-menu {
        background-color: #222222;
    }

    .primary-header-three .header-menu-wrap ul li ul li ul,
    .primary-header-three .header-menu-wrap ul li ul {
        left: inherit;
    }

    .primary-header-three .header-menu-wrap ul li:hover>a,
    .primary-header-three .header-menu-wrap li li:hover>a,
    .primary-header-three .header-menu-wrap li li>a,
    .primary-header-three .header-menu-wrap ul li>a {
        color: #20212b;
    }

    .primary-header .header-logo {
        max-width: 190px;
    }

    .primary-header-three .primary-header-inner {
        padding: 0;
    }
}

/* 4.6 Search Box
================= */
#dl-popup-search-box {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    height: 100%;
    top: -20em;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

.box-inner-wrap:hover {
    cursor: url(../img/cross.png), auto;
}

#dl-popup-search-box.toggled {
    top: 0;
    opacity: 1;
    visibility: visible;
}

#dl-popup-search-box .box-inner-wrap {
    width: 100%;
    height: 100%;
}

#dl-popup-search-box .box-inner-wrap form {
    position: relative;
    margin: 0 auto;
}

#dl-popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    /* Edge */
    color: #444;
}

#dl-popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #444;
}

#dl-popup-search-box .box-inner-wrap input::placeholder {
    color: #444;
}

#dl-popup-search-box .box-inner-wrap input {
    width: 90%;
    padding: 0 0 0.125em 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid #20212b;
    font-size: 4em;
    color: #ddd;
}

#dl-popup-search-box .box-inner-wrap input:focus {
    outline: none;
}

#dl-popup-search-box .box-inner-wrap button {
    position: absolute;
    display: block;
    width: 10%;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    color: #444;
    font-size: 4em;
    -webkit-transition: 500ms ease all;
    -moz-transition: 500ms ease all;
    transition: 500ms ease all;
}

#dl-popup-search-box .box-inner-wrap button:hover {
    color: #ddd;
}

#dl-popup-search-box .box-inner-wrap button:focus {
    outline: none;
}

@media screen and (max-width: 600px) {
    #dl-popup-search-box .box-inner-wrap form {
        width: 90%;
    }

    #dl-popup-search-box .box-inner-wrap input,
    #dl-popup-search-box .box-inner-wrap button {
        font-size: 3em;
    }
}

/* ==========================================================================
   5.0 Portfolio Single
   ========================================================================== */
.single-wt-portfolios .posts-category {
    margin-bottom: 15px;
}

.portfolio-desc .ps-title,
.portfolio-related-posts .ps-title,
.ps-sidebar .ps-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Work Sans", sans-serif;
    color: #20212b;
}

.project-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    width: 100%;
    height: 600px;
    margin-bottom: 70px;
}

.project-featured-img {
    margin-bottom: 20px;
}

.portfolio-related-posts .ps-title {
    margin-bottom: 30px;
}

.portfolio-desc p:last-child {
    margin-bottom: 0;
}

/* Social Share */
.single-portfolio .sp-head-right {
    float: none;
    margin-right: 0;
    margin-top: 25px;
}

.single-portfolio .sp-head-right .share {
    margin: 0;
}

.single-portfolio .sp-head-right .icon {
    height: 40px;
    width: 40px;
}

.single-portfolio .sp-head-right .icon,
.single-portfolio .sp-head-right .label {
    line-height: 40px;
}

.single-dl-projects .post-navigation {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.archive .dl-project-box .project-content span {
    background-color: #99cc00;
    border-radius: 3px;
}


/* Portfolio Details
   ===================== */
.portfolio-details {
    margin-bottom: 40px;
}

.ps-sidebar .portfolio-details:last-child {
    margin-bottom: 0;
}

.portfolio-details h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Work Sans", sans-serif;
    color: #20212b;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;

}

.portfolio-details h3:before {
    background: #99cc00;
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.portfolio-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-details .project-contact-info li,
.portfolio-details .ps-list li {
    padding: 0 0 15px;
    letter-spacing: -0.2px;
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
}

.portfolio-details .project-contact-info li:last-child,
.portfolio-details .ps-list li:last-child {
    margin-bottom: 0;
}

.portfolio-details .ps-list li span {
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #20212b;
    letter-spacing: 0;
    margin-right: 8px;
}

.portfolio-details .project-contact-info li i {
    margin-right: 10px;
    color: #99cc00;
}

.portfolio-details .ps-launch-btn {
    background-color: #99cc00;
    margin-top: 20px;
    height: 50px;
    line-height: 50px;
    border-radius: 2px;
    display: block;
    text-align: center;
}

.dl-social-share-icons {
    padding-left: 0;
    padding-top: 20px;
}

.dl-social-share-icons li {
    list-style: none;
    width: 25%;
    float: left;
}

.dl-social-share-icons li a {
    display: block;
    font-size: 12px;
    background-color: #f5f5f5;
    text-align: center;
    color: #fff;
    padding: 10px 0;
}

.dl-social-share-icons li:nth-child(1) a {
    background-color: #3b5998;
}

.dl-social-share-icons li:nth-child(2) a {
    background-color: #1da1f2;
}

.dl-social-share-icons li:nth-child(3) a {
    background-color: #DD4B39;
}

.dl-social-share-icons li:nth-child(4) a {
    background-color: #c8232c;
}

.dl-social-share-icons li a:hover {
    opacity: 0.9;
    color: #fff;
}

.portfolio-details .dl-lists {
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.portfolio-details .dl-lists li {
    list-style: none;
    margin-bottom: 10px;
}

.portfolio-details .dl-lists li a {
    background-color: #f5f5f5;
    line-height: 45px;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #20212b;
    text-decoration: none;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-details .dl-lists li a:hover {
    background-color: #99cc00;
    color: #fff;
}

/* ==========================================================================
   6.0 Blog
   ========================================================================== */
body.blog {
    background-color: #f9f9f9;
}

.full-width .site-main {
    padding: 0 15px;
}

.charitian .wrapper {
    padding: 100px 0;
}

.blog-posts {
    margin-top: -15px;
    margin-bottom: -15px;
    column-gap: 0;
}

.col-lg-12.content-area {
    padding: 0;
}

.col-lg-9.content-area {
    padding-left: 0;
}

@media (max-width: 992px) {
    .col-lg-9.content-area {
        padding: 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;
    columns: 1;
}

.blog-posts .entry_thumb {
    position: relative;
    overflow: hidden;
}

.blog-posts .entry_thumb-link {
    display: block;
}

.blog-posts .entry_thumb-link img {
    width: 100%;
    vertical-align: bottom;
    transition: all 500ms linear 0ms;
}

.blog-posts .entry_thumb-link:hover img {
    transform: scale(1.2);
}

.blog-posts .entry_header {
    padding-left: 15px;
    border-left: 3px solid #99cc00;
    margin-bottom: 15px;
    padding-bottom: 3px;
}

.blog-posts .entry_text {
    padding: 30px;
    background-color: #fff;
}

.blog-posts .entry_title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    color: #20212b;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.blog-posts .entry_title a {
    color: #20212b;
    text-decoration: none;
}

.blog-posts .entry_title a:hover,
.blog-posts .entry_title a:focus {
    color: #99cc00;
}

.entry-excerpt {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.blog-posts .entry_header .meta-info {}

.blog-posts .entry_header .meta-info .meta-cat {
    display: inline-block;
    position: relative;
    padding-right: 13px;
    margin-right: 3px;
}

.blog-posts .entry_header .meta-info .meta-cat:after {
    content: '/';
    right: 0;
    position: absolute;
    top: 0;
    color: #999;
}

.blog-posts .entry_header .meta-info .meta-cat a {
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    color: #99cc00;
}

.blog-posts .entry_header .meta-info .meta-cat a:not(:last-of-type) {
    margin-right: 5px;
}

.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: 0;
    margin: 0 0 5px;
    display: inline-block;
    color: #6a8695;
}

.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 .footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.blog-posts .blog-post-inner .footer-meta-right .comments,
.blog-posts .blog-post-inner .footer-meta-right a {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #6a8695;
    margin-left: 10px;
}

.blog-posts .blog-post-inner .footer-meta-right a:hover {
    color: #99cc00;
}

.blog-posts .blog-post-inner .footer-meta-right a:first-child {
    margin: 0;
}

.blog-post-inner .footer-meta-right a:empty {
    display: none !important;
}

.blog-posts .blog-post-inner .footer-meta-right a.author img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 5px;
}

.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: #6a8695;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
}

.blog-posts .blog-post-inner .readmore {
    color: #6a8695;
}

.blog-posts .blog-post-inner .readmore .dl-arrow {
    width: 24px;
    height: 1px;
    top: 0;
    display: inline-block;
    background-color: #99cc00;
    -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 #99cc00;
}

.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;
    margin-bottom: 0;
}

.entry-content .page-links .post-page-numbers {
    margin: 0 4px 0 0;
    color: #20212b;
    background-color: #f5f5f5;
    padding: 3px 13px;
    line-height: inherit;
    display: inline-block;
    border-radius: 0;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.page-links .page-number {
    color: #555;
    display: inline-block;
    padding: 0.5em 1em;
}

.page-links .post-page-numbers.current,
.page-links .post-page-numbers:hover {
    background-color: #99cc00;
    opacity: 1;
    color: #fff;
}

.page-links .post-page-numbers.current {
    padding: 3px 13px 2px 13px;
}

.page-links span span {
    padding: 0;
    margin: 0 !important;
}

.page-links a:hover {
    color: #99cc00;
}

.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: #20212b;
}

.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: #20212b;
    line-height: normal;
    text-decoration: none;
    margin: 0 0 10px;
}

/* Single Post Head */
.single-post-head img {
    width: 100%;
}

.single-post-head,
.single-post-head img {
    margin-bottom: 25px;
}

.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: #20212b;
    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: #99cc00;
}

.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: #99cc00;
    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: 30px 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: #20212b;
    letter-spacing: 1px;
    font-weight: 700;
}

.entry-footer .entry-meta .entry-item {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    color: #20212b;
}

.entry-footer .entry-meta {
    display: block;
    padding-left: 25px;
    position: relative;
}

.entry-footer .meta-tags i {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 15px;
    color: #20212b;
}

.entry-footer .entry-meta a {
    font-size: 12px;
    display: inline-block;
    color: #fff;
    margin: 5px;
    letter-spacing: 0;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    background: #99cc00;
    padding: 5px 20px;
    border-radius: 3px;
    text-transform: capitalize;
}

.entry-footer .entry-meta a:hover {
    background-color: #20212b;
    color: #fff;
}

.social-share span {
    font-size: 11px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0;
    color: #20212b;
}

.entry-footer .social-share a {
    display: inline-block;
    margin: 0 5px;
    color: #20212b;
}

.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: flex;
    align-items: center;
    line-height: 22px;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #20212b;
}

.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: #99cc00;
    text-decoration: none;
    cursor: pointer;
}

.entry-content ol,
.entry-content ul {
    margin-left: 10px;
}

.entry-content .blocks-gallery-grid {
    margin: 0;
}

/* ==========================================================================
   7.0 Pagination
   ========================================================================== */
.navigation.pagination {
    margin-top: 40px;
}

.navigation.pagination .nav-links {
    margin: 0 auto;
}

.navigation.pagination .nav-links span.page-numbers.dots {
    margin: 0 2px;
}

.navigation.pagination .nav-links span.page-numbers.current,
.navigation.pagination .nav-links a {
    background-color: #fff;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    color: #20212b;
    font-weight: 500;
    border: 1px solid #eaeaea;
    text-decoration: none;
    border-radius: 50%;
    margin: 0 2px;
    transition: all 0.2s ease-in-out;
}

.navigation.pagination .nav-links a:hover {
    background-color: #f2f2f2;
    color: #20212b;
    transition: all 0.2s ease-in-out;
}

.navigation.pagination .nav-links span.page-numbers.current {
    background-color: #99cc00;
    color: #fff;
}

.navigation.pagination .nav-links a.prev,
.navigation.pagination .nav-links a.next {
    font-size: 10px;
}

/* Single Pagination */
.nav-links-single {
    margin-top: 70px;
}

.nav-links-single .post-navigation {
    margin: 0;
}

.nav-links-single .nav-links {
    font-size: 0;
    text-align: left;
    overflow: hidden;
    text-transform: none;
}

.nav-links-single .nav-links .nav-previous, .nav-links-single .nav-links .nav-next {
    width: 50%;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.nav-links-single .nav-links .nav-previous {
    float: left;
    text-align: left;
    padding-right: 15px;
}

.nav-links-single .nav-links .nav-next {
    float: right;
    text-align: right;
    padding-left: 15px;
}

.nav-links-single .nav-links a {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100px;
    z-index: 1;
}

.nav-links-single .nav-links .nav-next a {
    justify-content: flex-end;
}

.nav-links-single .nav-links a:hover {
    text-decoration: none;
}

.nav-links-single .nav-links .nav-previous a {
    padding-left: 123px;
}

.nav-links-single .nav-links .nav-next a {
    padding-right: 123px;
}

.nav-links-single .nav-links .nav-previous.no-thumb a,
.nav-links-single .nav-links .nav-next.no-thumb a {
    padding: 0;
}

.nav-links-single .nav-links a .nav-arrow {
    width: 100px;
    height: 100px;
    line-height: 100px;
    overflow: hidden;
    text-align: center;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: none;
}

.nav-links-single .nav-links .nav-next a .nav-arrow {
    right: 0;
    left: auto;
}

.post-navigation .nav-previous a .nav-arrow {
    background-image: url(../img/no_image.jpg);
}

.post-navigation .nav-next a .nav-arrow {
    background-image: url(../img/no_image.jpg);
}

.nav-links-single .nav-links .screen-reader-text {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    color: #20212b;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links-single .nav-links .screen-reader-text:hover, .nav-links-single .nav-links .screen-reader-text {
    clip: auto !important;
    top: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    padding: 0 !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: none !important;
    margin-bottom: 0 !important;
    display: inline-block !important;
}

.nav-links-single .nav-links .nav-previous .screen-reader-text {
    padding-left: 20px !important;
    letter-spacing: 0;
}

.nav-links-single .nav-links .nav-next .screen-reader-text {
    padding-right: 20px !important;
}

.nav-links-single .nav-links .screen-reader-text:before {
    position: absolute;
    z-index: 1;
    top: 0;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.nav-links-single .nav-links .nav-previous .screen-reader-text:before {
    content: '\f060';
    left: 0;
}

.nav-links-single .nav-links .nav-next .screen-reader-text:before {
    content: '\f061';
    right: 0;
    left: auto;
}

.nav-links-single .nav-links .post-title {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #20212b;
    line-height: 26px;
    letter-spacing: -0.5px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.nav-links-single .nav-links a:hover .screen-reader-text,
.nav-links-single .nav-links a:hover .post-title {
    color: #99cc00;
    text-decoration: none;
}

@media (max-width: 1279px) {
    .nav-links-single .nav-links a {
        min-height: 80px;
    }

    .nav-links-single .nav-links .nav-previous a {
        padding-left: 100px;
    }

    .nav-links-single .nav-links .nav-next a {
        padding-right: 100px;
    }

    .nav-links-single .nav-links a .nav-arrow {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

@media (max-width: 767px) {
    .nav-links-single .nav-links .nav-next a, .nav-links-single .nav-links .nav-previous a {
        padding: 0;
    }

    .nav-links-single .nav-links .screen-reader-text:hover, .nav-links-single .nav-links .screen-reader-text {
        margin-top: 0 !important;
        display: block !important;
        margin-bottom: 6px !important;
        font-size: 12px !important;
    }

    .nav-links-single .nav-links a {
        display: block;
    }

    .nav-links-single .nav-links a .nav-arrow {
        position: static;
        left: auto;
        top: auto;
        right: auto;
        display: inline-block;
        width: 90px;
        height: 90px;
        line-height: 90px;
        margin-bottom: 15px;
    }

    .nav-links-single .nav-links .post-title {
        font-size: 18px;
        line-height: 26px;
    }
}

/* ==========================================================================
   8.0 Related Posts
   ========================================================================== */
.related-posts {
    margin: 70px 0 0;
}

.related-posts-list .thumb {
    position: relative;
    overflow: hidden;
}

.related-posts-list .thumb a {
    display: block;
}

.related-posts-list .thumb a img {
    transition: all 500ms linear 0ms;
}

.related-posts-list .thumb a:hover img {
    transform: scale(1.1);
}

.related-posts h3.rel-title {
    font-family: "Work Sans", sans-serif;
    color: #20212b;
    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: -7.5px;
    padding: 0;
}

.related-posts-list li {
    float: left;
    width: 50%;
    padding: 7.5px;
}

.related-posts-list.rel-column-1 li {
    width: 100%;
}

.related-posts-list.rel-column-2 li {
    width: 50%;
}

.related-posts-list.rel-column-3 li {
    width: 33.33%;
}

.related-posts-list.rel-column-4 li {
    width: 25%;
}

.related-posts-list li .rel-post-content {
    box-shadow: 0px 5px 15px 0px rgba(130, 136, 147, 0.13);
    display: block;
    padding: 30px 25px;
}

@media screen and (max-width: 767px) {

    .related-posts-list.rel-column-3 li,
    .related-posts-list.rel-column-4 li {
        width: 50%;
    }
}

@media screen and (max-width: 580px) {

    .related-posts-list.rel-column-2 li,
    .related-posts-list.rel-column-3 li,
    .related-posts-list.rel-column-4 li {
        width: 100%;
    }
}

.related-posts-list li .rel-post-content .meta-info .meta-cat {
    display: inline-block;
    position: relative;
    padding-right: 13px;
    margin-right: 3px;
}

.related-posts-list li .rel-post-content .meta-info .meta-cat:after {
    content: '/';
    right: 0;
    position: absolute;
    top: 0;
    color: #999;
}

.related-posts-list li .rel-post-content .meta-info .meta-cat a {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #99cc00;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.related-posts-list li .rel-post-content .meta-info .meta-cat a:hover {
    opacity: 0.8;
}

.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: 600;
    color: #6a8695;
    letter-spacing: 0.5px;
    display: inline-block;
}

.related-posts-list li .rel-post-content h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    letter-spacing: -1px;
}

.related-posts-list li .rel-post-content h4 a {
    text-decoration: none;
    color: #20212b;
}

.related-posts-list li .rel-post-content h4 a:hover {
    color: #99cc00;
}

.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: #20212b;
}

.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: #20212b;
    background-attachment: scroll;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    display: block;
    height: 400px;
    position: relative;
    z-index: 1;
}

.page-header.no-image:before {
    display: none;
}

.transparent-header .page-header {
    padding-top: 117px;
    height: 597px;
}

.page-header h1.page-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    letter-spacing: -1px;
    color: #fff;
    position: relative;
    margin: 0;
    font-size: 42px;
    text-transform: inherit;
    font-weight: 600;
    line-height: 52px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    text-transform: capitalize;
}

.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.3);
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* ==========================================================================
   11.0 Breadcrumb
   ========================================================================== */
.breadcrumb-wrap {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-wrap li {
    display: inline-block;
    font-family: "Poppins", serif;
    color: #ddd;
    font-size: 14px;
    line-height: 1;
    position: relative;
    text-transform: capitalize;
}

.breadcrumb-wrap li:not(:last-of-type):after {
    background-color: #fff;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateX(-50%);
    opacity: 0.5;
}

.breadcrumb-wrap li:not(:last-of-type) {
    margin-right: 10px;
    padding-right: 12px;
}

.breadcrumb-wrap li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-wrap li a i {
    margin-right: 6px;
}

.breadcrumb-wrap li a:hover {
    color: #99cc00;
    text-decoration: none;
}

/* ==========================================================================
   12.0 Author Info
   ========================================================================== */
.page-header.author-page {
    height: 500px;
}

.author-posts-title {
    position: relative;
    padding-bottom: 12px;
    color: #20212b;
    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: #f8f8f8;
}

.author-bio .bio-inner {
    position: relative;
    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: 130px;
    height: 130px;
    border-radius: 3px;
}

.author-bio .bio-inner h3 {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    color: #20212b;
    letter-spacing: -1px;
}

.author-bio .bio-inner p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: #555;
}

.author-bio .author-posts-link {
    font-size: 16px;
    color: #99cc00;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.author-bio .author-posts-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   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: #20212b;
}

.error-404 p {
    color: #20212b;
}

.error-404 a {
    color: #20212b;
}

.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: #f5f5f5;
    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 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;
}

.give-sidebar .widget:not(:last-of-type),
.widget-area .widget:not(:last-of-type) {
    margin-bottom: 60px;
}

.give-sidebar .widget-title,
.widget-title {
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.widget_rss .widget-title h3 a:last-child,
.give-sidebar .widget-title,
.widget-title h3 {
    color: #20212b;
    font-size: 14px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
    line-height: normal;
    letter-spacing: 0;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

.give-sidebar .widget-title {
    display: block;
    margin-bottom: 25px;
}

.give-sidebar .widget-title:after,
.widget-title h3:after {
    background-color: #99cc00#99cc00;
    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;
}

.widget .textwidget p img {
    margin: 10px 0;
}

.widget .textwidget .wp-caption {
    margin-right: 0;
    margin-top: 0;
}

.widget .textwidget .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.widget .textwidget .wp-caption .wp-caption-text img {
    width: auto;
    max-width: 100%;
}

/* 15.1 widget forms */
.widget select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0 10px;
}

/* 15.2 widget lists */
.widget ul li,
.widget ol li {
    font-family: "Open Sans", sans-serif;
    color: #20212b;
    font-size: 12px;
}

.widget ol,
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ol ol,
.widget ul ul {
    margin-left: 15px;
}

.widget ol li,
.widget ul li {
    padding-bottom: 15px;

}

.widget ol li li:first-child,
.widget ul li li:first-child {
    padding-top: 15px;
}

.widget ol li li:last-child,
.widget ul li li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget select,
.widget select option,
.widget ul li a {
    color: #20212b;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
    box-shadow: none;
    font-family: "Open Sans", sans-serif;
    letter-spacing: -0.2px;
}

.widget ul li a:hover {
    color: #99cc00;
    text-decoration: none;
}

.widget:not(.widget_tag_cloud) ul li+li {
    margin-top: -1px;
}

.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: #20212b;
}

.widget_rss .rss-date,
.widget_rss li cite {
    color: #20212b;
    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: #20212b;
}

/* 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 {
    list-style: none;
}

.widget.widget_recent_comments ul li {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #888;
}

.widget.widget_recent_comments ul li:before {
    display: none;
}

.widget.widget_recent_comments ul li a {
    color: #20212b;
    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 a:hover {
    color: #99cc00;
}

.widget.widget_recent_comments ul li span.comment-author-link {}

/* 15.8 Recent Posts widget */
.widget_recent_entries .post-date {
    display: block;
}

.widget_recent_entries ul {
    list-style: none;
}

.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: #20212b;
    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: 14px;
    color: #20212b;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 13px 0;
    transition: color 0.3s ease-in-out;
}

.search-form .search-btn:focus,
.search-form .search-btn:hover {
    color: #000000;
    outline: none;
    transition: color 0.3s ease-in-out;
}

.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 */
.portfolio-tags li,
.tagcloud ul li {
    display: inline-block;
    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;
}

.portfolio-tags li a,
.widget .tagcloud a,
.widget.widget_tag_cloud a,
.wp_widget_tag_cloud a {
    background-color: #f5f5f5;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: inline-block;
    padding: 5px 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: 600;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.portfolio-tags li a:hover,
.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: #99cc00;
    color: #fff;
    border-color: #99cc00;
    -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: 0px 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: 0px solid #fff;
    border-bottom: none;
    color: #20212b;
    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: #20212b;
    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: #20212b;
    opacity: 0.5;
}

.widget.widget_calendar #wp-calendar td {
    padding: 5px;
    color: #20212b;
    font-size: 12px;
}

.widget.widget_calendar #wp-calendar td a {
    font-weight: 700;
    color: #20212b;
}

.widget-box .widget.widget_calendar #wp-calendar {
    border: 1px solid #20212b;
}

.widget-box .widget.widget_calendar #wp-calendar th {
    border-color: #20212b;
}

/* 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: #20212b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-pattern {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.4;
}

.footer-widgets {
    margin-top: -15px;
    margin-bottom: -15px;
    column-gap: 0;
}

.footer-widgets .m-col {
    margin-bottom: 0;
}

.footer-widget {
    padding: 20px 15px;
}

.dark-widget .widget_rss .widget-title a:last-child,
.dark-widget .widget-title h3 {
    color: #fff;
}

.dark-widget .widget-about p,
.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 ul li {
    color: #999;
    border: none;
}

.dark-widget .search-form .form-control {
    border: none !important;
}

.dark-widget .search-form .search-btn {
    color: #888;
}

.dark-widget .search-form .search-btn:focus,
.dark-widget .search-form .search-btn:hover {
    color: #ddd;
}

.dark-widget .widget ul li a {
    color: #ddd;
}

.dark-widget .widget ul li a:hover {
    color: #99cc00;
}

.dark-widget .widget .tagcloud a,
.dark-widget .widget.widget_tag_cloud a,
.dark-widget .wp_widget_tag_cloud a {
    background-color: rgba(255, 255, 255, 0.05);
    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: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dark-widget .widget select {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.dark-widget .widget select option {
    color: #20212b;
}

.dark-widget .widget.widget_calendar #wp-calendar caption {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 0px solid #fff;
    color: #ddd;
}

.dark-widget tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-widget td {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.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: rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.dark-widget th:first-child, .dark-widget td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-widget .widget_rss .rssSummary,
.dark-widget .widget_rss .rss-date, .dark-widget .widget_rss li cite {
    color: #ddd;
}

.dark-widget .widget-box .search-form .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ==========================================================================
   17.0 Comments
   ========================================================================== */
#comments {
    clear: both;
    padding: 0;
    margin-top: 70px;
}

.related-posts h3.rel-title,
.comment-respond .comment-reply-title,
#comments .comments-title {
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 40px;
    color: #20212b;
    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;
    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: #20212b;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0;
    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: #6a8695;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.comment-metadata a.comment-edit-link {
    margin-left: 1em;
}

.comment-body {
    color: #20212b;
    font-size: 14px;
    margin-bottom: 4em;
}

.comment-reply-link {
    font-weight: 600;
    position: relative;
    font-family: "Work Sans", sans-serif;
    font-size: 11px;
    color: #fff;
    background-color: #99cc00;
    padding: 7px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.comment-reply-link .icon {
    color: #20212b;
    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 {
    opacity: 0.8;
    color: #fff;
}

.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: #20212b;
    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: #f5f5f5;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    color: #20212b;
    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 #f5f5f5;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 13px;
    color: #20212b;
    transition: all 0.3s ease-in-out;
}

.comments-pagination .page-numbers:hover,
.comments-pagination .page-numbers.current {
    background-color: #f5f5f5;
    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: #99cc00;
    width: inherit;
    height: inherit;
    padding: 20px 45px;
    font-family: "Work Sans", sans-serif;
    letter-spacing: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
}

.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: #f7f7f7;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    border-radius: 2px;
    box-sizing: border-box;
    color: #20212b;
    cursor: pointer;
    border: none;
    padding: 15px;
    letter-spacing: -0.2px;
    border: none;
    outline: none;
}

.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 .comment-notes {
    color: #20212b;
}

.comment-list li.trackback .comment-body,
.comment-list li.pingback .comment-body {
    margin: 0 0 35px 0;
    padding-left: 0;
}

.comment-navigation {
    margin-bottom: 20px;
}

.comment-navigation a {
    color: #20212b;
}

.comment-navigation a:hover {
    text-decoration: underline;
}

.comment-form p:last-child {
    margin: 0;
}

/* Password Form */
.cht-form {}

.cht-form label {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #20212b;
    letter-spacing: 0;
}

.cht-form input[type="password"] {
    display: block;
    line-height: inherit;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 12px;
    background-color: #f7f7f7;
    border: none;
    border-radius: 2px 0px 0px 2px;
    color: #6a8695;
    min-width: 250px;
    max-width: 100%;
    width: auto;
    margin: 0;
    letter-spacing: -0.2px;
}

.cht-form .pass-button {
    background: #99cc00;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    padding: 19px 50px;
    border-radius: 0px 2px 2px 0;
    transition: opacity 0.2s ease;
}

.cht-form .pass-button:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.cht-form .pass-button:focus {
    outline: none;
}

.cht-form .pass-form-inner {
    display: flex;
    align-items: center;
    justify-content: start;
}

@media (max-width: 480px) {
    .cht-form .pass-form-inner {
        display: block;
    }

    .cht-form .pass-button {
        margin-top: 10px;
    }
}

/* ==========================================================================
   18.0 Events
   ========================================================================== */
.dl-event-inner {
    padding-bottom: 40px;
}

.dl-event .event-thumb {
    position: relative;
}

.dl-event .event-thumb img {
    border-radius: 3px;
    width: 100%;
}

.dl-event .event-details {
    text-align: center;
    background-color: #fff;
    border-radius: 3px;
    padding: 20px;
    position: absolute;
    width: 90%;
    height: auto;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    -webkit-box-shadow: 0 3px 15px 2px rgba(0, 0, 0, .06);
    box-shadow: 0 3px 15px 2px rgba(0, 0, 0, .06);
}

.dl-event .event-details h3 {
    margin: 0;
    margin-bottom: -3px;
}

.dl-event .event-details h3 a {
    font-size: 18px;
    color: #20212b;
    font-weight: 600;
}

.dl-event .event-details h3 a:hover {
    color: #99cc00;
}

.dl-event .event-meta {
    margin: 0;
    padding: 0;
}

.dl-event .event-meta li {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0 5px;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
}

.dl-event .event-meta li i {
    color: #99cc00;
    margin-right: 8px;
}

.dl-event .date {
    background-color: #99cc00;
    display: inline-block;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    padding: 5px 15px;
    text-align: center;
    border-radius: 2px;
    font-family: "Work Sans", sans-serif;
    position: absolute;
    right: 20px;
    top: 20px;
    margin: 0;
    line-height: 25px;
}

.dl-event .date:hover {
    opacity: 1;
}

.dl-event .date.color-green {
    background-color: #00bea2;
}

.dl-event .date.color-yellow {
    background-color: #f9ae00;
}

.dl-event .date span {
    display: block;
    text-align: center;
    font-size: 22px;
    margin-bottom: -5px;
}

/* Event Details */
.event-gallery {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    margin: 0 -5px;
}

.event-gallery li {
    display: inline-block;
    width: 33.33%;
    padding: 5px;
}

.event-gallery li img {
    width: 100%;
    transition: all 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.event-gallery li a:hover img {
    filter: grayscale(0.4);
}

@media (max-width: 767px) {
    .event-gallery li {
        width: 50%;
    }
}

@media (max-width: 380px) {
    .event-gallery li {
        width: 100%;
    }
}

/* Portfolio */
.gallery-title h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    margin: 0;
}

.gallery-carousel {
    position: relative;
}

.gallery-carousel .swiper-slide {
    width: auto;
    height: 600px;
    cursor: ew-resize;
}

.gallery-carousel .swiper-slide img {
    height: 600px;
    width: auto;
}

.gallery-carousel .button-next,
.gallery-carousel .button-prev {
    font-size: 24px;
    width: 60px;
    height: 60px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    color: #222;
    background-color: #fff;
    line-height: 56px;
    text-align: center;
    display: block;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.gallery-carousel .button-next.swiper-button-disabled,
.gallery-carousel .button-prev.swiper-button-disabled {
    cursor: default;
    opacity: 0.8;
}

.gallery-carousel .button-next {
    left: auto;
    right: -30px;
}

.gallery-carousel .button-next:hover,
.gallery-carousel .button-prev:hover {
    opacity: 0.9;
    transition: all 0.3s ease-in-out;
}

.gallery-carousel:hover .button-next,
.gallery-carousel:hover .button-prev {
    visibility: visible;
    opacity: 1;
}

.gallery-carousel.always-visable .button-next,
.gallery-carousel.always-visable .button-prev {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.gallery-carousel.always-visable .button-next {
    left: auto;
    right: 0;
}

.gallery-carousel:hover .button-prev {
    left: 10px;
}

.gallery-carousel:hover .button-next {
    left: auto;
    right: 10px;
}

.gallery-carousel .swiper-pagination-bullets {}

.gallery-carousel .swiper-pagination-bullets span {
    background-color: #222;
    opacity: 0.5;
    transition: all 0.3s linear;
}

.gallery-carousel .swiper-pagination-bullets span.swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
    transition: all 0.3s linear;
}

.portfolio-taxo {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-taxo li {
    display: block;
}

.portfolio-taxo li:not(:last-of-type) {
    margin-bottom: 5px;
}

@media (max-width: 600px) {

    .gallery-carousel .swiper-slide,
    .gallery-carousel .swiper-slide img {
        height: 450px;
    }

    .gallery-title.mb-30 {
        margin-bottom: 20px;
    }

    .gallery-title h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   19.0 Footer
   ========================================================================== */
.footer-wrap {
    background-color: #20212b;
    color: #bbb;
    padding: 25px 0;
    display: block;
}

.footer-wrap .site-info {
    color: #bbb;
}

.footer-wrap .site-info a {
    text-decoration: none;
    box-shadow: none;
    color: #bbb;
}

.footer-wrap .site-info a:hover {
    color: #ddd;
}

.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: #ddd;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
}

.footer-menu li a:hover {
    color: #fff;
    text-decoration: none;
}

/* Subscription Section */
.subscribe-section {
    padding-top: 50px;
}

.charitian .wrapper.show {
    padding-top: 150px;
}

.subscribe-wrapper {
    background-color: #fff;
    margin-bottom: -50px;
    padding: 40px 50px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
    -webkit-transition: all .3s ease-in-out;
    position: relative;
    z-index: 10;
}

.subscribe-wrapper .subs-wave {
    background-image: url(../img/message.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 35px;
    bottom: 0;
}

.subscribe-wrapper .tree {
    background-image: url(../img/child.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    position: absolute;
    width: 198px;
    height: 221px;
    right: 0;
    bottom: 0;
}

.subscribe-wrapper .section-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: -1px;
    font-weight: 600;
}

.subscribe-wrapper .section-heading p {
    margin-bottom: 0;
}

.subscribe-wrapper .subscribe-form {
    position: relative;
    width: 85%;
}

.subscribe-wrapper .subscribe-form .form-input {
    background-color: #20212b;
    color: #fff;
    border: none;
    width: 100%;
    height: 55px;
    padding: 20px;
    padding-right: 150px;
    border-radius: 30px;
}

.subscribe-wrapper .subscribe-form .submit-btn,
.subscribe-wrapper .subscribe-form .form-input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.subscribe-wrapper .subscribe-form .submit-btn {
    background-color: #99cc00;
    font-family: "Work Sans", sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    border-radius: 30px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0;
    padding: 0 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.subscribe-wrapper .subscribe-result p {
    margin: 15px 0 0;
    padding: 15px;
    display: none;
}

.subscribe-wrapper .subscribe-result.subs-success p.subscription-success {
    display: block;
}

.subscribe-wrapper .subscribe-result.subs-error p.subscription-error {
    display: block;
}

.subscribe-wrapper .subscribe-result p.subscription-success {
    border: 1px solid #5ecc62;
}

.subscribe-wrapper.subscribe-result p.subscription-error {
    border: 1px solid #ff4c4c;
}

@media (max-width: 767px) {
    .charitian .wrapper.show {
        padding-top: 110px;
    }
}

/* ==========================================================================
   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: #99cc00;
    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;
}

/*
* Responsive Media Query
*/
@media (min-width: 1250px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    .header-menu-wrap ul li>a {
        padding: 0 10px;
    }

    .project-cover {
        height: 500px;
    }
}

/* ---- Start of max-width 992px CSS ---- */
@media (max-width: 992px) {
    .charitian .wrapper {
        padding: 80px 0;
    }

    .sm-padding {
        padding: 15px;
    }

    .sm-br-none br {
        display: none;
    }

    .fz-45 {
        font-size: 35px;
    }

    .video-content {
        padding: 0;
    }

    .sm-no-padding {
        padding: 0;
    }

    .page-header {
        height: 320px;
    }

    .header-3 .page-header {
        height: 400px;
    }

    .primary-header-two .header-right a.header-btn {
        margin: 0;
    }

    .header-two .mid-header .header-logo {
        text-align: center;
    }

    .content-block-full .ptb-115,
    .content-block-full .entry-content {
        padding: 45px 0;
        margin-left: 15px;
    }

    .content-block-full h2 br {
        display: none;
    }

    .single-post-header h1 {
        font-size: 45px;
    }

    .related-posts-list li h4 {
        font-size: 18px;
    }

    #right-sidebar {
        margin-top: 40px;
    }

    #left-sidebar {
        margin-bottom: 40px;
    }

    .project-cover {
        height: 420px;
    }

    .rel-posrtfolios .wt-col {
        padding: 10px;
    }

    .portfolio-related-posts {
        margin-top: 35px;
    }

    .portfolio-desc {
        margin-bottom: 20px;
    }

    .portfolio-related-posts .ps-title {
        margin-bottom: 20px;
    }

    .blog-posts .blog-post-inner .footer-meta-right .comments,
    .blog-posts .blog-post-inner .footer-meta-right a,
    .blog-posts .blog-post-inner .readmore {
        font-size: 10px;
    }

    .blog-posts .blog-post-inner .footer-meta-right .comments {
        display: none;
    }
}

/* ---- End of max-width 992px CSS ---- */

/* ---- Start of max-width 767px CSS ---- */
@media all and (max-width: 767px) {
    body, p {
        font-size: 14px;
        line-height: 26px;
    }

    .charitian .wrapper,
    .padding {
        padding: 60px 0;
    }

    .padding-100, .padding-120 {
        padding: 80px 0;
    }

    .fz-40, .fz-45, .fz-50 {
        font-size: 30px;
    }

    .xs-padding {
        padding: 15px;
    }

    .xs-text-left {
        text-align: left;
    }

    .xs-text-center {
        text-align: center;
    }

    .xs-no-padding {
        padding: 0;
    }

    .xs-ptb-50 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .xs-t-white {
        color: #fff;
    }

    .xs-br-none br {
        display: none;
    }

    .mb-xs-20 {
        margin-bottom: 20px !important;
    }

    .mb-xs-10 {
        margin-bottom: 10px;
    }

    .mb-100 {
        margin-bottom: 40px;
    }

    .single-post-header {
        height: 450px;
    }

    .transparent-header .page-header,
    .page-header {
        height: 270px;
        padding-top: 0;
    }

    .header-3 .page-header {
        height: 450px;
    }

    .page-header h1.page-title {
        font-size: 28px;
        line-height: 32px;
    }

    .breadcrumbs {
        margin: 10px 0 0;
    }

    .testi-content {
        margin-left: 0;
    }

    .bg-color {
        width: 100%;
    }

    .google-map {
        height: 280px;
    }

    .filter-items .padding-10 {
        padding: 5px;
    }

    .subs-custom .email-field {
        line-height: 43px;
    }

    .single-post-header h1 {
        font-size: 35px;
    }

    .project-cover {
        margin-bottom: 40px;
    }

    .related-posts-list li {
        width: 50%;
    }

    #scrollup {
        width: 35px;
        height: 35px;
        bottom: 30px;
        right: 30px;
    }

    #scrollup .scroll-to-top {
        font-size: 8px;
        line-height: 35px;
    }

    .full-width #right-sidebar,
    .full-width #left-sidebar {
        padding: 0 30px;
    }

    .full-width .pagination-wrap {
        margin-left: 10px;
    }

    .comments-area .comment-reply-title,
    .comments-area .comments-title {
        font-size: 20px;
        line-height: 1.1;
    }

    .comment-list li>.children li>.children {
        margin-left: 0;
    }

    .sp-head-right {
        float: none;
    }

    .top-contact-info {
        font-size: 13px;
    }

    .site-info,
    .footer-menu {
        text-align: center;
    }

    .footer-menu li {
        margin: 0 5px;
    }
}

/* ---- End of max-width 767px CSS ---- */

/* ---- Start of max-width 520px CSS ---- */
@media all and (max-width: 520px) {
    .counter-section .col-xs-6 {
        float: left;
        width: 50%;
    }

    .food-menu .padding-50 {
        padding: 40px;
    }

    .menu_list li h4, .menu_list li span.price {
        font-size: 16px;
    }

    .ptb-140 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .subs-custom .col-xs-8,
    .subs-custom .col-xs-4 {
        width: 100%;
        padding: 10px;
    }

    .subs-custom .b-btn {
        margin: 0;
    }

    .related-posts-list li {
        width: 100%;
        padding: 0;
    }

    .related-posts-list li:first-child {
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 20px;
    }

    .page-header h1 {
        font-size: 18px;
    }

    .page-header.sine-post-header {
        padding: 80px 0;
    }

    .blog-single .entry-footer {
        display: block !important;
    }

    .post-navigation .nav-inner {
        padding: 10px 30px;
    }

    .post-navigation a {
        font-size: 14px;
    }

    .post-navigation a i {
        font-size: 20px;
    }

    .entry-footer .meta-info {
        max-width: 100%;
    }

    .comment-list li>.children,
    .comment-list li>.children li>.children {
        margin-left: 20px;
    }

    #scrollup {
        bottom: 20px;
        right: 20px;
    }

    .pagination-wrap li .page-link {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 12px;
    }

    .pagination-wrap li a {
        line-height: 33px;
    }

    .subscribe-wrapper {
        padding: 30px;
    }

    .subscribe-wrapper .subscribe-form .form-input {
        padding: 20px;
    }

    .subscribe-wrapper .subscribe-form .submit-btn,
    .subscribe-wrapper .subscribe-form {
        width: 100%;
    }

    .subscribe-wrapper .subscribe-form .submit-btn {
        position: inherit;
        top: 10px;
        right: 0;
    }
}

/* ---- End of max-width 480px CSS ---- */


/* ---- Start of max-width 420px CSS ---- */
@media all and (max-width: 420px) {
    .post-navigation a span {
        font-size: 13px;
    }

    .post-navigation a .fa.fa-chevron-right {
        margin-left: 10px;
    }

    .post-navigation a .fa.fa-chevron-left {
        margin-right: 10px;
    }

    .row {
        margin: 0;
    }
}

/* ---- End of max-width 520px CSS ---- */

@media all and (max-width: 598px) {
    .admin-bar .fixed-top.header {
        top: 0;
    }

    .header-3 a.header-btn,
    .header-1 a.header-btn {
        display: none;
    }

    .tab-container {
        min-height: 330px;
    }

    .author-bio .bio-inner {
        display: block;
    }

    .author-bio .bio-inner .avatar {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .top-left {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }

    .top-bar .top-left li {
        font-size: 14px;
        display: block;
        padding: 0;
        line-height: 1;
    }

    .top-bar .top-left li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .primary-header-inner .header-right {
        margin-left: 0;
    }

    .header-right a.dl-btn {
        padding: 3px 10px;
        font-size: 14px;
        line-height: 32px;
        margin: 0;
        margin-left: 15px;
    }

    .primary-header-two .header-right a.dl-btn {
        padding: 5px 15px;
    }

    .header-three .top-bar .top-left li,
    .header-three .top-bar .top-left li:first-child {
        border: none;
    }

    .header-one .header-right .dl-btn {
        display: none;
    }
}


/* ---- Start of max-width 380px CSS ---- */
@media all and (max-width: 380px) {
    h1.fz-45 {
        font-size: 20px;
    }

    h1.fz-60 {
        font-size: 30px;
    }

    .primary-header .header-logo {
        max-width: 140px;
    }

    #comments,
    .related-posts,
    .post-navigation {
        margin-top: 35px;
    }

    .post-navigation a .fa.fa-chevron-left {
        margin-right: 10px;
    }

    .post-navigation a .fa.fa-chevron-right {
        margin-left: 10px;
    }

    .post-navigation a .fa {
        width: 25px;
        height: 25px;
        line-height: 23px;
    }

    .post-navigation a span {
        font-size: 10px;
        line-height: 23px;
    }
}

/* ---- End of max-width 380px CSS ---- */

@media (max-width: 320px) {
    .primary-header .header-logo {
        max-width: 122px;
    }

    .header-right .mobile-menu-icon {
        margin-left: 10px;
    }
}