﻿@charset "UTF-8";
/* CSS Document */

body {
    padding: 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}


p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
    padding-bottom: 15px;
    color: #000;
}

h1,
h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    line-height: 1.5em;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
}

.leg-accent {
    font-family: 'Allan', cursive;
    color: lime;
}

.leg-superscript {
    font-size: 1rem;
    position: relative;
    top: -1rem;
}

.leg-superscript2 {
    font-size: .6rem;
    position: relative;
    top: -.3rem;
}

.leg-btn-primary {
    display: block;
    width: 90%;
    max-width: 350px;
    margin: 0 auto;
    padding: 15px 0;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    text-transform: uppercase;
    border: none;
    border-radius: 35px;
    background-color: #F2A81D;
}

a.leg-btn-primary:hover,
a.leg-btn-primary:active,
a.leg-btn-primary:focus {
    color: #fff;
    background-color: #c65c14;
}

/*------------- Header -----------------*/
.leg-branding {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

    .leg-branding::after {
        content: "";
        clear: both;
        display: table;
    }

    .leg-branding img {
        width: 50%;
        max-width: 200px;
        max-height: 75px;
        float: left;
    }

.leg-headerbutton {
    float: right;
    padding: 5px 35px;
    margin-top: 5px;
    color: #00467F;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.75rem;
    text-transform: uppercase;
    border: none;
    border-radius: 35px;
    background-color: #F2A81D;
}

a.leg-headerbutton:hover,
a.leg-headerbutton:active,
a.leg-headerbutton:focus {
    color: #fff;
    background-color: #c65c14;
}
/*------------- Top CTA-----------------*/
.leg-topctaouter {
    width: 100%;
    padding: 40px 0 100px;
    background-image: url("../images/man-woman-computer.jpg");
    background-position: center top;
    background-size: cover;
}

.leg-topcta {
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

    .leg-topcta h1 {
        color: #fff;
        padding-bottom: 15px;
    }

    .leg-topcta p {
        font-size: 1.1rem;
        line-height: 1.5em;
        color: #fff;
        padding-bottom: 10px;
    }

.legg-ctabutton {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 10px 0;
    text-transform: uppercase;
    border: none;
    border-radius: 35px;
    background-color: #F2A81D;
}
/*------------- Top CTA-----------------*/
/*------------- Location form -------------*/
.leg-radioform {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 40px;
    text-align: left;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5em;
    font-weight: 400;
}

* {
    font-family: 'Roboto', sans-serif;
}

@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 10px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 30px;
    width: 30px;
    transition: all 0.15s ease-out 0s;
    background: transparent;
    border: solid 4px #fff;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 1rem;
    outline: none;
    position: relative;
    z-index: 1000;
}

    .option-input:hover {
        background: #F2A81D;
    }

    .option-input:checked {
        background: #c65c14;
    }

        .option-input:checked::before {
            height: 30px;
            width: 30px;
            position: absolute;
            top: -4px;
            left: -4px;
            content: '✔';
            display: inline-block;
            font-size: 20px;
            text-align: center;
            line-height: 30px;
        }

        .option-input:checked::after {
            -webkit-animation: click-wave 0.65s;
            -moz-animation: click-wave 0.65s;
            animation: click-wave 0.65s;
            background: #40e0d0;
            content: '';
            display: block;
            position: relative;
            z-index: 100;
        }

    .option-input.radio {
        border-radius: 50%;
    }

        .option-input.radio::after {
            border-radius: 50%;
        }

label {
    display: block;
    line-height: 40px;
}
/*----------Location form------------------*/
/*------------- Top CTA form -------------*/
/*------------- Logo row -----------------*/
.leg-logorowouter {
    width: 100%;
    padding: 35px 0 5px;
}

.leg-logorow {
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.leg-logoitem {
    width: 40%;
    margin-bottom: 30px;
}
/*------------- Logo row -----------------*/
/*------------- Challenge -----------------*/
.leg-challengeouter {
    position: relative;
    width: 100%;
    padding: 50px 0 0;
    z-index: 1;
    background-color: #45A5DC;
}

    .leg-challengeouter::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #45A5DC;
        transform-origin: bottom left;
        transform: skewY(5deg);
        z-index: -10;
    }

.leg-challengecontent {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

    .leg-challengecontent::after {
        content: "";
        clear: both;
        display: table;
    }

.leg-challengeleft {
    width: 100%;
}

.leg-challengeright {
    width: 100%;
}

.leg-challengecontent h2 {
    color: #fff;
    padding-bottom: 40px;
}

.leg-challengecontent p {
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.leg-italics {
    font-style: italic;
}
/*------------- Challenge -----------------*/
/*------------- Changes -----------------*/
.leg-changesouter {
    width: 100%;
    padding: 15% 0 12%;
    z-index: -20;
    background-image: url("../images/group-computer.jpg");
    background-position: 68% center;
    background-size: cover;
}

.leg-changescontent {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

    .leg-changescontent h2 {
        color: #fff;
        text-align: center;
    }

    .leg-changescontent p {
        width: 90%;
        margin: 0 auto;
        color: #fff;
        text-align: center;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
/*------------- Changes -----------------*/
/*------------- Video -----------------*/
.leg-videoouter {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 75px;
    background-color: #12324B;
    text-align: center;
    position: relative;
}

    .leg-videoouter::after {
        content: "";
        clear: both;
        width: 100%;
        height: 8.5vw;
        position: absolute;
        bottom: -8.5vw;
        left: 0;
        z-index: -2;
        background-color: #12324B;
        background-image: url("../images/bottomarroww.svg");
        background-size: 101% auto;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .leg-videoouter h2 {
        color: #fff;
        text-align: center;
    }

.leg-videoarea {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 50px;
    
}

.leg-videowrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%; /* 16x9 */
    height: 0;
}

    .leg-videowrapper p {
        color: #fff;
    }

.leg-videoarea iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.leg-videobutton {
    width: 95%;
}
/*------------- Video -----------------*/
/*------------- Features -----------------*/

.leg-featureouter {
    width: 100%;
    padding: 0 0 60px;
}

.leg-featurearea {
    width: 80%;
    max-width: 1200px;
    margin: 25% auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.leg-feature {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

    .leg-feature img {
        width: 35%;
        margin-bottom: 30px;
    }
/*------------- Features -----------------*/
/*------------- Testimonials -----------------*/
.leg-testimonialouter {
    width: 100%;
    padding: 75px 0;
    background-color: #E3F5FF;
}

.leg-testimonialarea {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

    .leg-testimonialarea h2 {
        font-family: 'Allan', cursive;
        color: #F2A81D;
        font-weight: 700;
        padding-bottom: 30px;
        text-align: center;
    }
/*------------- Testimonials -----------------*/
/*------------- Pricing options -----------------*/
.leg-pricingoptionsarea {
    width: 90%;
    max-width: 1200px;
    margin: 75px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.leg-pricingoption {
    position: relative;
    width: 90%;
    padding: 75px 0 30px;
    margin: 0 auto;
    background-color: #e3f2fa;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
}

    .leg-pricingoption:nth-child(2) {
        background-color: #bee0f3;
        position: relative;
    }

.leg-popular {
    width: 125px;
    height: 125px;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 20px;
    background-image: url("../images/blue-triangle.png");
    background-size: cover;
}

.leg-populartext {
    position: absolute;
    width: 170px;
    top: 40px;
    left: -35px;
    text-align: center;
    font-size: 16px;
    font-family: 'Allan', cursive;
    font-weight: 700;
    font-size: 1.75rem;
    color: #fff;
    transform: rotate(-45deg);
    display: block;
}

.leg-pricingoption h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.75rem;
    color: #00467F;
    padding-bottom: 30px;
}

.leg-pricearea {
    width: 90%;
    margin: 0 auto;
}

.leg-pricearealower {
    width: 90%;
    margin: 0 auto;
}

.leg-dollar {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #F2871D;
    position: relative;
    top: -27px;
}

.leg-amount {
    font-family: 'Open Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #F2871D;
}

.leg-who {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    color: #45A5DC;
    position: relative;
    top: -15px;
}

.leg-users {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.8rem;
    color: #00467F;
}

.leg-buynow {
    font-size: 1.1rem;
    margin-top: auto;
    width: 90%;
    margin-bottom: 30px;
    max-width: 350px;
}

.leg-buynow2 {
    font-size: 1.1rem;
    margin-top: auto;
    margin-bottom: 30px;
    width: 90%;
    max-width: 350px;
}

.leg-pricingeasy {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .leg-pricingeasy h2 {
        /* font-family: 'Allan', cursive; */
        /* font-weight: 700; */
        padding-bottom: 50px;
    }

.leg-compareplansarea {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.leg-planoption {
    width: 90%;
    margin-bottom: 60px;
    border-top: solid 6px #00467F;
    padding-top: 20px;
    position: relative;
}

.leg-planoptionarrowup {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -43px;
    left: 50%;
    transform: translate(-50%, 0);
    border-left: 43px solid transparent;
    border-right: 43px solid transparent;
    border-bottom: 43px solid #00467F;
}

.leg-planoption p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: center;
    color: #000;
}

.leg-planexplainouter {
    width: 100%;
    padding: 50px 0px 0px 0;
    background-color: #F2F5F8;
}

.leg-explain {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

.leg-detailsarea {
    width: 80%;
    max-width: 800px;
    margin: 0px auto 0px;
}

    .leg-detailsarea::after {
        content: "";
        clear: both;
        display: table;
    }

.leg-detail {
    width: 100%;
    padding-bottom: 30px;
}

    .leg-detail p {
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        line-height: 1.5rem;
        text-align: left;
        color: #000;
    }

.leg-partners {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0 40px;
}

    .leg-partners h2 {
        /* font-family: 'Allan', cursive; */
        /* font-weight: 700; */
        padding-bottom: 30px;
        color: #F2871D;
    }

.leg-partnerbutton {
    color: #FFF;
    border: solid 2px #FFF;
    background-color: #00467F;
}
/*------------- Pricing options -----------------*/
/*------------- FAQ -----------------*/
.leg-faqouter {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 75px;
    background-color: #F2F5F8;
}

.leg-faqarea {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

    .leg-faqarea h2 {
        color: #00467F;
    }
    /*------------- FAQ accordion -----------------*/
    .leg-faqarea .container {
        padding-left: 0;
        padding-right: 0;
    }

    .leg-faqarea .card {
        border: none;
        border-radius: 0;
        background-color: transparent;
    }

    .leg-faqarea .card-header {
        padding: 0.75rem 0;
        border-bottom: none;
        background-color: transparent;
    }

    .leg-faqarea .card-body {
        padding: 0 0 30px 60px;
    }

.card-header .btn-link {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.material-icons {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    line-height: 1.5rem;
    color: #F2871D;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    float: left;
    width: 20px;
    margin-right: 20px;
}

.leg-faqitemheader {
    display: inline-block;
    width: calc(100% - 40px);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #00467F;
}
/*------------- FAQ accordion -----------------*/
/*------------- FAQ -----------------*/
/*------------- Affirm -----------------*/
.leg-affirmouter {
    width: 100%;
    padding: 14% 0 14%;
    background-image: url("../images/decision.jpg");
    background-size: cover;
    background-position: 65% center;
}

.leg-affirmarea {
    width: 90%;
    max-width: 574px;
    margin: 0 auto;
    text-align: center;
}

    .leg-affirmarea p {
        font-size: 1.125rem;
        line-height: 1.75rem;
        color: #fff;
    }

    .leg-affirmarea .leg-ctabutton {
        margin-top: 40px;
    }
/*------------- Affirm -----------------*/
/*------------- Contact form -----------------*/
.leg-contactformouter {
    width: 100%;
    padding: 50px 0 75px;
    background-color: #F2F5F8;
}

.leg-contactformarea {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

    .leg-contactformarea .btn {
        width: 100%;
        max-width: 300px;
        display: block;
        font-weight: 700;
        color: #fff;
        background-color: #00467F;
        /* border: 2px solid #000; */
        padding: 10px 0;
        font-size: 1rem;
        text-transform: uppercase;
        line-height: 1.5;
        border-radius: 30px;
        font-family: 'Open Sans', sans-serif;
    }
    .leg-contactformarea h2 {
        font-size: 1.5rem;
    }

    .leg-contactformarea .container {
        padding: 0;
    }

.leg-required {
    color: #e62b2b;
    font-weight: 700;
}

.leg-submitspacer {
    padding-top: 20px;
}

.leg-contactformarea .btn {
    width: 100%;
    max-width: 300px;
    display: block;
    font-weight: 700;
    color: #fff;
    background-color: #00467F;
    /* border: 2px solid #000; */
    padding: 10px 0;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.5;
    border-radius: 30px;
    font-family: 'Open Sans', sans-serif;
}

/*------------- Contact form -----------------*/
/*-------------Partners----------------------*/
.leg-partnerrowouter {
    width: 100%;
    padding: 50px 0;
}

    .leg-partnerrowouter h1 {
        text-align: center;
        padding-bottom: 30px;
    }

.leg-partnerrow {
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.leg-partneritem {
    width: 100%;
    margin: 0 auto 50px;
}

    .leg-partneritem img {
        margin-bottom: 30px;
        width: 100%;
        max-height: 150px;
    }
/*-------------Partners----------------------*/
/*-------------Registration----------------------*/
.leg-registrationouter {
    width: 100%;
    padding: 35% 0 12%;
    background-image: url("../images/decision.jpg");
    background-size: cover;
    background-position: 65% center;
}
/*-------------Registration----------------------*/
/*-------------Registration page----------------------*/

.leg-registertopouter {
    width: 100%;
    padding: 50px 0;
    background-color: #12324B;
}

.leg-registertop {
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

    .leg-registertop h1 {
        color: #fff;
    }

    .leg-registertop h2 {
        color: #F2A81D;
    }

.leg-step1 {
    width: 95%;
    max-width: 762px;
    margin: 0 auto;
    padding: 75px 0;
}

    .leg-step1::after {
        content: "";
        clear: both;
        display: table;
    }

    .leg-step1 h2,
    .leg-step2 h2 {
        text-align: center;
    }

.leg-orange {
    color: #F2871D;
}

.leg-step1 p,
.leg-step2 p {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    text-align: center;
}

.leg-step1 img,
.leg-step2 img {
    width: 100%;
    padding: 10px 0;
}

.leg-spacerarrow {
    width: 120px;
    margin: 0 auto;
}

.leg-step2 {
    width: 95%;
    max-width: 762px;
    margin: 0 auto;
    padding: 75px 0;
}

    .leg-step2::after {
        content: "";
        clear: both;
        display: table;
    }

.leg-compareplans {
    width: 95%;
    margin: 0 auto;
}

    .leg-compareplans h3 {
        font-family: 'Open Sans', sans-serif;
        color: #F2A81D;
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 2.6rem;
        text-align: center;
    }

.leg-planoptionsselectarea {
    width: 90%;
    max-width: 1200px;
    margin: 75px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.leg-planoptionsselect {
    position: relative;
    width: 90%;
    padding: 50px 0 20px;
    margin: 0 auto;
    background-color: #e3f2fa;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
}

.leg-planoptionsselectarea h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #00467F;
    padding-bottom: 20px;
}

.leg-planoptionsselectarea p.leg-planamount {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.75rem;
    line-height: 2.625rem;
    font-weight: 700;
    color: #F2871D;
}

.leg-planoptionsselectarea p.leg-planmonth {
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.leg-planoptionsselectarea p.leg-explain {
    display: block;
    width: 95%;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 30px;
}

.leg-bestvaluetext {
    display: none;
}

.leg-best {
    background-color: #bee0f3;
}

    .leg-best .leg-bestvalue {
        width: 125px;
        height: 125px;
        position: absolute;
        top: 0;
        left: 0;
        border-top-left-radius: 20px;
        background-image: url("../images/blue-triangle.png");
        background-size: cover;
    }

    .leg-best .leg-bestvaluetext {
        position: absolute;
        width: 170px;
        top: 40px;
        left: -35px;
        ;
        text-align: center;
        font-size: 16px;
        font-family: 'Allan', cursive;
        font-weight: 700;
        font-size: 1.75rem;
        color: #fff;
        transform: rotate(-45deg);
        display: block;
    }


.leg-notoption {
    background-color: #eaeaeb;
}

    .leg-notoption h3,
    .leg-notoption p.leg-planamount,
    .leg-notoption p.leg-planmonth,
    .leg-notoption p.leg-explain {
        color: #a3a3a3;
    }

    .leg-notoption .leg-btn-primary {
        background-color: #a3a3a3;
    }


.leg-summary {
    width: 100%;
    padding: 0 0 75px;
    background-color: #F2871D;
}

    .leg-summary h2 {
        padding: 50px 0 20px;
        color: #000;
        text-align: center;
    }

    .leg-summary p {
        display: block;
        width: 95%;
        max-width: 600px;
        margin: 0 auto 0;
        color: #000;
        font-size: 1.5rem;
        line-height: 2.2rem;
        text-align: center;
        padding-bottom: 30px;
    }

.leg-summaryemphasis {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.4rem;
}

.leg-step3 {
    width: 95%;
    max-width: 730px;
    margin: 0 auto;
    padding: 75px 0 130px;
}

    .leg-step3::after {
        content: "";
        clear: both;
        display: table;
    }

    .leg-step3 h2 {
        text-align: center;
    }

    .leg-step3 h3 {
        font-family: 'Open Sans', sans-serif;
        color: #000;
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1.9rem;
        text-align: center;
        padding: 30px 0;
    }

        .leg-step3 h3.leg-thesecond {
            padding: 75px 0 30px;
        }

.leg-step4 {
    width: 95%;
    max-width: 762px;
    margin: 0 auto;
    padding: 75px 0 130px;
}

    .leg-step4::after {
        content: "";
        clear: both;
        display: table;
    }

    .leg-step4 h2 {
        text-align: center;
        padding-bottom: 40px;
    }

    .leg-step4 .leg-ctabutton {
        display: block;
        margin: 0 auto;
    }
/*-------------Registration page----------------------*/
/*-------------Payment page----------------------*/
.leg-pay2 {
    padding: 0 0 100px;
}

.leg-paysummary p {
    font-size: 1rem;
    color: #fff;
}

    .leg-paysummary p.leg-payemphasis {
        padding-top: 75px;
        font-weight: 700;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .leg-paysummary p.leg-payemphasis2 {
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1.6rem;
        padding-bottom: 75px;
    }

.leg-pay4 {
    text-align: center;
}

    .leg-pay4 p {
        display: block;
        font-weight: 700;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 50px;
    }
/*-------------Payment page----------------------*/
/*------------- Footer-----------------*/
.leg-footer-outer {
    width: 100%;
    padding: 35px 0 75px;
    background-color: #12324B;
}

.leg-footer-content {
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

    .leg-footer-content img {
        display: block;
        width: 210px;
        margin: 0 auto;
    }

    .leg-footer-content a:link,
    .leg-footer-content a:visited {
        display: inline-block;
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        color: #fff;
        line-height: 1.75rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .leg-footer-content p {
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        color: #fff;
        line-height: 1.75rem;
    }
/*------------- Footer-----------------*/

/**
 *  - >= 568px
 */

@media screen and (min-width: 35.5em) {
    /*------------- Logo row -----------------*/
    .leg-logoitem {
        width: 26%;
    }
    /*------------- Logo row -----------------*/
    /*------------- Features -----------------*/
    .leg-feature img {
        width: 150px;
    }
    /*------------- Features -----------------*/
    /*------------- Affirm -----------------*/
    .leg-affirmouter {
        background-position: 45% center;
    }
    /*------------- Affirm -----------------*/
    /*-------------Partners----------------------*/
    .leg-partneritem {
        /* width: 37%;
		margin: 0 auto 50px; */
    }
    /*-------------Partners----------------------*/
}

/**
 *  - >= 710px
 */

@media screen and (min-width: 44.375em) {
    /*------------- Logo row -----------------*/
    .leg-logoitem {
        width: 16%;
    }
    /*------------- Logo row -----------------*/
    /*------------- Challenge -----------------*/
    .leg-challengecontent h2 {
        text-align: center;
    }

    .leg-challengeleft {
        width: 46%;
        float: left;
        text-align: left;
    }

    .leg-challengeright {
        width: 46%;
        float: right;
    }

    .leg-challengecontent p {
        color: #fff;
    }

    .leg-italics {
        font-style: italic;
    }
    /*------------- Challenge -----------------*/
    /*------------- Features -----------------*/
    .leg-featureouter {
        padding: 0 0 60px;
    }

    .leg-featurearea {
        width: 90%;
        margin: 18% auto 0;
    }

    .leg-feature {
        width: 30%;
    }

        .leg-feature img {
            width: 35%;
        }
    /*------------- Features -----------------*/
    /*------------- Pricing options -----------------*/
    .leg-detail {
        width: 45%;
        float: left;
    }

        .leg-detail:nth-child(2) {
            width: 45%;
            float: right;
        }
    /*------------- Pricing options -----------------*/
}
/**
 *  - >= 768px
 */

@media screen and (min-width: 48em) {
    /*------------- Pricing options -----------------*/
    .leg-pricearealower1 {
        padding-top: 115px;
    }

    .leg-pricearealower2 {
        padding-top: 28px;
    }

    .leg-pricingoptionsarea {
        width: 98%;
    }

    .leg-pricingoption {
        width: 45%;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 10px;
    }

        .leg-pricingoption:nth-child(2) {
            width: 45%;
            padding-top: 105px;
            margin-top: 0;
            margin-bottom: 0;
        }

    .leg-compareplansarea {
        width: 98%;
    }

    .leg-planoption {
        width: 30%;
    }
    /*------------- Pricing options -----------------*/
    /*------------- Registration page ---------------*/
    .leg-planoptionsselectarea {
        width: 98%;
    }

    .leg-planoptionsselect {
        width: 45%;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .leg-best {
        width: 45%;
        padding-top: 80px;
        padding-bottom: 50px;
        margin-top: 0;
        margin-bottom: 0;
    }
    /*------------- Registration page ---------------*/
}

/**
 *  - >= 910px
 */

@media screen and (min-width: 56.875em) {
    .leg-pricearealower1 {
        padding-top: 115px;
    }

    .leg-pricearealower2 {
        padding-top: 0;
    }
    /*-------------Parners----------------------*/
    .leg-partneritem {
        /* width: 30%;
		margin: 0 auto 50px; */
    }
    /*-------------Parners----------------------*/
}
/**
 *  - >= 1080px
 */

@media screen and (min-width: 67.5em) {
    .leg-pricearealower1 {
        padding-top: 88px;
    }

    .leg-pricearealower2 {
        padding-top: 28px;
    }
}
/**
 *  - >= 1200px
 */


@media screen and (min-width: 75em) {
    .leg-pricearealower1 {
        padding-top: 87px;
    }

    .leg-pricearealower2 {
        padding-top: 0px;
    }
    /*------------- Features -----------------*/
    .leg-featurearea {
        margin: 15% auto 0;
    }
}
