.blogDetSec {
    padding-top: 80px !important;

    /* blog sidebar */
    .blogSidebar {
        position: sticky;
        top: 100px;

        h4 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #000;
            font-family: 'Work Sans';
        }

        .srchWrap {
            .frmWrap {
                position: relative;
                display: flex;

                form {
                    width: 100%;
                }

                .srchBtn {
                    position: absolute;
                    width: 55px;
                    height: 55px;
                    border: none;
                    border-radius: 50%;
                    background: url(../images/blog/search.png) center center no-repeat;
                    right: 0;
                    top: 0;
                    font-size: 0;
                }

                .inputTxt {
                    width: 100%;
                    min-height: 42px;
                    margin-bottom: 30px;
                    border: 1px solid rgba(228, 228, 228, 0.50);
                    background-color: transparent;
                    padding: 0 48px 0 14px;
                    text-align: left;
                    color: #BCBCBC;

                    &::placeholder {
                        color: #BCBCBC;
                    }
                }
            }
        }

        .blockListBg {
            padding: 30px;
            background-color: #E0B432;
            border: 1px solid rgba(0, 0, 0, .2);

            .catList {
                li {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 24px 0;

                    a {
                        width: calc(100% - 70px);
                        color: #000;
                        font-weight: 400;
                        font-size: 18px;
                        padding-left: 15px;
                        position: relative;
                        font-family: Lato, serif;
                        transition: all .3s;
                        transition: all 0.5s;

                        &::before {
                            width: 6px;
                            height: 6px;
                            content: "";
                            position: absolute;
                            left: 0;
                            top: 10px;
                            background-color: #000;
                            border-radius: 50%;
                            transition: all 0.5s;
                        }
                    }

                    span {
                        color: #000;
                        transition: all 0.5s;
                    }

                    &:first-child {
                        padding-top: 0;
                    }

                    &:not(:last-child) {
                        border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                    }

                    &:hover,
                    &.active {
                        a {
                            color: #4D2762;

                            &::before {
                                background-color: #4D2762;
                            }
                        }

                        span {
                            color: #4D2762;
                        }
                    }
                }
            }

            .tagList {
                display: flex;
                flex-wrap: wrap;

                li {
                    width: auto;
                    max-width: 100%;
                    min-width: 100px;
                    margin-right: 10px;

                    a {
                        width: 100%;
                        background-color: #fff;
                        display: block;
                        padding: 10px 16px;
                        text-align: center;
                        border-radius: 6px;
                        font-size: 16px;
                        margin-bottom: 10px;
                        font-weight: 400;
                        color: #000;
                        transition: .5s;
                    }

                    &:hover {
                        a {
                            background-color: #000;
                            color: #fff;
                        }
                    }
                }
            }
        }

        .blogPostList {
            background-color: #fff;
            padding: 30px;
            margin-top: 30px;

            .postList {
                padding-left: 0;

                li {
                    display: flex;
                    align-items: flex-start;

                    &:not(:last-child) {
                        margin-bottom: 40px;
                    }

                    .postImg {
                        width: 100px;
                        height: 100px;
                        border-radius: 10px;
                        overflow: hidden;

                        a {
                            width: 100%;
                            display: block;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-position: center center;
                                object-fit: cover;
                            }
                        }
                    }

                    .postText {
                        width: calc(100% - 100px);
                        display: flex;
                        align-items: end;
                        padding-left: 15px;
                        gap: 10px;

                        .postSummery {
                            width: calc(100% - 30px);

                            p {
                                font-size: 15px;
                                margin-bottom: 5px;
                                color: #656565;
                            }

                            .postSummaryTxt {
                                overflow: hidden;
                                text-overflow: ellipsis;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 2;
                            }

                            a {
                                color: #000;
                                transition: .5s;
                                overflow: hidden;
                                text-overflow: ellipsis;
                                display: -webkit-box;
                                -webkit-box-orient: vertical;
                                -webkit-line-clamp: 2;
                            }
                        }

                        .postArrow {
                            width: 20px;
                            position: relative;
                            bottom: 0;

                            img {
                                filter: brightness(0) saturate(100%) invert(16%) sepia(97%) saturate(2742%) hue-rotate(212deg) brightness(103%) contrast(114%);
                            }
                        }
                    }

                    &:hover {
                        .postText {
                            .postSummery {
                                a {
                                    color: #4D2762;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* blog listing */
    .blogDetCont {
        .commonCardBtm {
            .commonCardWrap {
                row-gap: 40px;
            }

            .commonCard {
                .blogImg {
                    height: 450px;
                }

                .commonCardDet {
                    text-align: left;

                    p {
                        color: #767676;
                    }

                    .btnWrap {
                        margin-left: 0;
                        margin-top: 20px;
                    }

                    .blogDetPara {
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        height: 60px;
                        transition: all 0.5s;
                    }
                }
            }
        }

        .pagination {
            justify-content: flex-start;
        }
    }

    /* blog details */
    .blogDetailsWrap {
        .blogDetailsImg {
            position: relative;
            margin-bottom: 40px;

            figure {
                width: 100%;
                height: 600px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            &:after {
                left: 0;
                right: 0;
                bottom: 0;
                content: "";
                width: 100%;
                height: 180px;
                position: absolute;
                background-color: #000;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 55.46%);
            }

            .blogInfo {
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1;
                padding: 30px 40px;
                position: absolute;
                border-top: 1px solid #ffffff70;

                ul {
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 20px;

                    li {
                        position: relative;

                        &:not(:last-child) {
                            margin-right: 80px;

                            &:after {
                                top: 50%;
                                width: 8px;
                                height: 8px;
                                content: "";
                                right: -46px;
                                border-radius: 50%;
                                position: absolute;
                                background-color: #d9d9d9;
                                transform: translateY(-50%);
                            }
                        }

                        a {
                            display: flex;
                            margin-bottom: 0;
                            color: #ffffff;
                            align-items: center;
                            gap: 15px;

                            span {
                                font-size: 30px;
                                font-weight: 400;
                            }

                            .dateInner {
                                font-size: 60px;
                                font-weight: 700;
                                color: #E0B432;
                                line-height: 34px;
                                display: inline-block;
                                margin-right: 10px;
                            }

                            .monthInner {
                                display: flex;
                                align-items: center;
                                gap: 10px;
                            }

                            .blogInfoIcon {
                                width: 60px;
                                height: 60px;

                                img {
                                    width: 100%;
                                    height: 100%;
                                    object-fit: cover;
                                    border-radius: 50%;
                                }
                            }
                        }
                    }
                }
            }
        }

        .blogDetailsCont {
            margin-bottom: 40px;

            h3 {
                margin-bottom: 10px;
                position: relative;
                padding-bottom: 5px;

                &::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 60px;
                    height: 2px;
                    background-color: #E0B432;
                    transition: .4s;
                }

                &:hover {
                    &::after {
                        width: 100px;
                    }
                }
            }

            .blogContHead {
                color: #E0B432;
                font-family: "Work Sans";
                font-size: 30px;
                font-weight: 400;
                line-height: 40px;
                margin-bottom: 12px;
            }
        }

        .blogDetailsShare {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-bottom: 40px;
            row-gap: 15px;
            border-bottom: 1px solid rgba(163, 163, 163, 0.45);

            h3 {
                color: #E0B432;
                font-family: "Work Sans";
                font-size: 20px;
                font-weight: 600;
                line-height: 20px;
            }

            .shareWrap {
                .shareWrapInner {
                    display: flex;
                    gap: 10px;
                    align-items: center;

                    .socialImg {
                        display: flex;
                        align-items: center;
                        gap: 15px;

                        a {
                            i {
                                font-size: 24px;
                                color: #7c7c7c;
                            }
                        }
                    }
                }
            }

            .tagWrap {
                .tagWrapInner {
                    display: flex;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 10px;
                }
            }
        }

        .blogFormWrap {
            padding-top: 100px;

            .blogFormWrapInn {
                background-color: #fff;
                padding: 50px 40px;

                * {
                    color: #000;
                }

                h3 {
                    color: #4D2762;
                    font-size: 35px;
                    font-weight: 700;
                    font-family: 'work Sans';
                }

                .comment-form-cookies-consent {
                    display: flex;
                    gap: 8px;

                    input[type='checkbox'] {
                        width: 15px;
                        height: 25px;
                    }
                }

                input[type='submit'] {
                    width: 200px;
                    height: 50px;
                    font-family: 'work Sans';
                    font-weight: 400;
                    font-size: 18px;
                    text-transform: uppercase;
                    margin-left: auto;
                    transition: all 0.5s;

                    &:hover {
                        background-color: #E0B432;
                    }
                }

            }
        }
    }

    .blogFormWrapInn {
        .commentlist {
            padding: 15px;
            background: #e7e7e7;
            margin: 10px;
            border-radius: 10px;

            li {
                list-style: none;

                &.comment {
                    .comment-author {
                        display: flex;
                        margin-bottom: 15px;
                        align-items: center;
                        gap: 5px;

                        img {
                            width: 40px;
                            height: 40px;
                            border-radius: 50%;

                        }
                    }

                    .reply {
                        font-size: 18px;
                        font-weight: 600;
                        a {
                            color: #4d2762!important;
                        }
                    }
                }
            }
        }
    }
}


/* Responsive */

@media (max-width: 1600px) {
    .blogDetSec {
        .blogSidebar {
            .blockListBg {
                .tagList {
                    li {
                        a {
                            padding: 7px 12px;
                        }
                    }
                }
            }
        }

        .blogDetCont {
            .commonCardBtm {
                .commonCard {
                    .blogImg {
                        height: 380px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .blogDetSec {
        .blogSidebar {
            .blogPostList {
                padding: 20px;
            }

            .blockListBg {
                padding: 20px;
            }
        }
    }

    .blogDetSec {
        .blogDetailsWrap {
            .blogDetailsImg {
                figure {
                    height: 420px;
                }

                .blogInfo {
                    ul {
                        li {
                            a {
                                span {
                                    font-size: 22px;
                                }

                                .dateInner {
                                    font-size: 45px;
                                    margin-right: 5px;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .blogDetSec {
        .blogDetailsWrap {
            .blogDetailsImg {
                .blogInfo {
                    padding: 15px 20px;

                    ul {
                        li {
                            a {
                                gap: 10px;
                            }
                        }
                    }
                }
            }

            .blogFormWrap {
                padding-top: 40px;

                .blogFormWrapInn {
                    padding: 25px 25px;
                }
            }
        }
    }

}

@media (max-width: 1366px) {
    .blogDetSec {
        .blogSidebar {
            .blockListBg {
                .catList {
                    li {
                        padding: 18px 0;
                    }
                }
            }
        }

        .blogDetailsWrap {
            .blogDetailsImg {
                .blogInfo {
                    ul {
                        li {
                            a {
                                span {
                                    font-size: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }

        .blogDetCont {
            .commonCardBtm {
                .commonCard {
                    .blogImg {
                        height: 340px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .blogDetSec {
        .blogDetailsWrap {
            .blogDetailsImg {
                figure {
                    height: 450px;
                }
            }
        }
    }
}

@media (max-width: 1280px) {
    .blogDetSec {
        .blogDetCont {
            .commonCardBtm {
                .commonCard {
                    .blogImg {
                        height: 280px;
                    }
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    .blogDetSec {
        .blogSidebar {
            .srchWrap {
                .frmWrap {
                    .srchBtn {
                        width: 50px;
                        height: 50px;
                    }
                }
            }
        }

        .blogDetSecRow {
            flex-direction: column-reverse;
            row-gap: 40px;
        }
    }
}

@media (max-width: 991px) {
    .blogDetSec {
        .blogSidebar {
            .blogPostList {
                .postList {
                    li {
                        .postImg {
                            width: 85px;
                            height: 85px;
                        }

                        .postText {
                            width: calc(100% - 85px);
                        }
                    }
                }
            }
        }

        .blogDetCont {
            .pagination {
                justify-content: center;

                ul {
                    gap: 15px;
                }
            }

            .commonCardBtm {
                .commonCard {
                    .commonCardDet {
                        .btnWrap {
                            margin-left: 15px;
                        }
                    }
                }
            }
        }

        .blogDetailsWrap {
            .blogFormWrap {
                .blogFormWrapInn {
                    input[type='submit'] {
                        margin: 0px auto;
                    }

                    form {
                        label {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .blogDetSec {
        .blogSidebar {
            .srchWrap {
                .frmWrap {
                    .srchBtn {
                        height: 40px;
                    }
                }
            }
        }

        .blogDetailsWrap {
            .blogDetailsImg {
                figure {
                    height: 380px;
                }

                .blogInfo {
                    ul {
                        li {
                            a {
                                gap: 8px;

                                .blogInfoIcon {
                                    width: 52px;
                                    height: 52px;
                                }

                                span {
                                    font-size: 18px;
                                }

                                .monthInner {
                                    gap: 8px;
                                }
                            }
                        }
                    }
                }
            }

            .blogDetailsShare {
                .tagWrap {
                    .tagWrapInner {
                        gap: 7px;

                        a {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}