.search_form {
	display: flex;
	justify-content: center;
	padding-top: 15px;
}  
.search_form form{
	width: 100%;
	position: relative;
}
.search_form i:before {
	font-family: 'Font Awesome 5 Free' !important;
	font-weight: 600 !important;
}
.search_form input {
	height: 40px;
	width: 100%;
	padding: 10px;
	border: none;
} 
.search_form button{
	position: absolute;
	right: 0;
	top: 0;
	height: 40px;
	padding: 5px 30px;
	background-color: #24499a;
	cursor: pointer;
	border: none;
	outline: none;
	color: #fff;
	font-size: 17px;
}
@media(max-width: 640px){
	.search_form form{
		width: 90%;
	}
	.search_form input {
		height: 30px;
	}
	.search_form button {
		height: 30px;
		font-size: 13px;
	}
}