.blogSec {
    background-color: #fff;
    overflow: visible;

    .headingWrap {
        margin-bottom: 30px;
    }

    .blogListWrap {
        &.cards {
            .innerCard {
                margin-bottom: 25px;
            }
        }

        .blogWrap {
            row-gap: 30px;

            .blogSliderItem {
                margin: 0;
                .blogSliderInner {
                    background-color: #F0F0F0;
                }

                &:hover {
                    .blogSliderInner {
                        background-color: #00000075;
                    }
                }
            }
        }
    }

    .blogSidebar {
        position: sticky;
        top: 0;

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

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

                .inputTxt {
                    width: 100%;
                    min-height: 55px;
                    margin-bottom: 32px;
                    border-radius: 8px;
                    border: 1px solid #C6C6C6;
                    background: rgba(231, 224, 224, 0.00);
                    background-color: #fff;
                    padding: 0px 20px 0px 48px;
                    text-align: right;
                    outline: 0;

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

        h4 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #000;
        }

        .blockListBg {
            &.mt-4 {
                h4 {
                    color: #fff;
                }
            }
        }
    }

    .blogDetDiv {
        /* padding-right: 30px; */

        .blogDetTop {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 60px;

            .blogDetFig {
                width: 100%;
                height: 100%;

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

                &::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    height: 250px;
                    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 11.25%, #000 79.38%);
                    z-index: 2;
                }
            }

            .blogDetTxt {
                position: absolute;
                bottom: 30px;
                left: 0;
                right: 0;
                padding-left: 100px;
                padding-right: 50px;
                padding-top: 30px;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                row-gap: 15px;
                z-index: 3;
                border-top: 1px solid #fff;

                .blogDetTxtInn {
                    position: relative;

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

                        &::after {
                            content: '';
                            position: absolute;
                            width: 10px;
                            height: 10px;
                            border-radius: 50%;
                            background-color: #fff;
                            right: -40px;
                            top: 50%;
                            transform: translateY(-50%);
                        }
                    }

                    h6 {
                        color: #FFF;
                        font-family: 'Poppins';
                        font-size: 25px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 32px;

                        span {
                            color: #D71006;
                            font-family: "Zabal DEMO";
                            font-size: 50px;
                            font-weight: 700;
                            margin-right: 20px;
                        }
                    }

                    .blogDetTxtImg {
                        width: 60px;
                        height: 60px;
                        margin-right: 20px;

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

                    p {
                        color: #fff;
                        font-size: 25px;
                        font-family: 'Poppins';
                    }
                }
            }
        }

        .blogDivBtm {
            .blogDivBtmCont {
                margin-bottom: 50px;

                h2 {
                    color: #D71006;
                    font-family: "Zabal DEMO";
                    font-size: 40px;
                    font-weight: 600;
                    line-height: 50px;
                    margin-bottom: 20px;
                }

                p {
                    color: #000;
                    font-family: 'Poppins';
                    font-size: 18px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 30px;
                }
            }

            .blogDivLinks {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                border-bottom: 1px solid rgba(163, 163, 163, 0.45);
                padding-bottom: 15px;
                row-gap: 10px;

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

                    h6 {
                        color: #D71006;
                        font-family: 'Poppins';
                        font-size: 20px;
                        font-style: normal;
                        font-weight: 600;
                        line-height: 20px;
                    }

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

                        a {
                            color: #000;
                            font-size: 25px;
                            transition: all 0.5s;

                            &:hover {
                                color: #C7070E;
                            }
                        }
                    }

                    .blogLinksTag {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 6px;

                        a {
                            color: #000;
                            margin-bottom: 0;
                            transition: all 0.5s;

                            &:hover {
                                color: #C7070E;
                            }
                        }
                    }
                }
            }
        }

        .blogDetForm {
            margin-top: 50px;
            background-color: #f1f1f1;
            border-radius: 20px;
            width: 100%;
            max-width: 90%;
            padding: 60px 50px;

            h3 {
                color: #D71006;
                font-family: 'Poppins';
                font-size: 35px;
                font-weight: 700;
                line-height: 45px;
                margin-bottom: 25px;

                a {
                    color: #000;
                }
            }

            form {
                .form-group {
                    margin-bottom: 30px;
                }

                input {
                    width: 100%;
                    height: 60px;
                    display: block;
                    border-radius: 9px;
                    border: 1px solid #E3E3E3;
                    background: #FDFDFD;
                    color: #A3A3A3;
                    font-family: 'Poppins';
                    font-size: 18px;
                    font-style: italic;
                    font-weight: 500;
                    line-height: 18px;
                    padding: 8px 12px;
                }

                input[type="checkbox"] {
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    margin-right: 8px;
                }

                .form-submit {
                    padding: 12px 25px;
                    padding-right: 100px;
                    border-radius: 10px;
                    background-color: #FD0C00;
                    border: 1px solid #FD0C00;
                    font-weight: 500;
                    color: #fff;
                    display: inline-block;
                    position: relative;
                    margin-top: 20px;
                    transition: 0.5s;

                    &::before {
                        content: "";
                        position: absolute;
                        right: 30px;
                        top: 50%;
                        transform: translateY(-50%);
                        background: url(../images/home/btn-arrow.png) no-repeat center center;
                        background-size: 100%;
                        width: 36px;
                        height: 20px;
                        z-index: 1;
                    }

                    &::after {
                        width: 60px;
                        height: 25px;
                        border-radius: 20px;
                        background-color: #fff;
                        position: absolute;
                        content: "";
                        right: 20px;
                        top: 50%;
                        transform: translateY(-50%);
                    }

                    input {
                        background-color: transparent;
                        padding-right: 0;
                        border-radius: 10px;
                        font-size: 20px;
                        font-weight: 500;
                        color: #fff;
                        display: block;
                        width: 100%;
                        height: 100%;
                        border: none !important;
                        font-style: normal;
                    }

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

                .comment-form-cookies-consent {
                    label {
                        display: inline;
                    }
                }

                textarea {
                    width: 100%;
                    height: 120px;
                    display: block;
                    border-radius: 9px;
                    border: 1px solid #E3E3E3;
                    background: #FDFDFD;
                    color: #A3A3A3;
                    font-family: 'Poppins';
                    font-size: 18px;
                    font-style: italic;
                    font-weight: 500;
                    line-height: 18px;
                    resize: none;
                    padding: 8px 12px;
                }

                label {
                    display: block;
                    width: 100%;
                    color: #828282;
                    font-family: 'Poppins';
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 18px;
                    margin-bottom: 15px;

                    span {
                        color: #C7070E;
                    }
                }

                .commonBtn {
                    display: flex;
                    justify-content: end;
                    padding-right: 100px;

                    .quoteText {
                        background-color: #f1f1f1;
                    }
                }
            }

            #comments {
                color: #000;
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 20px;
            }

            .commentlist {
                li {
                    padding-left: 0;
                    list-style-type: none;

                    .comment-body {
                        .comment-author {
                            display: flex;
                            gap: 6px;
                            flex-wrap: wrap;

                            a {
                                font-size: 16px;
                                color: #000;
                            }
                        }

                        .commentmetadata {
                            margin-bottom: 10px;

                            a {
                                font-size: 14px;
                                color: #000;
                            }
                        }

                        p {
                            font-size: 16px;
                            line-height: 26px;
                            margin-bottom: 12px;
                        }

                        .reply {
                            margin-bottom: 30px;

                            a {
                                color: #C7070E;
                            }
                        }
                    }
                }
            }
        }
    }
}


/* Responsive */

@media (max-width: 1600px) {
    .blogSec {
        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    height: 450px;
                }
            }
        }

        .blogDetDiv {
            .blogDetForm {
                padding: 50px 30px;
            }
        }
    }

    .blockListBg {
        padding: 25px 20px;
    }

    .blogPostList {
        padding: 25px 20px;

        .postList {
            li {
                .postImg {
                    width: 80px;
                    height: 80px;
                }

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

                }
            }
        }
    }

}

@media (max-width: 1440px) {
    .blogSec {
        .blogWrap {
            .blogSliderItem {
                .blogSliderInner {
                    height: 400px;
                }
            }
        }

        .blogDetDiv {
            .blogDetTop {
                height: 500px;
                margin-bottom: 30px;

                .blogDetTxt {
                    padding-left: 50px;
                    padding-right: 20px;
                    padding-top: 25px;

                    .blogDetTxtInn {
                        h6 {
                            font-size: 22px;

                            span {
                                font-size: 40px;
                                margin-right: 10px;
                            }
                        }

                        p {
                            font-size: 22px;
                        }
                    }
                }
            }

            .blogDivBtm {
                .blogDivBtmCont {
                    h2 {
                        font-size: 30px;
                        line-height: 40px;
                        margin-bottom: 20px;
                    }
                }
            }
        }
    }

}

@media (max-width: 1199px) {
    .blogSec {
        .blogListWrap {
            .blogWrap {
                .blogSliderItem {
                    .blogSliderInner {
                        background-color: #00000075;
                    }
                }
            }
        }

        .blogSidebar {
            padding-top: 50px;
        }

        .blogDetDiv {
            .blogDetForm {
                padding: 50px 30px;
                max-width: 100%;
            }
        }
    }

}


@media (max-width: 1024px) {
    .blogSec {
        .blogSidebar {
            .srchWrap {
                .frmWrap {
                    .inputTxt {
                        padding: 0px 48px 0px 20px;
                        text-align: left;
                    }
                    .srchBtn{
                        left: auto;
                        right: 0;
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .blogSec {
        .blogDetDiv {
            .blogDetTop {
                margin-bottom: 15px;

                .blogDetTxt {
                    padding-left: 15px;
                    padding-right: 15px;
                    padding-top: 20px;

                    .blogDetTxtInn {
                        &:not(:last-child) {
                            margin-right: 50px;

                            &::after {
                                right: -25px;
                            }
                        }

                        h6 {
                            font-size: 16px;

                            span {
                                font-size: 35px;
                                margin-right: 8px;
                            }
                        }
                    }
                }
            }

            .blogDivBtm {
                .blogDivBtmCont {
                    h2 {
                        font-size: 26px;
                        line-height: 40px;
                        margin-bottom: 20px;
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {

    .blogSec {
        .blogDetDiv {
            .blogDetForm {
                form {
                    label {
                        display: block;
                        width: 100%;
                        color: #828282;
                        font-family: 'Poppins';
                        font-size: 17px;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 18px;
                        margin-bottom: 15px;
                    }
                }

                h3 {
                    font-size: 22px;
                    line-height: 30px;
                    margin-bottom: 25px;
                }

                small {
                    font-size: 15px;
                    font-weight: 400;
                }
            }
        }

        .blogSidebar {
            .srchWrap {
                & .frmWrap {
                    .inputTxt {
                        font-size: 16px;
                    }
                }
            }

            .blockListBg {
                .catList {
                    li {
                        padding: 18px 0px;

                        a {
                            font-size: 16px;
                        }

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

                .tagList {
                    li {
                        min-width: 80px;

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

@media (max-width: 575px) {
    .blogSec {
        .blogDetDiv {
            .blogDetTop {
                height: 350px;
                margin-bottom: 15px;
            }

            .blogDivBtm {
                .blogDivBtmCont {
                    h2 {
                        font-size: 22px;
                        line-height: 32px;
                        margin-bottom: 20px;
                    }
                }
            }

            .blogDetForm {
                padding: 35px 20px;
            }
        }
    }
}