/*! CSS Used from: Embedded */
a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

*, :after, :before {
    box-sizing: inherit;
}

h2, h3, p {
    margin: 0;
}

* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-kerning: auto;
    font-kerning: auto;
}

::-moz-selection {
    color: #fff;
    background-color: #a91e8c;
}

::selection {
    color: #fff;
    background-color: #a91e8c;
}

.button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.button {
    font-size: 16px;
    padding: 0;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    background-color: transparent;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-sizing: border-box;
}

    .button:not(:last-child):not(.button--no-margin) {
        margin-right: 20px;
    }

.button__inner {
    position: relative;
    z-index: 1;
}

.button--regular {
    font-size: 14px;
    height: 45px;
    border-radius: 23px;
    padding: 0 26px;
}

.button--white {
    background-color: #fff;
    color: #214d75;
}

.no-touchevents .button--white:hover span {
    color: #2a9d75;
}

.button--purple {
    background-color: #a91e8c;
    border-color: #a91e8c;
    color: #fff;
}

.button--outline {
    background: none;
    border-width: 2px;
    border-style: solid;
}

    .button--outline.button--white {
        color: #fff;
    }

        .button--outline.button--white:hover span {
            color: #2a9d75;
        }

@media (min-width:769px) {
    .button:not(:last-child):not(.button--no-margin) {
        margin-right: 15px;
    }

    .button--regular {
        font-size: 16px;
        height: 50px;
        border-radius: 25px;
    }
}

.promo-panel__content {
    position: relative;
    padding: 20px;
    color: #fff;
}

.promo-panel__title {
    font-size: 30px;
    line-height: 35px;
}

    .promo-panel__title > a {
        text-decoration: none;
        color: currentColor;
    }

.promo-panel__subtitle-pre {
    font-size: 16px;
}

.promo-panel__button {
    margin-top: 20px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

@media (min-width:769px) {
    .promo-panel__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .promo-panel__content {
        padding: 0 40px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .promo-panel__content-container {
        margin: 190px 0;
        max-width: 500px;
    }

    .promo-panel__title {
        position: relative;
        font-size: 40px;
        line-height: 1.2;
        margin: 15px 0;
    }

    .promo-panel__copy {
        font-size: 18px;
        margin: 15px 0;
    }

    .promo-panel--left .promo-panel__button {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
}

@media (min-width:1025px) {
    .promo-panel--carousel .promo-panel__content {
        width: 100%;
        padding-left: 10px;
    }

    .promo-panel--carousel .promo-panel__content-container {
        margin: 100px 0;
    }
}
