I have added this css code inside the custom.css file.
ul.pagination{
display: flex;
justify-content: space-between;
}
li.next.page-item>a,
li.previous.page-item>a{
font-size: 27px;
background: transparent;
display: flex;
align-items: center;
padding: 0;
border: none;
}
li.next.page-item>a:hover,
li.previous.page-item>a:hover{
border: none;
}
li.next.page-item>a:after {
content: "\f061";
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 44px;
margin-left: 10px;
}
li.previous.page-item>a:before {
content: "\f060";
font-family: 'Font Awesome 5 Free';
font-weight: 900;
font-size: 44px;
margin-right: 10px;
}