.blue-button p {
    border: 10px solid red;
  height: 200px;
  width: 200px;
}

.blue-button p {
    border: none;
    color: #fff !important; 
    background-color: #286dc0;
    display: inline-block;
}

.blue-button a {
    border: none !important;
    color: #fff !important; 
    background-color: #286dc0 !important;
    display: inline-block;
}

.blue-button a:hover {
    background-color: #00356b !important;
}

.blue-button a:after {
	position: relative;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 3.5px 0 3.5px 5px;
	border-color: transparent transparent transparent #fff;
	display: inline-block;
	top: -1px;
	margin-left: 8px;
	transition: transform .25s ease;
}

.blue-button a:hover:after {
	transform: translate3d(2px, 0, 0);
}

