.custom-button {
	display: flex;
	margin-bottom: 30px;
}

.custom-button.align-left {
    justify-content: flex-start;
}

.custom-button.align-center {
    justify-content: center;
}

.custom-button.align-right {
    justify-content: flex-end;
}

.custom-button .button-link {
	color: #fff;
    font-family: acumin-pro, sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 1em;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #1a2e37;
    padding: 16px 45px;
}

.custom-button .button-link:hover {
    background-color: #137d76;
}

.custom-button .button-link:focus {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #005d84;
    outline: none;
}