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

.gridCard {
    margin-bottom: 25px;
    transition: all 0.5s;

    a {
        .blogImg {
            height: 320px;
            position: relative;

            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to top, rgb(0, 0, 0, 0.75) 35%, rgb(0, 0, 0, 0.2) 85%);
                z-index: 1;
            }
        }

        .catName {
            z-index: 2;
        }

        .blogContentText {
            z-index: 2;

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

                h4 {
                    transition: all 0.5s;
                    position: relative;
                }
            }
        }
    }

    &:hover {
        a {
            .blogContentText {
                .blogTitle {
                    h4 {
                        color: #E30011 !important;
                        text-decoration: underline;
                    }
                }
            }
        }
    }
}


.srchFrm {
    position: relative;

    .inputTxt {
        border: none;
        outline: none;
        border: 1px solid #ccc;
        background-color: transparent;
        height: 70px;
        padding-left: 50px;
        padding-right: 60px;
        background-image: url(../images/search.png);
        background-repeat: no-repeat;
        background-position: 20px;
        background-size: 20px;
        border-radius: 10px;
    }

    .srchBtn {
        position: absolute;
        width: 42px;
        padding: 0px;
        min-height: 42px;
        border-radius: 50%;
        top: 12px;
        right: 10px;
        background-image: url(../images/btnArrow.png);
        background-repeat: no-repeat;
        background-color: #E30011;
        background-position: center center;
        transform: rotate(-30deg);
        transition: 0.5s;

        &:hover {
            background-color: #000;
            transform: rotate(0deg);
        }
    }
}

.sideBar {
    position: sticky;
    top: 20px;

    .widgetWrap {
        h4 {
            font-size: 24px;
            font-weight: 600;
            color: #0C49AD;
            margin-bottom: 20px;
        }

        .postList {
            li {
                padding-bottom: 20px;
                margin-bottom: 20px;
                border-bottom: 1px solid #ccc;
                display: flex;
                align-items: flex-start;

                .postNo {
                    width: 50px;
                    height: 50px;
                    background-color: #f1f1f1;
                    display: flex;
                    font-size: 20px;
                    font-weight: 700;
                    color: #9f9f9f;
                    display: inline-block;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .postContent {
                    width: calc(100% - 50px);
                    padding-left: 10px;

                    .postDate {
                        font-size: 13px;
                        display: inline-block;
                        background-color: #014E9D;
                        color: #fff;
                        padding: 6px 12px;
                        border-radius: 6px;
                        margin-bottom: 10px;
                    }

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

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

                        margin-bottom: 10px;
                    }

                    .btnOne {
                        padding: 0px;
                        font-size: 18px;
                        border: none;
                        background-color: transparent !important;
                        font-weight: 500;
                        color: #000;
                        position: relative;
                        line-height: 30px;

                        &::after {
                            content: '';
                            position: absolute;
                            width: 32px;
                            padding: 0px;
                            min-height: 32px;
                            border-radius: 50%;
                            top: 0;
                            right: -45px;
                            background-image: url(../images/btnArrow.png);
                            background-repeat: no-repeat;
                            background-color: #E30011;
                            background-position: center center;
                            background-size: 20px 20px;
                            transform: rotate(-40deg);
                            transition: 0.5s;
                        }

                        &:hover {
                            color: #000;

                            &::after {
                                background-color: #000;
                                transform: rotate(0deg);
                            }
                        }
                    }
                }
            }
        }

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

            li {
                width: auto;
                margin-bottom: 10px;
                margin-right: 10px;

                a {
                    color: #000;
                    text-transform: uppercase;
                }
            }
        }

        &.widgetTag {
            display: none;
        }
    }
}

/*===blogDetails start===*/
.blogDetails {
    /* padding-right: 15px; */

    .secHead {
        text-transform: capitalize;
        font-size: 50px;
    }

    .blogDetailsImg {
        border-radius: 20px 20px 0 0;
        overflow: hidden;

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

    .blogInfo {
        background-color: #000;
        border-radius: 0 0 20px 20px;
        padding: 15px 20px;

        ul {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;

            li {
                .infoWrap {
                    display: flex;
                    align-items: center;
                    color: #fff;
                    margin-bottom: 0px;
                    gap: 10px;

                    p {
                        color: #fff;
                        font-size: 16px;
                        margin-bottom: 0px;
                    }
                }

                &:nth-child(3) {
                    .infoWrap {
                        display: none;
                    }
                }
            }
        }


    }

    .blogContentText {
        padding-top: 20px;

        h2 {
            font-weight: 500;
            margin-bottom: 15px;
            color: #727272;

            span {
                font-weight: 700 !important;
                color: #727272;
            }
        }

        .secHead {
            font-size: 40px;
            text-transform: capitalize;
        }

        h3 {
            font-size: 24px;
            font-family: "Oxygen", sans-serif;
            font-weight: bold;
            color: #014E9D;
            margin-bottom: 15px;

            span {
                font-weight: 600 !important;
            }
        }

        ul {
            margin-bottom: 15px;

            li {
                font-size: 18px;
                line-height: normal;
                margin-bottom: 12px;
                position: relative;
                padding-left: 15px;

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

                &:last-child {
                    margin-bottom: 0px;
                }

                span {
                    line-height: 28px;
                }
            }
        }
    }
}

.adTable {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 20px;

    th {
        color: #fff;
        padding: 10px 15px;
    }

    td {
        padding: 10px 15px;
    }
}

.blogDetailsSec_2 {
    background-color: #f4f4f4;
    padding-bottom: 160px;

    .gridCard {
        margin: 0 15px;
    }

    .slick-prev {
        bottom: -70px;
    }

    .slick-next {
        bottom: -70px;
    }
}

/*===newsSec_1 start==*/
.newsSec_1 {
    .pagination {
        justify-content: center;

        .page-numbers {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #ccc;
            color: #000;
            transition: 0.5s;
            overflow: hidden;

            &:hover,
            &.current {
                background-color: #E30011;
                color: #fff;
            }
        }
    }
}


/* Responsive */

@media (max-width: 1440px) {
    .sideBar {
        .widgetWrap {
            .postList {
                li {
                    .postContent {
                        .postTitle {
                            a {
                                font-size: 15px;
                            }
                        }

                        .btnOne {
                            font-size: 15px;

                            &::after {
                                width: 26px;
                                min-height: 26px;
                                right: -36px;
                                background-size: 18px 18px;
                            }
                        }
                    }
                }
            }
        }
    }

    .blogDetails {
        .secHead {
            font-size: 44px;
        }
    }

}

@media (max-width: 1366px) {
    .blogDetails {
        .secHead {
            font-size: 40px;
        }

        .blogDetailsImg {
            height: 300px;
        }

        .blogContentText {
            .secHead {
                font-size: 32px;
                margin-bottom: 20px;
            }
        }
    }
}

@media (max-width: 1200px) {

    .srchFrm {
        .inputTxt {
            background-color: transparent !important;
            border: 1px solid #ccc !important;
        }

        .srchBtn {
            background-color: #E30011 !important;
            border: none !important;
        }
    }
}

@media (max-width: 1199px) {
    .blogDetails {
        .secHead {
            font-size: 38px;
        }

        .blogContentText {
            .secHead {
                font-size: 28px;
                margin-bottom: 15px;
                text-align: left;
            }
        }
    }

    .sideBar {
        padding-top: 60px;
    }

    .blogSec_1 {
        .pagination {
            justify-content: center;
        }
    }

    .gridCard {
        a {
            .blogContentText {
                .blogTitle {
                    h4 {
                        font-size: 16px;
                    }
                }
            }
        }
    }

    .srchFrm {
        .inputTxt {
            height: 55px;
            background-position: 12px;
            padding-left: 40px;
            background-size: 17px;
        }

        .srchBtn {
            width: 36px;
            min-height: 36px;
            top: 9px;
        }
    }
}

@media (max-width: 991px) {
    .blogDetails {
        .secHead {
            font-size: 34px;
        }
    }

    .sideBar {
        .widgetWrap {
            .postList {
                li {
                    .postContent {
                        .btnOne {
                            font-size: 16px;
                        }

                        .postTitle {
                            a {
                                font-size: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .blogDetails {
        .secHead {
            font-size: 30px;
        }

        .blogContentText {
            h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .secHead {
                font-size: 25px;
            }
        }
    }

    .sideBar {
        padding-top: 40px;
    }
}

@media (max-width: 575px) {
    .blogDetails {
        .blogDetailsImg {
            height: 250px;
        }
    }
}