
.member-search h1 {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.2125rem;
    text-transform: uppercase;
    text-align: center;
}
.searchBox {
    background: transparent;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0;
    border-radius: 50px;
    border: 1px solid rgb(115,191,67);
    margin-bottom: 20px;
}
.searchBox span {
    background: #73BF43;
    color: #fff;
    height: 100%;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.5rem;
    margin: .1225rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.news_card {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    width: 95%;
}
.news_card img{
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 2px;
}
.news_content h3{
    padding-top: 20px;
    font-size: 18px;
    min-height: 40px;
    margin-bottom: 15px;
}
.details_btn {
    color: #73BF43;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 2px solid #73BF43;
    padding: 10px 25px;
    box-shadow: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
   margin-bottom: 20px;
}
.details_btn:hover{
    background-color: #73BF43;
    outline: none;
    border: 2px solid #73BF43;
    box-shadow: none;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #73BF43;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
 .active .page-link{
    background-color: #73BF43 !important;
    border-color: #73BF43;
}