.news-img-container{
    width: 99.5%;
	height: 187px!important;
	min-width:300px; 
	-webkit-transition: 0.3s ease-out;

	-moz-transition: 0.3s ease-out;

	transition: 0.3s ease-out;
	 
}
.news-img-container:hover{
	-webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    transform: scale(1.05, 1.05);
}
.news-img{
	width: 100%;
	height: 100%!important;
	object-fit: cover;
	border-radius: 3px!important;
}
 
.view-all-button-container-news{
	display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 60px;
}
.view-all-button{
	font-family: neuzeit-grotesk;
	font-weight: 400;
	font-style: normal;
	outline: none;
	background-color: transparent;
	border-radius: 20px;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 5px;
	padding-top: 5px;
	border: 2px solid #3d405b;
	color: #3d405b;
	margin-top: 10px;
	 
}
.view-all-button:hover{
	font-weight: 700;
	box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
}
.view-all-button:hover{
	background-color: #cccaca;
	transition-duration: .5s;
}
.view-all-button:focus {
    outline: none;
}
a:focus{
	outline: none;
}
.post-title-text{
	
	color: #3d405b;
	font-family: neuzeit-grotesk;
	font-weight: 600;
	font-size: 18px;
}
.latest-news-head{
	font-weight: 700;
	font-style: normal;
	color: #3d405b;
	font-family: neuzeit-grotesk;
	margin-bottom: 10px;
}
.news-box{
	width: 350px;
	min-width:300px;
}
.news-box:hover{
	width: 354px;
}
.slick-slide {
	margin: 0 26px;
}
/* the parent */
.slick-list {
	margin: 0 -26px;
}
.row-slick, *:focus {
    outline: none;
}

.row-slick{
	height: 200px;
}



/*style for View all news page*/
.title_bar{
	background-color: #3d405b;
	padding-top: 30px;
	padding-bottom: 30px;
}
.title_bar_back_button{
	color: #eceae6;
	font-family: neuzeit-grotesk;
	float: right;
	background-color: transparent;
	border: none;
	margin-top: 10px;
	
}
.back_arrow_text{
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.back_arrow_text:hover{
	padding-left: 5px;
}
.back_arrow:before{
	display: inline-block;
	content: '\e808';
    font-size: 12px;
    font-family: 'bfp_icons';
    transform: rotate(
-180deg);
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}
.back_arrow:hover{
	padding-right: 5px;
}
.title_container{
	width: 100%;
	 
	flex-direction: horizontal;
}
.news_title_text{
	color: #eceae6;
	text-align: center;
    font-size: 38px;
	font-weight: 700;
	text-transform:uppercase;
    font-family: neuzeit-grotesk;
	display: inline;
 
}
.news_img_box_container{
	height: 205px;
	margin-top: 40px;
	 
}
.news_img_box{
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	transition: 0.2s ease-out;

	height: 197px;
	width: 99.5%;
	 
	object-fit: cover;
}
.news_img_box:hover{
	-webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    transform: scale(1.05, 1.05);
}
.news_heading{
	margin-top: 8px;
	line-height: 80%; 
	color: #3d405b;
	font-family: neuzeit-grotesk;
	font-weight: 600;
	font-size: 20px;
}
.news_date{
	margin-top: 8px;
	color: #e07a5f;
	font-family: neuzeit-grotesk;
}

This will remove your colour as well as the underline that anchor tag exists with

a {
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/*style for filter button*/
.news_filter_button{
	margin-top: 10px;
	color: #3d405b;
    font-family: neuzeit-grotesk;
	padding-top: 3px!important;
	padding-bottom: 3px!important;
	padding-left: 15px!important;
	padding-right: 15px!important;
	border-radius: 18px!important;
	background-color: transparent;
	border: 2px solid #3d405b;
	margin-left: 10px;
	margin-right: 10px;
	 
}
.news_filter_active{
	background-color: #3d405b!important;
	color: #eceae6!important;
}
.news_filter_button:hover{
	background-color: #3d405b!important;
	color: #eceae6!important;
}
.news_filter_button:focus{
	outline: none!important;
}
.display_none{
	display: none;
}
@media only screen and (max-width: 550px) {
	.news_filter_button{
		margin-right: 4px;
		margin-left: 4px;
	
	}
	.title_bar_back_button{
		display: none;
	}
	 
}
 