/*  ==========================================================================
    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
        5.1 Portfolio Related Posts
        5.2 Portfolio Details
    6.0 Blog
        6.1 Sticky Post
        6.2 Single Post
    7.0 Pagination
    8.0 Related Posts
    9.0 Featured Image Hover
    10.0 Page Header
    11.0 Breadcrumb
    12.0 Author Info
        12.1 Author Profile
    13.0 404 Page
    14.0 Content None
    15.0 Widgets
        15.1 widget forms
        15.2 widget lists
        15.3 Widget lists of links
        15.4 Widget Markup
        15.5 Text widget
        15.6 RSS Widget
        15.7 Recent Comments
        15.8 Recent Posts widget
        15.9 Search Box
        15.10 Tag cloud widget
        15.11 Calendar widget
        15.12 Gallery widget
    16.0 Footer Widgets
    17.0 Comments
    18.0 Footer
    19.0 Scroll To Top

    ==========================================================================
    Struqta
    ========================================================================== */

/* ==========================================================================
   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: var(--struqta-grey-color);
    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: var(--struqta-grey-color);
    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: var(--struqta-grey-color);
}

.learn-more:hover {
    color: var(--struqta-grey-color);
    text-decoration: underline;
}

/* Button */

.dl-btn {
    background-color: var(--struqta-bg-primary);
    font-family: var(--struqta-primary-font);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1px;
    text-transform: capitalize;
    display: inline-block;
    letter-spacing: 0;
    padding: 22px 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dl-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--struqta-bg-dark);
    -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);
    transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1),
        -webkit-transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
    -webkit-transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    transition-timing-function: cubic-bezier(0.85, 0, 0.08, 1);
    z-index: -1;
}

.dl-btn:focus,
.dl-btn:hover {
    color: #fff;
}

.dl-btn:hover:before {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

/* ==========================================================================
   3.0 Preloader
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    height: 100%;
    width: 100%;
    -webkit-transition: all .5s .5s ease;
    -moz-transition: all .5s .5s ease;
    transition: all .5s .2s ease;
}

.loader {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -30px;
}

#preloader .loader:before{
    display: none;
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   4.0 Header
   ========================================================================== */

.header {
    background-color: #fff;
    width: 100%;
    height: auto;
    display: block;
}

.header-logo {
    max-width: 150px;
    padding: 10px 0;
}

/* Headroom css */

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    z-index: 99;
}

.sticky-header.sticky-fixed-top {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.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: 32px;
}

.headroom {
    transition: transform .25s ease-in-out;
    will-change: transform;
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.headroom--pinned {
    transform: translateY(0);
}

.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: var(--struqta-bg-dark);
    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);
}

/* Header Cart */
.dl-shopping-cart-btn {
    display: flex;
    font-size: 24px;
    color: var(--struqta-dark-color);
    cursor: pointer;
}

.shopping-cart-inner {
    position: relative;
    display: flex;
    height: 25px;
}

.dl-shopping-cart-btn svg {
    width: auto;
    height: 30px;
    fill: currentColor;
    transition: all 0.3s ease-in-out;
}

.dl-shopping-cart-btn:hover svg{
    opacity: 0.8;
}

.shopping-cart-inner span.count {
    width: 17px;
    height: 17px;
    background-color: var(--struqta-bg-primary);
    color: #fff;
    font-size: 10px;
    position: absolute;
    right: 0;
    bottom: -8px;
    border-radius: 50%;
    z-index: 1;
    line-height: 17px;
    text-align: center;
    font-weight: 500;
}

/* 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 {
    font-family: var(--struqta-primary-font);
    display: block;
    font-size: 15px;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--struqta-dark-color);
    padding: 0 15px;
    height: 80px;
    line-height: 80px;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

.header-menu-wrap ul li.current-menu-parent > a,
.header-menu-wrap ul li.current_page_item > a,
.header-menu-wrap ul li:hover > a {
    color: var(--struqta-primary-color);
}

.header-menu-wrap li ul {
    background-color: #fff;
    display: block;
    width: 220px;
    padding: 0;
    position: absolute;
    left: -35px;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
    -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: 15px 20px;
    text-align: left;
    position: relative;
}

.header-menu-wrap li li:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.header-menu-wrap li li:last-child {
    margin: 0;
}

.header-menu-wrap li li > a {
    font-family: var(--struqta-primary-font);
    display: block;
    height: auto;
    color: var(--struqta-dark-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-transform: capitalize;
    padding: 1px 7px !important;
    -webkit-font-smoothing: antialiased;
}

.header-menu-wrap li.current-menu-parent li.current-menu-item > a,
.header-menu-wrap li li:hover > a {
    color: var(--struqta-primary-color) !important;
}

.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: var(--struqta-bg-dark);
    }

    .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);
    }

    .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 ul li ul li ul,
    .header-menu-wrap ul li ul {
        background-color: transparent !important;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }

    .header-menu-wrap li li {
        padding-left: 11px;
    }

    .header-menu-wrap li li:last-child {
        border-bottom: none;
    }

    .header-menu-wrap li li > a {
        color: var(--struqta-dark-color);
        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;
    gap: 15px;
    margin-left: 20px;
}

.header-right .search-icon svg{
    fill: currentColor;
    width: auto;
    height: 30px;
}

.header-right .search-icon {
    color: var(--struqta-dark-color);
    cursor: pointer;
    font-size: 25px;
    display: flex;
    transform: rotate(-90deg);
    margin-top: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%, 0 60%);
    transition: all 0.3s ease-in-out;
}

.header-right .search-icon:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 80px;
}

.viewport-lg .primary-header .header-menu-wrap {
    display: block !important;
    
}

.viewport-lg .sticky-header .primary-header-two .header-menu-wrap{
    margin-left: auto;
}

@media ( max-width: 767px ) {
    .header-right .dl-btn,
    .header-right .search-icon{
        display: none;
    }

    .primary-header-two .header-right .dl-btn,
    .primary-header-two .header-right .search-icon{
        display: block;
    }
}

/* 4.2 Top Bar
=============== */

.top-bar {
    background-color: var(--struqta-bg-dark);
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.top-bar .top-left ul {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.top-bar .top-left li {
    font-family: var(--struqta-primary-font);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.top-bar .top-left li:before {
    background-color: var(--struqta-bg-primary);
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.top-bar .top-left li:after {
    background-color: transparent;
    border: 1px solid #fe5a0e;
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
}

.top-bar .top-left li a {
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
}

.top-social {
    display: flex;
    align-items: center;

}

.top-bar .top-social li {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .top-social li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .top-social li a {
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-social li a svg{
    width: auto;
    height: 15px;
    fill: currentColor;
}

.top-bar .top-social li a:hover {
    color: var(--struqta-primary-color);
}

@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
=============== */
.primary-header-one .header-menu-wrap {
    margin-left: auto;
}

.header-cart-btn {
    margin-left: 10px;
}

.header-cart-btn a {
    color: var(--struqta-dark-color);
    font-size: 25px;
    text-decoration: none;
    position: relative;
}

.header-cart-btn a .num {
    background: var(--struqta-bg-primary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    display: block;
    text-align: center;
    position: absolute;
    top: -7px;
    right: -7px;
}

/* 4.4 Header 2
=============== */

.header-two {
    border-bottom: 4px solid var(--struqta-primary-color);
    position: relative;
}

.header-two .mid-header {
    padding: 20px 0 60px 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: 150px;
}

.header-two .mid-header ul li {
    display: inline-block;
    padding-left: 50px;
    position: relative;
    line-height: 20px;
    font-family: var(--struqta-secondary-font);
    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: var(--struqta-primary-color);
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 40px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-two .mid-header ul li span {
    font-family: var(--struqta-primary-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--struqta-dark-color);
    text-transform: capitalize;
    display: block;
}

.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-inner {
    background-color: var(--struqta-bg-dark);
    padding: 0 30px;
}

.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: var(--struqta-primary-color);
}

.primary-header-two .header-menu-wrap li li > a {
    color: var(--struqta-dark-color);
}

.primary-header-two .header-menu-wrap li li:hover > a:hover {
    color: var(--struqta-primary-color);
}

.primary-header-two .header-right .dl-shopping-cart-btn,
.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%;
}

.primary-header-two .primary-header-inner .sticky-logo {
    display: none;
}

.sticky-header .primary-header-two .primary-header-inner .sticky-logo {
    display: block;
    max-width: 150px;
}

.sticky-header .primary-header-two {
    box-shadow: none;
    background-color: transparent;
}

.header-2 .sticky-header {
    background-color: var(--struqta-bg-dark);
    -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: var(--struqta-bg-dark);
        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: 10px 20px;
    }

    .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: var(--struqta-dark-color) !important;
    }

    .header-1 .header-right a.dl-btn {
        margin-left: 0;
        margin-right: 0;
    }
}

/* 4.5 Header 3
=============== */

.header-three {
    background-color: transparent;
    position: absolute;
    top: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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.1);
}

.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: var(--struqta-dark-color);
}

.header-three .header-menu-wrap li li:hover > a:hover {
    color: var(--struqta-primary-color);
}

.primary-header-three .header-right .dl-shopping-cart-btn,
.header-three .header-right .search-icon {
    color: #fff;
}

/* Product Page Header */
.single-product .header-three{
    background-color: #fff;
    position: inherit;
}

.single-product .header-three .top-bar{
    background-color: var(--struqta-bg-dark);
}
.single-product .header-three .primary-header-three .header-right .dl-shopping-cart-btn, 
.single-product .header-three .header-right .search-icon,
.single-product .header-three .header-menu-wrap ul li > a{
    color: var(--struqta-dark-color);
}

.single-product .header-three .header-menu-wrap ul li:hover > a{
    color: var(--struqta-primary-color);
}

.sticky-header .primary-header-three .header-right .dl-shopping-cart-btn {
    color: var(--struqta-dark-color);
}

@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: var(--struqta-bg-dark);
    }

    .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: var(--struqta-dark-color) !important;
    }

    .primary-header .header-logo {
        max-width: 140px;
        padding: 10px 0;
    }

    .primary-header-three .primary-header-inner {
        padding: 0;
    }
}

/* 4.6 Search Box
================= */

#dl-popup-search-box {
    background-color: rgba(255, 255, 255, 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;
    width: 500px;
    max-width: 90%;
}

#dl-popup-search-box .box-inner-wrap input::-webkit-input-placeholder {
    /* Edge */
    color: var(--struqta-dark-color);
}

#dl-popup-search-box .box-inner-wrap input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--struqta-dark-color);
}

#dl-popup-search-box .box-inner-wrap input::placeholder {
    color: var(--struqta-dark-color);
}

#dl-popup-search-box .box-inner-wrap input {
    font-family: var(--struqta-primary-font);
    font-size: 32px;
    color: var(--struqta-dark-color);
    width: 100%;
    height: 60px;
    padding: 0 40px 0 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #bbb;
    border-radius: inherit;
}

#dl-popup-search-box .box-inner-wrap input:focus {
    outline: none;
}

#dl-popup-search-box .box-inner-wrap button {
    position: absolute;
    right: 30px;
    top: 0;
    background: transparent;
    color: var(--struqta-dark-color);
    width: 0;
    padding: 0;
    font-size: 30px;
    transform: translateY(15px);
}

#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: 22px;
    }
}

/* Cart Flyout */
.cart-aside {
    background-color: #F3F7FE;
    position: fixed;
    top: 0;
    width: 420px;
    padding: 50px;
    min-height: 100vh;
    bottom: 0;
    right: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 250ms ease;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    -webkit-transform: translate(200px, 0);
    transform: translate(200px, 0);
    max-width: 100%;
}

.open-cart-aside .cart-aside {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 1s ease;
}

.cart-aside .cart-aside-inner {
    display: block;
    height: 100%;
    position: relative;
}

.cart-overlay-global {
    position: fixed;
    background: #232324;
    z-index: 120;
    visibility: hidden;
    opacity: 0;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    transition: all 250ms ease-out;
}

.open-cart-aside .cart-overlay-global {
    visibility: visible;
    opacity: .7;
}

.cart-aside .aside-cart-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #ddd;
    cursor: pointer;
}

.cart-aside .aside-cart-close svg {
    fill: var(--struqta-grey-color);
    width: 20px;
    transition: opacity 0.35s ease-in-out;
}

.cart-aside .aside-cart-close:hover svg {
    opacity: 0.7;
}

.header-quickcart {
    padding-top: 50px;
}

.header-quickcart .widgettitle {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
}

.header-quickcart .widget_shopping_cart .cart_list {
    max-height: calc(100vh - 430px);
    overflow: auto;
    padding-right: 4px;
}

.header-quickcart .widget_shopping_cart .cart_list::-webkit-scrollbar {
    width: 0px;
}

.header-quickcart .widget_shopping_cart .cart_list:hover::-webkit-scrollbar {
    width: 4px;
}

.header-quickcart .widget_shopping_cart .cart_list li {
    padding: 0;
    overflow: hidden;
}

.header-quickcart .widget_shopping_cart .cart_list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.header-quickcart .cart_list li.mini_cart_item a.remove {
    display: block;
    font-weight: 400;
    font-size: 14px;
    height: 20px;
    line-height: 17px;
    overflow: hidden;
    right: 0;
    left: auto;
    text-align: right;
    width: 20px;
    font-family: Verdana, sans-serif;
    color: var(--struqta-grey-color) !important;
}

.header-quickcart .cart_list li.mini_cart_item a.remove:hover {
    background-color: transparent;
    color: var(--struqta-primary-color) !important;
    text-decoration: none;
}

.header-quickcart ul.product_list_widget li img {
    float: left;
    max-width: 70px;
    width: 70px;
    border-radius: 2px;
    margin: 0;
    margin-right: 20px;
    border: 1px solid #11071820;
}

.header-quickcart .cart_list li.mini_cart_item a:nth-child(2) {
    color: var(--struqta-dark-color);
    line-height: 22px;
}

.header-quickcart .product_list_widget li a:hover {
    text-decoration: none;
}

.header-quickcart .cart_list li.mini_cart_item .quantity,
.header-quickcart .cart_list li.mini_cart_item .quantity .amount {
    font-family: var(--struqta-base-font);
    font-size: 16px;
    color: var(--struqta-grey-color);
    font-weight: 400;
    letter-spacing: -0.2px;
}

.header-quickcart .widget_shopping_cart .total {
    border-top: none;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    color: var(--struqta-dark-color);
    font-weight: 600;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons:before,
.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons:after {
    display: none;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a {
    background-color: var(--struqta-bg-primary);
    display: block;
    margin: 0;
    height: auto;
    line-height: 1;
    padding: 15px 30px;
    text-align: center;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    letter-spacing: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header-quickcart .widget_shopping_cart_content .woocommerce-mini-cart__buttons a:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   5.0 Project Single
   ========================================================================== */
.single-dl-project.elementor-page .project-featured-img{
    margin-bottom: 10px;
}

@media (min-width: 993px) {
    .single-dl-project .site-main{
        padding-right: 10px;
    }
    .single-dl-project .elementor-section:not(.elementor-inner-section) {
        margin: 0 -10px;
    }
}

.portfolio-desc .ps-title,
.portfolio-related-posts .ps-title,
.ps-sidebar .ps-title {
    font-family: var(--struqta-primary-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--struqta-dark-color);
    text-transform: capitalize;
    line-height: 24px;
    letter-spacing: -1px;
    display: inline-block;
    position: relative;
}

.portfolio-desc .ps-title:before,
.portfolio-related-posts .ps-title:before,
.ps-sidebar .ps-title:before {
    background-color: var(--struqta-bg-primary);
    content: "";
    width: 50%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.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;
    width: 100%;
}

@media (min-width: 993px) {
    .project-featured-img {
        height: 450px;
        object-fit: cover;
        object-position: center;
    }
}

.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 #ddd;
    border-bottom: 1px solid #ddd;
}

.archive .dl-project-box .project-content span {
    background-color: var(--struqta-bg-primary);
    border-radius: 3px;
}

/* 5.1 Portfolio Related Posts
   =========================== */

.portfolio-related-posts {
    margin-top: 50px;
}

.rel-posrtfolios {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.rel-posrtfolios .dl-project-box {
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.rel-posrtfolios .dl-project-box .project-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding: 35px;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}

.rel-posrtfolios .dl-project-box .project-content span {
    background-color: var(--struqta-bg-primary);
    font-family: var(--struqta-secondary-font);
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
    border-radius: 0;
    padding: 5px 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.rel-posrtfolios .project-content h3 a {
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.rel-posrtfolios .dl-project-box .project-content h3 a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 992px){
    .rel-posrtfolios{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px){
    .rel-posrtfolios{
        grid-template-columns: 1fr;
    }
}

/* 5.2 Portfolio Details
   ===================== */

.portfolio-details {
    margin-bottom: 40px;
}

.portfolio-details .dl-social-share{
    justify-content: flex-start;
}

.ps-sidebar .portfolio-details:last-child {
    margin-bottom: 0;
}

.portfolio-details h3 {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 30px;
    vertical-align: middle;
    position: relative;
}

.portfolio-details h3:before {
    background-color: var(--struqta-bg-primary);
    display: inline-block;
    content: "";
    width: 60%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.portfolio-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.portfolio-details .ps-list li span,
.portfolio-details .project-contact-info li,
.portfolio-details .ps-list li {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.portfolio-details .ps-list li:not(:last-of-type),
.portfolio-details .project-contact-info li:not(:last-of-type) {
    margin-bottom: 15px;
}

.portfolio-details .ps-list li {
    color: var(--struqta-grey-color);
}

.portfolio-details .ps-list li span {
    margin-right: 10px;
    font-weight: 600;
}

.portfolio-details .ps-list li a:hover {
    color: var(--struqta-primary-color);
}

.portfolio-details .project-contact-info li i {
    color: var(--struqta-primary-color);
    font-size: 20px;
}

.portfolio-details .ps-launch-btn {
    background-color: var(--struqta-bg-primary);
    margin-top: 30px;
}

.dl-social-share-icons {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.dl-social-share-icons li {
    list-style: none;
}

.dl-social-share-icons li a {
    background-color: #f6f3ed;
    font-size: 14px;
    text-align: center;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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;
}

.portfolio-details .dl-lists li {
    list-style: none;
    margin-bottom: 10px;
}

.portfolio-details .dl-lists li a {
    background-color: #f6f3ed;
    font-family: var(--struqta-primary-font);
    font-size: 14px;
    line-height: 45px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--struqta-dark-color);
    text-decoration: none;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-details .dl-lists li a:hover {
    background-color: var(--struqta-bg-primary);
    color: #fff;
}

/* ==========================================================================
    6.0 Blog
   ========================================================================== */

body.blog {
    background-color: #f6f3ed;
}

.full-width .site-main {
    padding: 0 15px;
}

.struqta .wrapper {
    padding: 100px 0;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.blog-posts .blog-post {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
    padding: 15px;
}

.blog-posts.m-col-3 .blog-post {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
}

@media (max-width: 768px) {
    .blog-posts.m-col-3 .blog-post {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }
}

@media (max-width: 520px) {

    .blog-posts.m-col-3 .blog-post,
    .blog-posts .blog-post {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.col-lg-12.content-area {
    padding: 0;
}

.col-lg-9.content-area {
    padding-left: 0;
    margin-top: -15px;
}

@media (max-width: 992px) {
    .col-lg-9.content-area {
        padding: 0;
    }
}


.blog-posts .blog-post .blog-post-inner {
    box-shadow: 0 7px 10px rgba(196, 105, 107, 6%)
}

.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;
    transform: scale(1.05) translateX(0);
    transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.blog-posts .entry_thumb-link:hover img {
    transform: scale(1.05) translateX(2%);
}

.blog-posts .entry_header {
    padding-left: 15px;
    border-left: 3px solid var(--struqta-primary-color);
    margin-bottom: 15px;
    padding-bottom: 3px;
}

.blog-posts .entry_text {
    padding: 30px;
    background-color: #fff;
}

.blog-posts .entry_title {
    font-family: var(--struqta-primary-font);
    font-size: 24px;
    color: var(--struqta-dark-color);
    line-height: 30px;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.blog-posts .entry_title a {
    color: var(--struqta-dark-color);
    text-decoration: none;
}

.blog-posts .entry_title a:hover,
.blog-posts .entry_title a:focus {
    color: var(--struqta-dark-color);
}

.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: var(--struqta-secondary-font);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--struqta-primary-color);
}

.blog-posts .entry_header .meta-info .meta-cat a:not(:last-of-type) {
    margin-right: 5px;
}

.blog-posts .entry_header .post-date {
    font-family: var(--struqta-secondary-font);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 5px;
    display: inline-block;
    color: var(--struqta-grey-color);
}

.blog-posts .entry-excerpt .page-links {
    padding-bottom: 0;
}

.blog-posts .entry_meta-links a::after {
    content: ", ";
}

.blog-posts .entry_meta-links a:last-child::after {
    display: none;
}

.blog-posts .blog-post-inner .readmore {
    position: relative;
    text-decoration: none;
    font-family: var(--struqta-secondary-font);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--struqta-grey-color);
    display: inline-block;
    margin-top: 16px;
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
}

.blog-posts .blog-post-inner .readmore:hover {
    color: var(--struqta-grey-color);
}

.blog-posts .blog-post-inner .readmore .dl-arrow {
    width: 24px;
    height: 1px;
    top: 0;
    display: inline-block;
    background-color: var(--struqta-bg-primary);
    -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;
    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: var(--struqta-grey-color);
}

.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 .entry_text {
    border-bottom: 4px solid var(--struqta-primary-color);
}

.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 {
    background-color: #f6f3ed;
    margin: 0 4px 0 0;
    color: var(--struqta-dark-color);
    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: var(--struqta-grey-color);
    display: inline-block;
    padding: 0.5em 1em;
}

.page-links .post-page-numbers.current,
.page-links .post-page-numbers:hover {
    background-color: var(--struqta-bg-primary);
    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: var(--struqta-primary-color);
}

.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: var(--struqta-dark-color);
}

.blog-single header.entry-header .entry-meta .entry-item i {
    margin-right: 5px;
}

.blog-single .entry-title {
    font-family: var(--struqta-secondary-font);
    font-size: 30px;
    font-weight: 400;
    color: var(--struqta-dark-color);
    line-height: normal;
    text-decoration: none;
    margin: 0 0 10px;
}

/* Single Post Head */
.single-post-head {
    margin-bottom: 15px;
}

.single-post-head img {
    margin-bottom: 20px;
    width: 100%;
}

@media (min-width: 993px) {
    .single-post-head img {
        height: 450px;
        object-fit: cover;
        object-position: center;
    }
}

.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: var(--struqta-secondary-font);
    font-size: 12px;
    color: var(--struqta-dark-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-post-meta li a:hover {
    color: var(--struqta-dark-color);
}

.single-post-meta li i {
    margin-right: 10px;
    color: var(--struqta-primary-color);
}

.entry-content p:first-child {
    margin-top: 0;
}

/* Social Share */

.sp-head-right {
    float: right;
    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: var(--struqta-bg-primary);
    line-height: 28px;
    color: #fff;
}

.sp-head-right .label {
    font-family: var(--struqta-primary-font);
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    pointer-events: none;
    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 #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.entry-footer:before,
.entry-footer:after{
    display: none;
}

.entry-footer .edit-link {
    padding-right: 0;
    font-size: 11px;
    color: var(--struqta-grey-color);
    font-family: var(--struqta-secondary-font);
    font-weight: 700;
}

.entry-footer .meta-label {
    font-size: 13px;
    color: var(--struqta-dark-color);
    letter-spacing: 1px;
    font-weight: 700;
}

.entry-footer .entry-meta .entry-item {
    display: inline-block;
    margin-right: 10px;
    font-size: 13px;
    color: var(--struqta-dark-color);
}

.entry-footer .entry-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.entry-footer .entry-meta a {
    font-family: var(--struqta-primary-font);
    color: #555;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: lowercase;
}

.entry-footer .entry-meta a:before{
    content: '#';
}

.entry-footer .entry-meta a:hover {
    color: var(--struqta-primary-color);
}

.entry-content ol,
.entry-content ul {
    margin-left: 10px;
}

/* ==========================================================================
   7.0 Pagination
   ========================================================================== */

.navigation.pagination {
    margin-top: 40px;
}

.navigation.pagination .nav-links {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.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;
    color: var(--struqta-dark-color);
    border: 1px solid #eeeeee;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--struqta-primary-font);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.navigation.pagination .nav-links a:hover {
    background-color: var(--struqta-bg-primary);
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.navigation.pagination .nav-links span.page-numbers.current {
    background-color: var(--struqta-bg-primary);
    color: #fff;
}

.navigation.pagination .nav-links a.prev,
.navigation.pagination .nav-links a.next {
    font-size: 15px;
}

/* Pagination */

.nav-links-single {
    margin-top: 70px;
}

.post-navigation .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    align-items: center;
}

.post-navigation .nav-links a,
.post-navigation .nav-links a:hover{
    text-decoration: none;
}

.post-navigation .nav-links:before,
.post-navigation .nav-links:after{
    display: none;
}

.all-projects .post-navigation .nav-links {
    grid-template-columns: 1fr 30px 1fr;
}

@media (max-width: 580px) {
    .all-projects .post-navigation .nav-links {
        grid-column-gap: 10px;
    }
}

.nav-links svg{
    fill: currentColor;
    width: auto;
    height: 18px;
}

.post-navigation .nav-links .nav-next {
    text-align: right;
}

.nav-links .post-text {
    font-family: var(--struqta-secondary-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--struqta-grey-color);
    line-height: 1;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links .nav-next .post-text{
    justify-content: flex-end;
}

.nav-links .nav-text .post-title {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-transform: capitalize;
    word-break: break-word;
    margin: 0;
    transition: all 0.2s ease-in-out;
}

.nav-links .nav-text .post-title:hover {
    color: var(--struqta-primary-color);
}

.nav-links .nav-previous,
.nav-links .nav-next {
    border-radius: 2px;
    overflow: hidden;
}

.nav-links .has-image {
    background-color: var(--struqta-bg-dark);
    padding: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.nav-links .has-image:before {
    background-color: var(--struqta-bg-dark);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    z-index: -1;
}

.nav-links .has-image .post-text {
    color: #ddd;
}

.nav-links .has-image .post-title {
    color: #fff;
}

.single-post-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .nav-links .nav-text .post-title {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ==========================================================================
    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 {
    width: 100%;
    vertical-align: bottom;
    transform: scale(1.05) translateX(0);
    transition: all .8s cubic-bezier(.5, 1, .89, 1);
}

.related-posts-list .thumb a:hover img {
    transform: scale(1.05) translateX(2%);
}

.related-posts h3.rel-title {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    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 {
    background-color: #fff;
    display: block;
    padding: 30px;
    border: 1px solid #ddd;
    border-top: none;
}

@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: var(--struqta-secondary-font);
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--struqta-primary-color);
    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: var(--struqta-secondary-font);
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--struqta-grey-color);
    letter-spacing: 0.5px;
    display: inline-block;
}

.related-posts-list li .rel-post-content h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    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: var(--struqta-dark-color);
}

.related-posts-list li .rel-post-content h4 a:hover {
    color: var(--struqta-primary-color);
}

.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: var(--struqta-secondary-font);
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 25px;
}

.related-posts-list li .rel-post-content .rel-entry-meta a {
    font-family: var(--struqta-secondary-font);
    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: var(--struqta-dark-color);
}

.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 {
    backface-visibility: hidden;
    -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: var(--struqta-bg-dark);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    height: 400px;
    position: relative;
    z-index: 1;
}

.page-header.solid-color:before {
    display: none;
}

.transparent-header .page-header {
    padding-top: 117px;
    height: 597px;
}

.page-header h1.page-title {
    font-family: var(--struqta-primary-font);
    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.5);
    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: var(--struqta-primary-font);
    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: var(--struqta-primary-color);
    text-decoration: none;
}

/* ==========================================================================
   12.0 Author Info
   ========================================================================== */

.page-header.author-page {
    height: 500px;
}

.author-posts-title {
    position: relative;
    padding-bottom: 12px;
    color: var(--struqta-dark-color);
    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: var(--struqta-bg-dark);
    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: #f6f3ed;
}

.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;
    background-size: cover;
    background-position: center center;
    width: 130px;
    height: 130px;
    border-radius: 3px;
}

.author-bio .bio-inner h3 {
    font-family: var(--struqta-primary-font);
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 25px;
    font-weight: 600;
    color: var(--struqta-dark-color);
    letter-spacing: -1px;
}

.author-bio .bio-inner p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    color: var(--struqta-grey-color);
}

.author-bio .author-posts-link {
    font-size: 16px;
    color: var(--struqta-primary-color);
    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: 50px 0 100px;
}

.error-404 img {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.error-404 h1 {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 20px 0 15px;
    color: var(--struqta-dark-color);
}

.error-404 p {
    color: var(--struqta-dark-color);
    max-width: 600px;
    width: 100%;
    margin: 0 auto 20px;
}

@media (max-width: 767px) {
    .error-404 h1{
        font-size: 36px;
    }
}

/* ==========================================================================
    14.0 Content None
   ========================================================================== */

.no-results.not-found {
    display: block;
    width: 100%;
    padding: 15px;
}

.no-results.not-found.without-sidebar {
    padding: 40px 0;
}

.no-results.not-found .not-found-icon {
    background-color: #f6f3ed;
    color: #dd0000;
    width: 110px;
    height: 110px;
    line-height: 110px;
    font-size: 45px;
    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_search {
    padding: 0;
}

.widget-area .widget.widget_search .widget-title {
    display: none;
}

.widget-area .widget:not(:last-of-type) {
    margin-bottom: 60px;
}

.widget-title {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.widget_rss .widget-title h3 a:last-child,
.widget-title h3 {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: normal;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

.widget-title h3:after {
    background-color: var(--struqta-bg-primary);
    display: inline-block;
    content: "";
    width: 30%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.widget-title a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
}

.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 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li,
.widget ol li {
    font-family: var(--struqta-base-font);
    color: var(--struqta-dark-color);
    font-size: 12px;
}

.widget ul li:not(:last-of-type),
.widget ol li:not(:last-of-type) {
    margin-bottom: 8px;
}

.widget select,
.widget select option,
.widget ul li a {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
    text-decoration: none;
    box-shadow: none;
    letter-spacing: -0.2px;
    transition: all 0.3s ease-in-out;
}

.widget ul li a:focus,
.widget ul li a:hover {
    color: var(--struqta-primary-color);
    text-decoration: none;
}

/* Widget Categories */
.widget_categories .cat-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.widget_categories .cat-item a {
    font-family: var(--struqta-primary-font);
    color: var(--struqta-dark-color);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.widget_categories .cat-item a:focus,
.widget_categories .cat-item a:hover {
    color: var(--struqta-primary-color);
}

.widget_categories .cat-item a:before {
    background-color: var(--struqta-bg-primary);
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.widget_categories .cat-item a:after {
    background-color: transparent;
    border: 1px solid var(--struqta-primary-color);
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
}

.widget:not(.widget_tag_cloud) ul li + li {
    margin-top: -1px;
}

.widget ul li ul {
    margin: 0 0 -1px;
    padding: 0;
    position: relative;
}

.widget ul li li {
    border: 0;
    padding-left: 15px;
}

.widget ul li ul li {
    padding-left: 15px;
}

.widget ul li ul li:before,
.widget.widget_rss ul li:before {
    display: none;
}

/* 15.3 Widget lists of links */

.widget_rss ul li {
    padding-bottom: 15px;
    padding-top: 15px;
}

/* 15.4 Widget Markup */

.widget .post-date,
.widget .rss-date {
    font-size: 12px;
}

/* 15.5 Text widget */

.widget_text {
    word-wrap: break-word;
}

.widget_text ul {
    list-style: disc;
    margin: 0 0 25px 25px;
}

.widget_text ol {
    list-style: decimal;
}

.widget_text ul li,
.widget_text ol li {
    border: none;
}

.widget_text ul li:last-child,
.widget_text ol li:last-child {
    padding-bottom: 0;
}

.widget_text ul li ul {
    margin: 0 0 0 25px;
}

.widget_text ul li li {
    padding-left: 0;
    padding-right: 0;
}

.widget_text ol li {
    list-style-position: inside;
}

.widget_text ol li + li {
    margin-top: -1px;
}

/* 15.6 RSS Widget */

.widget_rss .widget-title a {
    box-shadow: none;
}

.textwidget b,
.textwidget strong,
.widget_rss b,
.widget_rss strong {
    font-weight: 500;
}

.widget_rss .widget-title a:last-child {
    box-shadow: none;
    line-height: normal;
    margin-bottom: 10px;
    margin-bottom: 20px;
}

.widget_rss .widget-title .rsswidget:first-child {
    float: right;
    margin-top: 1px;
    background-color: transparent;
}

.widget_rss .widget-title .rsswidget:first-child:hover {
    background-color: transparent;
}

.widget_rss .widget-title .rsswidget:first-child img {
    display: block;
    box-shadow: none;
}

.widget_rss ul {
    list-style: none;
}

.widget_rss ul li {
    padding: 15px 0;
}

.widget_rss ul li:first-child {
    border-top: none;
    padding-top: 0;
}

.widget_rss li .rsswidget {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--struqta-dark-color);
}

.widget_rss .rss-date,
.widget_rss li cite {
    color: var(--struqta-dark-color);
    display: block;
    font-size: 12px;
    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: var(--struqta-base-font);
    color: var(--struqta-grey-color);
    font-size: 16px;
    line-height: 26px;
}

/* 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 ul li {
    padding-left: 30px;
}

.widget.widget_recent_comments ul li:before {
    display: none;
}

.widget.widget_recent_comments ul li a {
    color: var(--struqta-dark-color);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    font-family: var(--struqta-base-font);
    letter-spacing: 0;
}

.widget.widget_recent_comments ul li a:hover {
    color: var(--struqta-primary-color);
}

.widget.widget_recent_comments ul li span.comment-author-link {
    padding-left: 30px;
    position: relative;
    margin-left: -30px;
}

.widget.widget_recent_comments ul li span.comment-author-link:before {
    font-family: "themify";
    content: "\e602";
    font-size: 15px;
    color: var(--struqta-primary-color);
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* 15.8 Recent Posts widget */
.widget_recent_entries .post-date {
    display: block;
    font-family: var(--struqta-secondary-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--struqta-grey-color);
}

.widget_recent_entries ul li a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.widget_recent_entries ul li:not(:last-of-type) {
    margin-bottom: 20px;
}

/* 15.9 Search Box */

.search-form {
    position: relative;
}

.search-form .form-control {
    background-color: #fff;
    border: 1px solid #ddd !important;
    box-shadow: none;
    width: 100%;
    display: block;
    border: none;
    color: var(--struqta-dark-color);
    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: 20px;
    color: var(--struqta-dark-color);
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 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 */

.tagcloud ul li {
    float: left;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    margin: 4px 4px 0 0;
}

.tagcloud,
.widget_tag_cloud,
.wp_widget_tag_cloud {
    line-height: 1.5;
}

.widget .tagcloud a,
.widget.widget_tag_cloud a,
.wp_widget_tag_cloud a {
    background-color: #fff;
    color: var(--struqta-grey-color);
    font-family: var(--struqta-primary-font);
    font-weight: 500;
    border-radius: 0;
    letter-spacing: -0.2px;
    text-transform: capitalize;
    font-size: 14px !important;
    padding: 8px 12px;
    margin: 0 7px 7px 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    display: inline-block;
    position: relative;
    width: auto;
    word-wrap: break-word;
    z-index: 0;
}

body:is(.single, .page) .single-sidebar.widget.widget_tag_cloud a{
    background-color: #f6f3ed;
}

.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,
body:is(.single, .page) .single-sidebar.widget.widget_tag_cloud a:hover,
body:is(.single, .page) .single-sidebar.widget.widget_tag_cloud a:focus {
    background-color: var(--struqta-bg-primary);
    color: #fff;
    border-color: var(--struqta-primary-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
    opacity: 1;
}

/* 15.11 Calendar widget */
.calendar_wrap {
    background-color: #fff;
}

.calendar_wrap .wp-calendar-nav {
    padding: 0 15px;
}

.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 #ddd;
    border-bottom: 0px solid #fff;
    border-bottom: none;
    color: var(--struqta-dark-color);
    font-family: var(--struqta-secondary-font);
    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: var(--struqta-dark-color);
    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: #ddd;
    padding: 5px 10px;
    font-family: var(--struqta-secondary-font);
    font-weight: 600;
    font-size: 14px;
    color: var(--struqta-dark-color);
}

.widget.widget_calendar #wp-calendar td {
    padding: 5px;
    color: var(--struqta-dark-color);
    font-size: 12px;
}

.widget.widget_calendar #wp-calendar td a {
    font-weight: 700;
    color: var(--struqta-dark-color);
}

.widget-box .widget.widget_calendar #wp-calendar {
    border: 1px solid var(--struqta-dark-color);
}

.widget-box .widget.widget_calendar #wp-calendar th {
    border-color: var(--struqta-dark-color);
}

/* 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: var(--struqta-bg-dark);
    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: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.5;
}

.footer-widgets {
    display: grid;
    column-gap: inherit;
    grid-gap: 40px;
}

.masonry-grid .m-col {
    margin: 0;
}

.footer-widgets.m-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.footer-widgets.m-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.footer-widgets.m-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.footer-widgets.m-col-1 {
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 992px) {

    .footer-widgets.m-col-4,
    .footer-widgets.m-col-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {

    .footer-widgets.m-col-4,
    .footer-widgets.m-col-3,
    .footer-widgets.m-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-widgets {
        grid-gap: 30px;
    }
}

.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;
}

.footer-widget p {
    font-family: var(--struqta-primary-font);
    color: #ddd;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.dark-widget .widget-box .text-widget p:not(:last-of-type),
.dark-widget .widget-box p:not(:last-of-type) {
    margin-bottom: 15px;
}

.dark-widget .widget-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dark-widget .widget ul li {
    color: #ddd;
    border: none;
}


.dark-widget .search-form .form-control {
    border: none !important;
}

.dark-widget .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:not(:last-of-type),
.widget ol li:not(:last-of-type),
.widget ul li li:not(:last-of-type),
.dark-widget .widget ol li li:not(:last-of-type) {
    border: none;
}

.dark-widget .widget ul li a {
    color: #ddd;
}

.dark-widget .widget ul li a:hover {
    color: var(--struqta-primary-color);
}

.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: var(--struqta-dark-color);
}

.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-family: var(--struqta-primary-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--struqta-dark-color);
    text-transform: capitalize;
    line-height: 24px;
    letter-spacing: -1px;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}

.related-posts h3.rel-title:before,
.comment-respond .comment-reply-title:before,
#comments .comments-title:before {
    background-color: var(--struqta-bg-primary);
    content: "";
    width: 50%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#comments .comments-title:before {
    display: none;
}

.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: var(--struqta-dark-color);
    font-family: var(--struqta-primary-font);
    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: var(--struqta-grey-color);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--struqta-secondary-font);
    letter-spacing: 0;
}

.comment-metadata a {
    font-size: 12px;
    color: var(--struqta-grey-color);
    text-transform: uppercase;
    font-weight: 600;
}

.comment-metadata a.comment-edit-link {
    margin-left: 1em;
}

.comment-body {
    color: var(--struqta-dark-color);
    font-size: 14px;
    margin-bottom: 4em;
}

.comment-reply-link {
    font-weight: 600;
    position: relative;
    font-family: var(--struqta-secondary-font);
    font-size: 12px;
    color: #fff;
    background-color: var(--struqta-bg-primary);
    padding: 7px 12px;
    text-transform: uppercase;
}

.comment-reply-link .icon {
    color: var(--struqta-dark-color);
    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 {
    font-size: 17px;
    line-height: 27px;
    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: var(--struqta-dark-color);
    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 .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: #f6f3ed;
    border-radius: 2px;
    display: inline-block;
    font-size: 12px;
    color: var(--struqta-dark-color);
    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: #f6f3ed;
    color: var(--struqta-grey-color);
    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: var(--struqta-dark-color);
    transition: all 0.3s ease-in-out;
}

.comments-pagination .page-numbers:hover,
.comments-pagination .page-numbers.current {
    background-color: #f6f3ed;
    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: 15px;
    font-weight: 500;
    color: var(--struqta-grey-color);
    letter-spacing: 0;
    margin-left: 15px;
}

.comment-respond .comment-reply-title small a:hover {
    color: var(--struqta-primary-color);
}

.form-submit {
    text-align: left;
    margin: 0;
}

.form-submit .b-btn {
    background-color: var(--struqta-bg-primary);
    width: inherit;
    height: inherit;
    padding: 18px 35px;
    font-family: var(--struqta-primary-font);
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.form-submit .b-btn:hover {
    background-color: var(--struqta-bg-dark);
    color: #fff;
}

.form-group,
.wpcf7 .wpcf7-form p {
    margin-bottom: 20px;
}

.comment-form .form-group {
    margin-bottom: 25px;
}

.comment-form .form-control {
    background: #fff;
    font-family: var(--struqta-base-font);
    font-size: 14px;
    border-radius: 0;
    box-sizing: border-box;
    color: var(--struqta-dark-color);
    cursor: pointer;
    border: none;
    padding: 15px;
    letter-spacing: 0;
    border: 1px solid #ddd;
}

.comment-form textarea.form-control {
    line-height: 26px;
}

.comment-form .form-control:hover,
.comment-form .form-control:focus {
    box-shadow: none;
    outline: none;
}

.comment-form .form-control:hover {
    border: 1px solid var(--struqta-primary-color);
}

.comment-form .comment-notes {
    color: var(--struqta-dark-color);
}

.comment-list li.pingback .comment-body {
    margin: 0 0 35px 0;
    padding-left: 0;
}

.comment-navigation {
    margin-bottom: 20px;
}

.comment-navigation a {
    color: var(--struqta-dark-color);
}

.comment-navigation a:hover {
    text-decoration: underline;
}

.comment-form p:last-child {
    margin: 0;
}

/* ==========================================================================
   18.0 Footer
   ========================================================================== */

.footer-wrap {
    background-color: var(--struqta-bg-dark);
    color: #bbb;
    padding: 25px 0;
    display: block;
}

.footer-wrap .site-info a,
.footer-wrap .site-info {
    color: #bbb;
}

.footer-wrap .site-info a {
    text-decoration: none;
    box-shadow: none;
}

.footer-wrap .site-info a:hover {
    opacity: 0.8;
}

.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: #999;
    font-family: var(--struqta-secondary-font);
    text-decoration: none;
}

.footer-menu li a:hover {
    color: var(--struqta-dark-color);
    text-decoration: none;
}

/* ===== 1.4 Custom Cursor ===== */
.dl-cursor {
    display: none;
}

@media (min-width: 992px) {
    .dl-cursor {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: fixed;
        left: 0;
        top: 0;
        user-select: none;
        pointer-events: none;
        transform: translate(50%, 50%);
        visibility: hidden;
        z-index: 10000;
        -webkit-transition: all .5s cubic-bezier(.165, .84, .44, 1);
        transition: all .5s cubic-bezier(.165, .84, .44, 1);
    }

    .dl-cursor:before {
        background-color: var(--struqta-bg-dark);
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0;
    }
}

/* ==========================================================================
   19.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: var(--struqta-bg-primary);
    font-size: 16px;
    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;
}

/* Social Share Icons */
.dl-social-share{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.dl-social-share svg{
    fill: currentColor;
    width: auto;
    height: 13px;
}

.dl-social-share > div{
    background-color: var(--struqta-bg-dark);
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.dl-social-share > div:hover{
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.dl-social-share > div.facebook{
    background-color: #1877f2;
    color: #fff;
}

.dl-social-share > div.twitter{
    background-color: #1da1f2;
    color: #fff;
}

.dl-social-share > div.pinterest{
    background-color: #e60023;
    color: #fff;
}

.dl-social-share > div.linkedin{
    background-color: #0a66c2;
    color: #fff;
}

/* ==========================================================================
   20.0 Responsive
   ========================================================================== */
@media (min-width: 1250px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    ul.nav > li > a {
        padding: 0 6px;
    }

    .project-cover {
        height: 500px;
    }
}

/* ---- Start of max-width 992px CSS ---- */
@media (max-width: 992px) {
    .struqta .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.dl-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;
    }

    .portfolio-related-posts {
        margin-top: 35px;
    }

    .portfolio-desc {
        margin-bottom: 20px;
    }

    .portfolio-related-posts .ps-title {
        margin-bottom: 20px;
    }
}

/* ---- Start of max-width 767px CSS ---- */
@media all and (max-width: 767px) {

    body,
    p {
        font-size: 14px;
        line-height: 26px;
    }

    .struqta .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;
    }
}

/* ---- 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;
    }

}

/* ---- 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;
    }
}

@media all and (max-width: 598px) {
    .admin-bar .fixed-top.header {
        top: 0;
    }

    .tab-container {
        min-height: 330px;
    }

    .author-bio .bio-inner {
        display: block;
    }

    .author-bio .bio-inner .avatar {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .header .top-bar {
        display: none;
    }

    .primary-header-inner .header-right {
        margin-left: 0;
    }

    .header-right a.dl-btn {
        padding: 3px 15px;
        font-size: 14px;
        line-height: 32px;
        margin: 0;
        margin-left: 15px;
    }

    .primary-header-two .header-right a.dl-btn {
        padding: 5px 25px;
    }

    .header-three .top-bar .top-left li,
    .header-three .top-bar .top-left li:first-child {
        border: none;
    }

    .sticky-header .header-right .dl-btn,
    .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;
    }
}
