.cards-container {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    max-width:320px;
    margin:0 auto;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center
}
@media only screen and (min-width:960px) {
    .cards-container {
        -webkit-box-pack:normal;
        -ms-flex-pack:normal;
        justify-content:normal
    }
}
@media only screen and (min-width:688px) {
    .cards-container--md,
    .cards-container--sm,
    .cards-container--xs {
        max-width:640px
    }
}
@media only screen and (min-width:1032px) {
    .cards-container--md,
    .cards-container--sm {
        max-width:960px
    }
}
@media only screen and (min-width:1280px) {
    .cards-container--md {
        max-width:1280px
    }
}
.cards-container--filters {
    margin-bottom:24px
}
.cards-container--filters .cards-container__filter {
    -webkit-box-flex:1;
    -ms-flex:1 0 320px;
    flex:1 0 320px;
    padding:0 12px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
.cards-container--filters .cards-container__filter .form-field {
    width:100%
}
.cards-container--filters .cards-container__filter--primary {
    -webkit-box-flex:1;
    -ms-flex:1 0 100%;
    flex:1 0 100%
}
@media only screen and (min-width:1032px) {
    .cards-container--filters .cards-container__filter--primary {
        -webkit-box-flex:1;
        -ms-flex:1 0 320px;
        flex:1 0 320px
    }
}
@media only screen and (min-width:688px) {
    .cards-container--fill-whitespace .card__container {
        -webkit-box-flex:1;
        -ms-flex:1 0 320px;
        flex:1 0 320px
    }
}
@media only screen and (min-width:1032px) {
    .cards-container--feature-first .card__container:nth-of-type(1) {
        -webkit-box-flex:0;
        -ms-flex:0 0 100%;
        flex:0 0 100%
    }
    .cards-container--feature-first .card__container:nth-of-type(1) .card {
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
        -ms-flex-flow:row nowrap;
        flex-flow:row nowrap;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex
    }
    .cards-container--feature-first .card__container:nth-of-type(1) .card__graphic {
        border-bottom:none;
        border-right:1px solid rgba(0,0,0,.12);
        padding-bottom:0;
        min-height:400px;
        height:100%
    }
    .cards-container--feature-first .card__container:nth-of-type(1) .card__content {
        -webkit-box-flex:0;
        -ms-flex:0 0 296px;
        flex:0 0 296px
    }
    .cards-container--feature-first .card__container:nth-of-type(1) .card__title {
        font-size:1.44em
    }
    .cards-container--feature-first .card__container:nth-of-type(1) .card__description {
        font-size:1em;
        -webkit-line-clamp:5
    }
    .cards-container--feature-first .card__container:nth-of-type(1) .card:hover .card__graphic-img {
        -webkit-transform:scale(1.01);
        transform:scale(1.01)
    }
}
@media only screen and (min-width:960px) {
    .cards-container--alternate-three-two .card__container:nth-of-type(5n+1),
    .cards-container--alternate-three-two .card__container:nth-of-type(5n+2),
    .cards-container--alternate-three-two .card__container:nth-of-type(5n+3) {
        -webkit-box-flex:0;
        -ms-flex:0 0 320px;
        flex:0 0 320px
    }
    .cards-container--alternate-three-two .card__container:nth-of-type(5n+4),
    .cards-container--alternate-three-two .card__container:nth-of-type(5n+5) {
        -webkit-box-flex:0;
        -ms-flex:0 0 50%;
        flex:0 0 50%
    }
}
@media only screen and (min-width:960px) {
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(5n+1) {
        -webkit-box-flex:1;
        -ms-flex:auto;
        flex:auto
    }
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(1) {
        -webkit-box-flex:0;
        -ms-flex:0 0 100%;
        flex:0 0 100%
    }
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(5n+2),
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(5n+3),
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(5n+4) {
        -webkit-box-flex:0;
        -ms-flex:0 0 320px;
        flex:0 0 320px
    }
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(5n+5),
    .cards-container--alternate-three-two.cards-container--feature-first .card__container:nth-of-type(5n+6) {
        -webkit-box-flex:0;
        -ms-flex:0 0 50%;
        flex:0 0 50%
    }
}
.card {
    display:block;
    background:#fff;
    color:rgba(0,0,0,.9);
    text-decoration:none;
    border-radius:2px;
    -webkit-box-shadow:0 1px 5px 0 rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12);
    box-shadow:0 1px 5px 0 rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12);
    margin-bottom:24px;
    outline:0;
    overflow:hidden;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1
}
.card__container {
    -webkit-box-flex:0;
    -ms-flex:0 0 320px;
    flex:0 0 320px;
    padding:0 12px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
.card__graphic {
    width:100%;
    position:relative;
    border-bottom:1px solid rgba(0,0,0,.12);
    overflow:hidden;
    padding:0;
    padding-bottom:52.5%
}
.card__graphic--aspect-16to9 {
    padding-bottom:56.25%
}
.card__graphic-container {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0
}
.card__graphic-img {
    height:100%;
    width:100%;
    -o-object-fit:cover;
    object-fit:cover;
    -o-object-position:center;
    object-position:center;
    -webkit-transition:.3s ease transform;
    transition:.3s ease transform;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    -webkit-transform:translateZ(0) scale(1);
    transform:translateZ(0) scale(1)
}
.card__content {
    padding:24px;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-flow:column nowrap;
    flex-flow:column nowrap
}
.card__description {
    font-size:.833em;
    text-overflow:ellipsis;
    overflow:hidden;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    display:-webkit-box;
    margin-bottom:0
}
.card__title-type {
    font-size:.833em;
    font-weight:600;
    margin-top:0;
    color:rgba(0,0,0,.6)
}
.card__title {
    font-size:1.2em;
    margin:0
}
.card__title a {
    text-decoration:none
}
.card__title a:hover {
    color:#000
}
.card__footer {
    padding-top:12px;
    font-size:.833em;
    margin-top:auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    font-weight:600
}
.card__footer-cta {
    text-decoration:underline
}
.card--comparison-logo .card__graphic {
    background:#000
}
.card--comparison-logo .card__graphic-img {
    -o-object-fit:contain;
    object-fit:contain
}
.card--comparison-logo .card__graphic-container {
    height:25%;
    width:55%;
    top:50%;
    left:50%;
    right:auto;
    bottom:auto;
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%)
}
.card:hover {
    color:currentColor
}
.card:hover .card__graphic-img {
    -webkit-transform:translateZ(0) scale(1.04);
    transform:translateZ(0) scale(1.04)
}
.card--is-hoverable .card,
a.card {
    -webkit-transition:-webkit-box-shadow .2s ease;
    transition:-webkit-box-shadow .2s ease;
    transition:box-shadow .2s ease;
    transition:box-shadow .2s ease,-webkit-box-shadow .2s ease
}
.card--is-hoverable .card.card--has-focus,
.card--is-hoverable .card:focus,
.card--is-hoverable .card:hover,
a.card.card--has-focus,
a.card:focus,
a.card:hover {
    color:rgba(0,0,0,.9);
    -webkit-box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);
    box-shadow:0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12)
}
.wizard-staff {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-line-pack:center;
    align-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:start;
    -ms-flex-pack:start;
    justify-content:flex-start
}
.wizard-staff__step {
    position:relative;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    -ms-flex-line-pack:center;
    align-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center
}
.wizard-staff__step:after,
.wizard-staff__step:before {
    display:none;
    background:rgba(0,0,0,.4);
    height:1px;
    width:calc(50% - 12px);
    position:absolute;
    top:9px
}
.wizard-staff__step:not(:first-child):before {
    content:"";
    display:block;
    right:calc(50% + 12px)
}
.wizard-staff__step:not(:last-child):after {
    content:"";
    display:block;
    left:calc(50% + 12px)
}
.wizard-staff__step-icon {
    color:rgba(0,0,0,.4);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    font-size:20px;
    line-height:1;
    -webkit-transition:color .2s ease;
    transition:color .2s ease
}
.wizard-staff__step-icon--completed {
    display:none
}
.wizard-staff__step-icon--active {
    display:none
}
.wizard-staff__step-label {
    color:rgba(0,0,0,.4);
    font-size:.694em;
    font-weight:600;
    line-height:18px;
    letter-spacing:.25px;
    text-align:center;
    -webkit-transition:color .2s ease;
    transition:color .2s ease
}
.wizard-staff__step--completed:after,
.wizard-staff__step--completed:before {
    background:#f224f2
}
.wizard-staff__step--completed .wizard-staff__step-icon {
    display:none
}
.wizard-staff__step--completed .wizard-staff__step-icon--completed {
    color:#f891f8;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
.wizard-staff__step--active:before {
    background:#f224f2
}
.wizard-staff__step--active .wizard-staff__step-icon {
    display:none
}
.wizard-staff__step--active .wizard-staff__step-icon--active {
    color:#f224f2;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
.wizard-staff__step--active .wizard-staff__step-label {
    color:#000
}
.page--demo {
    background:#24acf2
}
@media only screen and (min-width:960px) {
    .page--demo {
        background-image:url(/themes/messagedemon/images/demo-background.jpg);
        background-size:cover;
        background-repeat:no-repeat;
        background-position:top center
    }
}
.nav__logo {
    fill:#fff
}
.demo {
    padding-bottom:48px
}
.demo__form-container {
    max-width:1280px;
    padding:0 20px;
    margin:0 auto
}
.demo__form-container--challenger {
    display:none
}
.demo__form-container--challenger .demo__form-card {
    max-width:740px
}
.demo__form-card {
    background:#fff;
    max-width:424px;
    padding:24px 36px;
    border-radius:2px;
    -webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    margin:0 auto
}
@media only screen and (min-width:640px) {
    .demo__form-card {
        padding:48px 60px
    }
}
.demo__form-step {
    padding-top:0;
}
@media only screen and (min-width:640px) {
    .demo__form-step {
        padding-top:0;
    }
}
.demo__form-step-heading {
    margin:0 0 1.2em
}
.demo .header__heading {
    font-size:1.728em
}
.demo .header__subhead {
    margin-bottom:0
}
.demo-typ {
    padding-bottom:48px
}
.demo-typ__on-demand-video {
    background:#fff;
    -webkit-box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    margin-bottom:36px
}
@media only screen and (min-width:640px) {
    .demo-typ__on-demand-video {
        margin-bottom:48px
    }
}
.demo-typ__on-demand-cta {
    background:#fff;
    text-align:center;
    padding:12px
}
@media only screen and (min-width:640px) {
    .demo-typ__on-demand-cta {
        text-align:left;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -ms-flex-line-pack:center;
        align-content:center;
        -webkit-box-align:center;
        -ms-flex-align:center;
        align-items:center;
        -webkit-box-pack:center;
        -ms-flex-pack:center;
        justify-content:center
    }
}
.demo-typ__on-demand-cta-heading {
    -webkit-box-flex:0;
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    margin-top:0
}
@media only screen and (min-width:640px) {
    .demo-typ__on-demand-cta-heading {
        padding-right:12px;
        margin:0
    }
}
.demo-typ__on-demand-cta-form {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-line-pack:center;
    align-content:center;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center
}
.demo-typ__on-demand-cta-input {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    border-right:none;
    border-top-right-radius:0;
    border-bottom-right-radius:0
}
.demo-typ__on-demand-cta-btn {
    -webkit-box-flex:0;
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    border-top-left-radius:0;
    border-bottom-left-radius:0
}
