.blogMainHeading{
    margin-bottom: 20px;
}
.blogMain{
    .row{
        row-gap: 20px;
    }
}
.blogAsideD {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    .brandContainer {
        position: relative;
        display: flex;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background-color: #ffffff;
        border-radius: 10px;
        .search-input {
            width: 100%;
            font-family: "Montserrat", sans-serif;
            font-size: 16px;
            padding: 0px 45px 0px 15px;
            border: 1px solid #c7c7c7;
            color: #6c6c6c;
            border-radius: 6px;
            transition: all 0.4s;
            border-radius: 10px;
            height: auto;
            &::placeholder {
                font-size: 14px;
            }
        }
    }
    .search-btn {
        background-color: transparent;
        font-size: 18px;
        padding: 6px 9px;
        margin-left: -45px;
        border: none;
        color: #6c6c6c;
        transition: all 0.4s;
        z-index: 10;
    }
    .blog_aside_heading {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    ul{
        li{
            &:not(:last-child) {
                border-bottom: 1px solid #d4d4d4;
            }
            a {
                display: flex;
                justify-content: space-between;
                padding: 10px 20px;
                position: relative;                
                &::before {
                    position: absolute;
                    content: "";
                    width: 6px;
                    height: 6px;
                    left: 0;
                    top: 20px;
                    background-color: #6c6c6c;
                    border-radius: 50%;
                    transition: all 0.3s;
                }
                p{
                    margin-bottom: 0px;
                    transition: 0.5s;
                    &:last-child{
                        font-weight: 600;
                    }
                }
                &:hover{
                    p{
                        color:var(--orange);
                    }
                    &::before{
                        background-color: var(--orange);
                    }
                }
            }
        }
    }
    &.blogAsideD3{
        .row{
            &:not(:last-child){
                margin-bottom: 20px;
            }
            .blog_aside_Img {
                height: 95px;
                transform: scale(1);
                overflow: hidden;
                transition: all 0.3;
                border-radius: 10px;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
            .blog_aside_Text{
                .blog_aside_date {
                    color: #bbbbbb;
                    font-size: 14px;
                    margin-bottom: 5px;                    
                }
                p {
                    line-height: 1.2;
                    font-size: 16px;
                    transition: all 0.3s;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                }
                img {
                    filter: brightness(0) invert(0);
                    width: 12px;
                    height: 12px;
                    margin-left: 5px;
                    margin-bottom: 10px;
                    transition: all 0.3s;
                }
            }
        }
    }
}
#load-more {
    margin: 0 auto;
    margin-top: 40px;
    padding: 15px 30px;
    color: var(--orange);
    background-color: #000;
    border-radius: 5px;
    display: table;
    transition: 0.5s;
    &:hover{
        background-color: var(--orange);
        color: #000;
    }
}


/*==blog details start===*/
.blogDetailsMain {
    padding: 20px 20px 20px;
    box-shadow: rgb(0 0 0 / 25%) 2px -2px 11px 1px, rgb(0 0 0 / 0%) 0px 1px 2px 0px;
    border-radius: 20px;
    .blogDetailsD2 {
        margin-bottom: 10px;
        .blogDetailsTop {
            margin-bottom: 10px;
            ul {
                display: flex;
                list-style: none;
                gap: 20px;
                align-items: center;
                padding: 0 0;
                margin-bottom: 0;
                li {
                    font-size: 16px;
                    line-height: 27px;
                    list-style-type: square;
                    padding: 5px;
                    color: #1f2428;
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    position: relative;
                    .authorName {
                        padding-left: 20px;
                        position: relative;
                        &::before {
                            content: "\f508";
                            position: absolute;
                            left: 0;
                            top: -1px;
                            font-family: "FontAwesome";
                            font-size: 14px;
                            color: #6e6e6e;
                        }
                        span {
                            color: #6e6e6e;
                        }
                    }
                    i {
                        color: #a3a3a3;
                    }
                    :not(:first-child) {
                        padding-left: 0px;
                    }
                    p {
                        margin-bottom: 0;
                        color: #6e6e6e;
                        text-align: justify;
                    }
                }
            }
        }
        
    }
    
    .blogDetailsTopList{
        margin-bottom: 20px;
    }
    .blogDetailsD1{
        border-radius: 30px;
        overflow: hidden;
        margin-bottom: 20px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
    strong{
        font-weight: 600;
    }
    .blogDetailsD6{
        padding: 10px 0;
        padding: 15px;
        background: #f1f1f1;
        margin: 10px 0;
        border-radius: 15px;
        ul{
            display: flex;
            gap: 10px;
            li{
                font-size: 16px;
                display: flex;
                align-items: center;
                a{
                    width: 32px;
                    height: 32px;
                    border-radius: 5px;
                    background-color: #000;
                    display: flex;
                    font-size: 15px;
                    justify-content: center;
                    align-items: center;
                    color: var(--orange);
                    img{
                        filter: brightness(0) invert(1);
                        width: 14px;
                        height: auto;
                    }
                }
            }
        }
    }
    h2{
        font-size: 30px;
        line-height: normal;
        margin-bottom: 10px;
        font-weight: 600;
    }
    h3{
        font-size: 24px;
        line-height: normal;
        margin-bottom: 10px;
        font-weight: 600;
    }
    h4{
        font-size: 20px;
        line-height: normal;
        margin-bottom: 10px;
        font-weight: 600;
    }
    p{
        a{
            color: var(--orange);
            font-weight: 500;
            img{
                width: 100%;
                border-radius: 20px;
            }
        }
        strong{
            font-weight: 400;
        }
    }
    h3{
        margin-bottom: 20px;
    }
    .btnArea{
        margin-bottom: 20px;
    }
    .blogInnerTable {
        overflow: auto;
        border: 1px solid #ccc;
        border-radius: 10px;
        margin-bottom: 25px;
        .blogTable {
            width: 100%;
            margin-bottom: 0;
            th {
                background-color: #fdbb05;
                color: #000;
                border: none;
                border-right: 1px solid #9d9d9d73;
                border-top: none;
                vertical-align: middle;
                padding: 10px;
                font-weight: 600;
                font-size: 16px;
                &:last-child{
                    border-right: none;
                }
            }
            td {
                border: 1px solid #9d9d9d;
                padding: 10px;
                vertical-align: top;
                font-size: 15px;
                line-height: 22px;
                vertical-align: middle;
                border-top: none;
                border-left: none;
                border-right: 1px solid #9d9d9d73;
                border-bottom: 1px solid #9d9d9d73;
                &:last-child{
                    border-right: none;
                }
            }
            tr:last-child{
                td{
                    border-bottom: none;
                }
            }
        }
    }
    .blogDetailsD1_text{
        ul, ol{
            margin-bottom: 10px;
            padding-left: 0px;
            li{
                font-size: 16px;
                line-height: 27px;
                padding-left: 15px;
                position: relative;
                list-style: none;
                &:before{
                    width: 5px;
                    height: 5px;
                    border-radius: 50%;
                    background-color: #000;
                    position: absolute;
                    left: 0;
                    top: 8px;
                    content: "";
                }
            }
        }
    }
}
.blogAsideD{
    .inputBox{
        margin-bottom: 20px;
        p{
            .inputH{
                display: block;
                margin-bottom: 5px;
            }
            br{
                display: none;
            }
        }
        input[type="url"]{
            width: 100%;
            height: 60px;
            font-size: 18px;
            color: #000;
            line-height: 45px;
            padding: 5px 20px;
            border-radius: 8px;
            border: 1px solid #ccc;
            background-color: transparent;
        }
    }
    .wpcf7-spinner{
        position: absolute;
    }
    .wpcf7-captchac{
        height: 45px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 10px 0 #ccc;
        margin-bottom: 10px;
    }
}


.blogAside{
    margin-top: 30px;
}
.accordion-item{
    margin-bottom: 20px;
    box-shadow: 0 5px 10px 0px #aeaeae42;
    border-radius: 20px;
    &:last-child{
        margin-bottom: 0px;
    }
    .accordion-header{
        padding: 20px;
        cursor: pointer;
        padding-right: 30px;
        background-color: #d7d7d7cf;
        border-radius: 15px;
        width: 100%;
        position: relative;
        font-size: 20px;
        text-align: left;
        span{
            display: none;
        }
        &::after{
            position: absolute;
            right: 20px;
            content: "\f107";
            font-size: 20px;
            color: #000;
            font-family: "FontAwesome";
            top:50%;
            transform: translateY(-50%);
            transition: 0.5s;
        }
        h4{
            font-size: 20px;
            margin-bottom: 0px;
        }
    }
    .accordion-body{
        padding: 20px;
        display: none;
        .brandparaD{
            .notranslate{
                display: none;
            }
            p{
                color: #fff;
                .notranslate{
                    display: none;
                }
                &:last-child{
                    margin-bottom: 0px;
                }
            }
        }
    }
    &.active{
        background-color: #2b2b2b;
        border-radius: 20px;
        .accordion-header{
            background-color: #000000;
            border-bottom: 1px solid #fdbb057d;
            h4{
                color:  var(--orange);
            }
            &::after{
                transform: rotate(180deg) translateY(-50%);
                color: var(--orange);
                top: 20%;
            }
        }
    }
}
@media (max-width: 768px) {
    .blogDetailsMain {
        h2 {
            font-size: 24px;
            line-height: normal;
            margin-bottom: 10px;
        }
        h3{
            font-size: 18px;
        }
    }
    .blogDetailsMain {
        .blogDetailsD2 {
            .blogDetailsTop {
                ul {
                    display: flex;
                    list-style: none;
                    gap: 20px;
                    row-gap: 0px;
                    align-items: center;
                    padding: 0 0;
                    margin-bottom: 0;
                    flex-wrap: wrap;
                }
            }
        }
    }
}

@media (max-width: 580px) {
    .blogDetailsMain {
        h2 {
            font-size: 20px;
        }
        h3{
            font-size: 18px;
        }
    }
}