/****************************************************************************
 * Links
 ****************************************************************************/
a, a:visited {
    color: inherit;
    -webkit-transition: color .25s ease;
    -moz-transition: color .25s ease;
    -ms-transition: color .25s ease;
    -o-transition: color .25s ease;
    transition: color .25s ease;
}
a:hover, a:focus {
    color: inherit;
}


.content a:not(.button) {
    text-decoration: underline;
    color: #8b295d;
    font-weight: 500;
}

.content a.white_color {
    color: #ffffff;
}

a:focus {
    outline: 0.125rem solid rgba(0,0,0,0.1);
}

/****************************************************************************
 * Buttons
 ****************************************************************************/
.button, .button:visited,
.button.solid:hover {
    padding: 0.625rem 2.5rem;
    background-color: transparent;
    color: currentColor;
    border: solid 1px currentColor;
    border-radius: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

.button:hover,
.button:focus,
.button.solid {
    background-color: #d4388c;
    border-color: #d4388c;
    color: #FFFFFF;
}

.pink_bg .button:hover,
.pink_bg .button:focus {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #d4388c;
}

.button.newsletter {
    font-size:1.5rem;
    text-transform: none;
}

.centered_button .button-group {
	-webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
