
    .blogItem{
        margin: 0 0px;
        margin-bottom:50px;
        &:nth-child(even){
            display: flex;
            flex-direction: column-reverse;
            flex-wrap: wrap;
            .blogContent{
                padding-top: 20px;
                .blogInfo{
                    margin-bottom: 0px;
                }
            }
        }
        
        .blogContent{
            a{
                color: #000;
            }
        }
        .blogInfo{
            padding: 20px 0;
            margin-top: 20px;
            border-top: 1px solid #000;
            border-bottom: 1px solid #000;
            margin-bottom: 30px;
            ul{
                display: flex;
                flex-wrap: wrap;
                li{
                    width: 100%;
                    max-width: calc(33.33% - 20px);
                    flex: 0 0 calc(33.33% - 20px);
                    -ms-flex: 0 0 calc(33.33% - 20px);
                    padding: 0 0;
                    border-right: 1px solid #000;
                    text-align: left;
                    p{
                        font-size:14px;
                    }
                    .blogInfoInner{
                        display:flex;
                        align-items: center;
                        gap: 10px;
                    }
                    &:last-child{
                        border-right: none;
                        padding-right: 0px;
                    }
                    &:first-child{
                        padding-left: 0px;
                    }
                }
            }
        }
        .blogImg{
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            a{
                height: 100%;
                display: block;
                position: relative;
                &::before{
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    top: 0;
                    left: 0;
                    background-color: #11784499;
                    opacity: 0;
                    transition: 0.5s;
                    content: "";
                }
                &::after{
                    width: 60px;
                    height: 60px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%) rotate(-45deg);
                    transition: 0.5s;
                    content: "";
                    background: url(../images/right_arrow_icon.png) no-repeat center center var(--orange-color);
                    border-radius: 50%;
                    opacity: 0;
                }
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
        }
        &:hover{
            a{
                color: #00B565;
                &::before{
                    opacity: 1;
                    visibility: visible;
                }
                &::after{
                    opacity: 1;
                }
            }
        }
    }
    .col-md-6:nth-child(even){
        .blogItem{
            display: flex;
            flex-direction: column-reverse;
            flex-wrap: wrap;
            .blogContent{
                padding-top: 20px;
                .blogInfo{
                    margin-bottom: 0px;
                }
            }
        }
    }
    .comments-section{
        & > p{
            margin-top: 10px;
            padding: 8px 15px;
            border-radius: 5px;
            background-color: #ffcca8;
        }
        .comment-respond{
            .comment-reply-title{
                color: var(--orange-color);
                font-size: 20px;
                font-weight: 600;
                font-family: 'Public Sans';
                margin-bottom: 10px;
            }
            form{
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                & > p{
                    margin-bottom: 10px;
                    width: calc(50% - 10px);
                    input, textarea{
                        width: 100%;
                        height: 44px;
                        padding: 10px;
                        line-height: 24px;
                        border-radius: 10px;
                        border: 1px solid #cecece;
                    }

                    &.comment-form-comment{
                        width: 100%;
                        textarea{
                            height: 90px;
                            line-height: 1.2;
                            padding: 10px 10px;
                        }
                    }
                    &.comment-form-cookies-consent{
                        width: 100%;
                        display: flex;
                        align-items: center;
                        input{
                            width: 14px;
                            height: 14px;
                        }
                        label{
                            padding-left: 10px;
                            display: inline-block;
                            width: calc(100% - 14px);
                        }
                    }
                    &.form-submit{
                        width: 180px;
                        border-radius: 10px;
                        input{
                            color: #fff;
                            border-radius: 30px;
                            background: linear-gradient(90deg, #FF8531 0%, #007743 100%);
                        }
                    }
                }
            }
        }
    }
    .pagination{
        justify-content: flex-end;
    }
    .srchWrap .frmWrap{
        position: relative;
    }
    .srchWrap .frmWrap .inputTxt{
        min-height: 55px;
        border-radius:10px;
        box-shadow: 0px 0px 10px 0px #d9d9d9;
        background-color: #fff;
    }
    .frmWrap .srchBtn{
        position: absolute;
        width: 55px;
        height: 55px;
        border: none;
        border-radius: 50%;
        background: url(../images/search.png) no-repeat center center;
        left: 0;
    }

    .srchWrap ::placeholder {
        text-align: right;
        color: #666666 !important;
    }

    .srchWrap ::-ms-input-placeholder {
        color: #666666 !important;
    }

.blogSidebar h4{
    font-size: 24px;
    font-family: 'Lato';
    font-weight: bold;
    margin-bottom: 20px;
}
.catList li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catList li a{
    color: #000;
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 18px;
    padding-left: 15px;
    position: relative;
}
.catList li a::before{
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    left: 0;
    top:8px;
    background-color: #000;
    border-radius: 50%;
}
.catList li:not(:last-child){
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D4D4D4;
}
.catList li span{
    color: #000;
}
.catList li.active a, .catList li.active span{
    color: #00B565;
}
.catList li.active a::before{
    background-color:#00B565 ;
}
.blockListBg{    
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #ccc;
}
.blogPostList{
    background-color: #ffffff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}
.postList li{
    display: flex;
}
.postList li:not(:last-child){
    margin-bottom:40px;
}
.postList li .postImg{
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}
.postList li .postImg img{
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.postText{
    width: calc(100% - 100px);
    padding-left: 20px;
}
.postText{
    display: flex;
    align-items: end;
}
.postSummery p{
    margin-bottom: 5px;
    color: #656565;
}
.postSummery a{
    color: #000000;
    transition: 0.5s;
}
.postList li:hover .postSummery a{
    color: #00B565;
}
.postSummery{
    width: calc(100% - 40px);
}
.postArrow{
    width:40px;
    display: flex;
    justify-content: end    ;
}
.tagList {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}
.tagList li{
    width: 100%;
    max-width:calc(33.33% - 10px);
    margin-right: 10px;
}
.tagList li:nth-child(3n){
    margin-right: 0px;
}
.tagList li a{
    width: 100%;
    background-color: #00B565;
    display: block;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: 'Roboto';
    font-weight: normal;
    color: #fff;
    transition: 0.5s;
}
.tagList li a:hover{
    background: var(--orange-color);
    color: #fff;
}


/*====blog details start===*/

.blogInfo{
    margin-bottom: 20px;
    ul{
        display: flex;
        align-items: center;
        li{
            display: flex;
            align-items: center;
            margin-right: 30px;
            &:last-child{
                margin-right: 0px;
            }
            .blogInfoIcon{
                width: 25px;
                margin-right: 10px;
            }
            p{
                width: calc(100% - 25px);
                padding-left:0px;
                font-weight: 500;
                font-size: 18px;
            }
        }
    }
}
.blogDetailsPage{
    .blogInfo{
        ul{
            li{
                p{
                    padding-left:10px;
                }
            }
        }
    }
}
.blogDetailsImg{
    border-radius: 20px;
    overflow: hidden;
}
.blogDetailsTxt{
    padding-top: 20px;
    .blogTitle{
        font-size: 30px;
        color: #00B565;
        margin-bottom: 30px;
    }    
}
.blogDetailsShare{
    display: flex;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #cecece;
    justify-content: space-between;
    h6{
        color: var(--orange-color);
        font-size: 20px;
        font-weight: 600;
        font-family: 'Public Sans';
        margin-bottom: 10px;
    }
    .socialImg{
        display: flex;
        gap: 10px;
        a{
            color: #000;
            display: inline-block;

            &:not(:last-child){
                margin-right: 10px;
            }
        }
    }
    .tagWrap{
        ul{
            display: flex;
            gap: 5px;
            li{
                a{
                    color: #000000;
                }
            }
        }
    }
    .blogCommentSec{
        margin-top: 20px;
    }
}

@media (max-width: 1200px){
    .blogItem {
        .blogInfo {
            padding: 10px 0;
            ul{
                flex-direction: column;
                li {
                    margin-right: 0;
                    max-width: 100%;
                    flex: 0 0 100%;
                    -ms-flex: 0 0 100%;
                    border-right: 0;
                    &:first-child {
                        padding-left: 0px;
                    }
                    &:not(:last-child){
                        margin-bottom: 8px;
                    }
                }
            }
        }
    }
    .blogSecWrap{
        &.detailsBoxWrap{
            padding: 15px;
        }
    }
    .headingWrap{
        text-align: center;
    }
    .mapSec {
        .bookFormWrap {
            h2 {
                text-align: center;
            }
        }
    }
}

@media (max-width: 1024px){
    .blockListBg, .blogPostList{
        padding: 20px;
    }
}

@media (max-width: 991px){
    .footerMainBottom p{
        text-align: center;
    }
    .leftWrap{
        margin-bottom: 10px;
    }
}

@media (max-width: 767px){
    .blogListingWrap{
        .col-md-6{
            .blogItem{
                display: flex;
                flex-direction: column-reverse;

                .blogImg{
                    margin-bottom: 15px;
                }
                .blogInfo{
                    margin-bottom: 0;
                }
            }
            &:nth-child(2n) {
                & .blogItem {
                    .blogContent {
                        padding-top: 0px;
                    }
                }
            }
        }
    }
    .mapSec {
        .bookFormWrap {
            padding: 20px 15px;
        }
    }
}

@media (max-width: 585px){
    .postList{
        li{
            flex-direction: column;
            .postImg{
                width: 100%;
                height: 200px;
                margin-bottom: 10px;
            }
            .postText{
                width: 100%;
                padding-left: 0;
            }
        }
    }
}