
a.link_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
	margin-top:30px;
	margin-bottom:50px;
    padding: .8em;
    border: none;
    border-radius: 5px;
    background-color: #194d97;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
	transition:0.3s;
}

a.link_button::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

a.link_button:hover {
    background-color: #1579c0;
	text-decoration:none;
}


.submenu .last {
	border-bottom:2px solid #194d98;
}