.heading{
    width: 100%;
}
.heading .center_heading{
    max-width: 1100px;
    width: 100%;
    margin: auto;
    color: var(--primery-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.29);
    padding-bottom: 10px;
}
.heading .center_heading h3{
    padding: 0;
    margin: 0;
    font-weight: 700;
}
.consultant_card {
    padding: 5px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
    display: grid;    
    position: relative;
    z-index: 800;
    grid-template-columns: 1fr minmax(300px, 72rem) 1fr;
}

.consultant_card .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(5rem, 12rem));
    gap: 1.5rem;
    justify-content: center;
    padding-bottom: 5px;           
}

.consultant_card .cards .card {
    margin: auto;
    height: auto;
    width: 100%;
    min-height: auto;
    position: relative;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background-color: transparent;
    border-radius: 10px;
    transition: transform .2s;
    background-color: white;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border: 1px solid transparent;
}
.consultant_card .cards .card:hover{
    transform: scale(1.05);
    border: 1px solid var(--heighlight-color);
    box-shadow: var(--heighlight-color) 0px 5px 15px;
}
.consultant_card .cards .card  .jobs_body{
    height: 270px;
    overflow: hidden;
    position: relative;
}
.consultant_card .cards .card  .jobs_body img{
    height: 100%;
    width: 100%;
}
.consultant_card .cards .card  .jobs_body .name_div{
    background-image: linear-gradient(to top, rgb(0, 0, 0) , rgba(0, 0, 0, 0));
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60%;
    width: 100%;
}
.consultant_card .cards .card  .jobs_body .name_div p{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-weight: 600;
}
.consultant_card .cards .card:hover .jobs_body .name_div p{
    color: var(--heighlight-color);
}


/* ____________________________ multi section start */
.multi_section{
    width: 100%;
    display: flex;
    padding-bottom: 2rem;
}
.multi_section .multi_section_center{
    max-width: 1100px;
    width: 100%;
    margin: auto;
    display: flex;
    gap: 10px;
}
.multi_section .heading .center_heading{
    max-width: 100%;
}
@media (max-width: 800px) {
    .multi_section .multi_section_center{
        display: block;
    }
    .consultant_card .cards {
        grid-template-columns: repeat(auto-fit, minmax(5rem, 9rem));
    }
    .consultant_card .cards .card  .jobs_body{
        height: 180px;
    }
    .heading .center_heading{
        padding-left: 10px;
        padding-right: 7px;
    }
    .heading .center_heading h3{
        font-size: 16px;
    }
}
/* ____________________________ multi section end */