/* Block Content: CTA */

.block--content-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1em 0;
    justify-content: flex-start;
    align-items: center;
}
.block--content-cta-button {
    display: block;
    border: solid thin #000;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    margin: .5em 2% .5em 0;
    padding: 8px 10px 9px 10px;
    width: 100%;
    text-align: center;
}
@media only screen and (min-width: 768px) {
    .block--content-cta-button {
        width: 46%;
    }
}
@media only screen and (min-width: 1030px) {
    .block--content-cta-button {
        max-width: 250px;
    }
}
.block--content-cta-buttons .button-link {
    border: none;
    color: #000;
    font-weight: 600;
    margin-left: 1em;
    padding-left: 0;
    text-decoration: none;
    text-align: left;
    vertical-align: middle;
    width: auto;
}

.cta-align-left {
    justify-content: flex-start;
}
.cta-align-left a {
    margin: .5em 2% .5em 0;
}
.cta-align-center {
    justify-content: center;
}
.cta-align-center a {
    margin: .5em 2%;
}
.cta-align-right {
    justify-content: flex-end;
}
.cta-align-right a {
    margin: .5em 0 .5em 2%;
}