/* Minification failed. Returning unminified contents.
(419,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(703,17): run-time error CSS1039: Token not allowed after unary operator: '-red'
(945,21): run-time error CSS1039: Token not allowed after unary operator: '-green'
(1308,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(1314,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
body, html {
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-family: 'Open Sans','Nunito','Monda';
    color: #333;
    min-height: 100%;
    background-position: center;
    background-size: cover;
}

.loginBox {
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: none;
}

.not-visible {
    visibility: hidden;
}

.promoHeroText {
    margin-top: 140px;
    font-size: 4em;
    line-height: 1em;
    text-align: center;
    line-height: 1em;
    color: #fff;
    font-weight: bold;
    opacity: 1;
}

.promoHeroText1 {
    margin-top: 40px;
    font-size: 3em;
    line-height: 1em;
    text-align: left;
    line-height: 1em;
    color: #fff;
    font-weight: bold;
    opacity: 1;
}

.benefitsImage {
    margin-top: 40px;
}

.priceCrossedOut {
    text-decoration: line-through;
    text-align: center;
    font-size: 1em;
}

.borderedImage {
    border: solid 3px #ddd;
    margin-bottom: 20px;
}

.priceNotCrossedOut {
    text-align: center;
    font-size: 1em;
}

.priceCurrent {
    font-size: 2em;
    text-align: center;
    font-weight: bold;
    text-shadow: 0.5px 2px #777;
}

.priceExplanation {
    font-size: 0.7em;
    font-weight: bold;
    color: #555;
    text-align: center;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

#logo {
    margin-top: 0px;
    height: 50px;
    width: auto;
}

@keyframes heroBackgroundReveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.75;
    }
}

@keyframes heroPromoTextReveal {
    from {
        top: 20px;
        opacity: 0;
    }

    to {
        opacity: 1;
        top: 0px;
    }
}


@keyframes slideDown {
    from {
        height: 0px;
        opacity: 0.5;
    }

    to {
        height: 100%;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        height: 100%;
        opacity: 1;
    }

    to {
        height: 0px;
        opacity: 0.5;
    }
}


@keyframes slideInLeft {
    from {
        width: 30px;
        opacity: 0.7;
    }

    to {
        width: 130px;
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        width: 130px;
        opacity: 1;
    }

    to {
        width: 30px;
        opacity: 0.7;
    }
}

.fixedSideNav {
    position: fixed;
    top: 30%;
    border: solid 1px #333;
    border-right: none;
    background-color: #202020;
    opacity: 0.8;
    width: 30px;
    right: 0;
    z-index: 10000;
    padding: 10px 0 10px 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}




    .fixedSideNav > ul {
        margin-left: -20px;
    }

        .fixedSideNav > ul > li {
            list-style: none;
            margin-left: -15px;
            padding: 2px;
            font-size: 0.8em;
            color: #fff;
        }


            .fixedSideNav > ul > li:hover {
                background-color: #333;
                border-radius: 4px;
            }

            .fixedSideNav > ul > li:hover {
                text-decoration: none;
                color: #000;
            }

            .fixedSideNav > ul > li > a:hover {
                text-decoration: none;
            }

            .fixedSideNav > ul > li > a {
                color: #fff;
                font-weight: bold;
            }

            .fixedSideNav > ul > li > img {
                width: 20px;
                height: 20px;
                margin: 5px 0 5px 0;
                display: inline;
            }



.fixedSideNavOpen {
    animation-delay: 0s;
    -webkit-animation: slideInLeft ease-in; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: slideInLeft ease-in;
    animation: slideInLeft ease-in;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    animation-duration: 0.2s;
}


.fixedSideNavClosed {
    animation-delay: 0s;
    -webkit-animation: slideOutRight ease-in; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: slideOutRight ease-in;
    animation: slideOutRight ease-in;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    animation-duration: 0.2s;
}

.moreInfo {
    position: absolute;
    top: 20px;
    border: solid 1px #333;
    border-top: none;
    width: 150px;
    background-color: #202020;
    opacity: 0.8;
    z-index: 10000;
    padding: 10px 0 10px 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.moreInfoOpen {
    animation-delay: 0s;
    -webkit-animation: slideDown ease-in; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: slideDown ease-in;
    animation: slideDown ease-in;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    animation-duration: 0.2s;
}


.moreInfoClosed {
    animation-delay: 0s;
    -webkit-animation: slideUp ease-in; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: slideUp ease-in;
    animation: slideUp ease-in;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    animation-duration: 0.2s;
}

.featureExpo {
    max-width: 400px;
    width: 400px;
}

ul.faqs > li {
    padding: 20px 0 20px 0;
    list-style: none;
    margin-left: -20px;
}

.faq_q {
    display: block;
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    background-color: inherit;
}

.faq_a {
    display: block;
    font-size: 1em;
    background-color: inherit;
}

.footerLink {
    text-decoration: none;
    font-weight: normal;
    color: #fff;
}

    .footerLink :hover {
        text-decoration: none;
    }

.left {
    float: left;
}

.right {
    float: right;
}

.plan-heading {
    padding: 10px 0px 0px 0px;
    display: block;
    font-weight: bold;
    font-size: 1.2em;
    border-bottom: solid 1px #ddd;
    margin-bottom: 5px;
    text-align: center;
}

.plan-heading-1 {
    padding: 10px 0px 0px 0px;
    display: block;
    font-weight: bold;
    font-size: 2em;
    border-bottom: solid 1px #ddd;
    margin-bottom: 5px;
    text-align: center;
}

.shadowed {
    box-shadow: 0 3px 5px -1px hsl(0, 0%, 40%), inset 4px 1px 6px -8px black;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    top: 40px;
}

    .carousel-inner > .item {
        padding: 10px;
    }

.carousel-detail {
    position: absolute;
    top: 60px;
    text-align: center;
    display: block;
    color: #fff;
    border: solid 1px #333;
    background-color: #000;
    padding: 10px;
    opacity: 0.8;
    border-radius: 4px;
}

.carousel-control.left {
    background: transparent;
}


.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #000;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    opacity: .5;
    background: transparent;
}

    .carousel-control:hover, .carousel-control:focus {
        color: #fff;
        text-decoration: none;
        opacity: .9;
        filter: alpha(opacity=90);
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background: transparent;
    }

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #3f51b5;
    background-color: var(--primary);
}

.carousel-indicators li {
    top: 100px;
    border: 1px solid #a080ad;
}


ul.featureList > li {
    margin-bottom: 10px;
    padding: 20px 10px 10px 10px;
    border-radius: 4px;
    background-color: #fcfcfc;
    margin-left: -35px;
}

    ul.featureList > li:hover {
        cursor: pointer;
        color: #fff;
    }

    ul.featureList > li.selected {
        border-bottom: solid 2px #092107;
        background-color: #edcc5a;
        color: #fff;
    }

    ul.featureList > li.unSelected {
        border: solid 1px #eee;
    }

input,
select,
textarea {
    border-width: 1px;
    border-color: lightgrey;
    margin-bottom: 2px;
    padding: 10px;
}

.ctaBanner {
    font-size: 2em;
    font-weight: bold;
    color: #fcfcfc;
}

.bright {
    color: #333;
}



.banner {
    background-color: #000;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    font-size: 2em;
    color: #fcfcfc;
    font-weight: bold;
    opacity: 0.85;
}

.infoCard {
}

ul.footerList {
    padding-left: 0px;
    font-size: 0.8em;
}

    ul.footerList > li {
        padding-left: 0px;
        list-style-type: none;
    }

.testimonial_lucas_Lofts {
    background-image: url('Images/Assets/testimonials_lucas_lofts_ltd.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 600px;
    min-height: 300px;
    height: 500px;
    color: #fff;
}

.testimonial_wedding_planner {
    background-image: url('Images/Assets/weddingdress.jpg');
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    max-height: 600px;
    min-height: 300px;
    height: 300px;
    color: #fff;
    background-color: #fff;
}

.testimonial_comment {
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.3em;
}

.testimonial_footnote {
    font-size: 1em;
    font-style: italic;
}

#footer {
    color: #ccc;
    background-image: url('Images/Assets/SVGs/BANNER 2_V 1.1.svg');
    background-color: #151626;
    text-align: left;
    padding: 20px;
    line-height: 20px;
    opacity: 0.9;
    height: 400px;
    font-size: 0.6em;
    margin-right: -35px;
}

.full-width {
    margin-right: 0px;
    margin-left: 0px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0px);
    }

    10% {
        transform: translateY(-60px);
    }

    40% {
        transform: translateY(-35px);
    }

    60% {
        transform: translateY(-20px);
    }

    90% {
        transform: translateY(-10px);
    }
}

@keyframes swing {

    0% {
        -webkit-transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(20deg);
    }

    75% {
        -webkit-transform: rotate(-20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        top: 0px;
    }

    to {
        opacity: 1;
        top: 350px;
    }
}

@keyframes cloud1 {
    from {
        left: 100%;
        opacity: 0;
    }

    to {
        left: -100px;
        opacity: 1;
    }
}


@keyframes cloud {
    0% {
        left: 100%;
        opacity: 0;
    }



    50% {
        opacity: 1;
    }



    100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes cloud3 {
    from {
        left: 100%;
        opacity: 0;
    }

    to {
        left: -100px;
        opacity: 1;
    }
}

.hero {
    padding-top: 60px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}



.side-image {
    margin-top: 0px;
    left: -50px;
    height: 100px;
    max-height: 100px;
    max-width: 100px;
    z-index: 9999;
    margin: 0 auto;
}

.side-image-2 {
    margin-top: -20px;
    left: -50px;
    height: 130px;
    max-height: 130px;
    max-width: 130px;
    z-index: 9999;
    padding: 20px;
    margin: 0 auto;
}

.side-image-3 {
    height: 50px;
    width: auto;
    display: inline;
    margin-right: 5px;
    margin-top: -5px;
}

.bullseye {
    top: 0px;
    max-height: 300px;
    max-width: 300px;
    z-index: 9999;
}

.separated {
    padding-bottom: 40px;
}

.cloud1Image {
    margin-top: 10%;
    position: absolute;
    height: 100px;
    width: 100px;
    background-size: 100px 100px;
    z-index: 1;
    color: #EA2027;
    color: var(--red);
}

.cloud2Image {
    margin-top: 30%;
    position: absolute;
    z-index: 2;
    height: 100px;
    width: 100px;
    background-size: 100px 100px;
}

.magnified {
    border-radius: 4px;
    height: 300px;
    width: auto;
    box-shadow: 0px 0px 30px 10px #aaa;
}

.modal-content iframe {
    margin: 0 auto;
    display: block;
}

.cloud3Image {
    margin-top: 30px;
    position: absolute;
    z-index: 4;
    height: 100px;
    width: 100px;
    background-size: 100px 100px;
}

.heroTextR {
    -webkit-animation: heroBackgroundReveal ease-in; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: heroBackgroundReveal ease-in;
    animation: heroBackgroundReveal ease-in;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 15s;
    -moz-animation-duration: 1.5s;
    animation-duration: 1.5s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
}

.heroTextRDetail {
    opacity: 0;
    -webkit-animation: heroPromoTextReveal ease-in; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: heroPromoTextReveal ease-in;
    animation: heroPromoTextReveal ease-in;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
}

.cloud1Float {
    animation-delay: 1s;
    opacity: 0.5;
    -webkit-animation: cloud ease-in infinite; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: cloud ease-in infinite;
    animation: cloud ease-in infinite;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 5s;
    -moz-animation-duration: 5s;
    animation-duration: 5s;
}


.cloud2Float {
    animation-delay: 1s;
    opacity: 0.5;
    -webkit-animation: cloud ease-in infinite; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: cloud ease-in infinite;
    animation: cloud ease-in infinite;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 7s;
    -moz-animation-duration: 7s;
    animation-duration: 7s;
}

.cloud3Float {
    animation-delay: 1s;
    opacity: 0.5;
    -webkit-animation: cloud ease-in infinite; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: cloud ease-in infinite;
    animation: cloud ease-in infinite;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 9s;
    -moz-animation-duration: 9s;
    animation-duration: 9s;
}

.swing {
    top: 190px;
    opacity: 1; /* make things invisible upon start */
    -webkit-animation-name: swing;
    -webkit-animation-duration: 2.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    -webkit-transform-origin: 50% 0%;
    -webkit-animation-timing-function: linear; /* or make your custom easing */
}

.bounce {
    top: 220px;
    animation-delay: 1s;
    opacity: 1; /* make things invisible upon start */
    -webkit-animation: bounce ease-in infinite; /* call our keyframe named bounce, use animattion ease-in and repeat it only 1 time */
    -moz-animation: bounce ease-in infinite;
    animation: bounce ease-in 1;
    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 1.8s;
}


.box {
    width: 75px;
    height: 100px;
    position: relative;
    border: 1px solid #333;
    background-color: #333;
}

.macBook {
    position: absolute;
    height: 50px;
    width: auto;
    margin: 0 auto;
    left: 50%;
}

.bubble {
    position: absolute;
    height: 100px;
    width: 100%;
    height: auto;
    display: table;
    margin: 0 auto;
}

    .bubble p {
        opacity: 0.9;
        float: right;
        background-color: #406355;
        text-align: right;
        font-size: 1.5em;
        font-weight: bold;
        color: #fff;
        margin: 140px 40px 40px 40px;
        min-width: 400px;
        max-width: 400px;
        border-radius: 4px;
        width: 100%;
        padding: 10px 10px 20px 20px;
        line-height: 45px;
    }

        .bubble p ul {
            text-align: right;
            border-top: solid 1px #fff;
            font-size: 0.3em;
            font-weight: bold;
            color: #fff;
            padding: 30px;
        }

.boxed {
    background-color: #fff;
    border: solid 1px #e0e0f0;
    padding: 30px;
    box-shadow: 0 3px 5px -1px hsl(0, 0%, 40%), inset 4px 1px 6px -8px black;
}

.grad {
    background: #bfdeef; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(left, #bfdeef, #fff); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #bfdeef, #fff); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #bfdeef, #fff); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #bfdeef, #fff ); /* Standard syntax */
}

.headline {
    background-color: inherit;
    text-align: left;
    padding: 20px;
}

.navbar-inverse, .navbar-toggle {
    border-color: #333333;
    background-color: #333;
    color: #aaa;
    font-size: 0.6em;
    margin: 0;
}

.navbar-collapse {
    background-color: #fcfcfc;
}


.navbar-inverse {
    border: none;
}

.navbar-nav > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 5px;
    color: #262752;
    font-weight: bolder;
    font-size: 14px;
}

.navbar-inverse .navbar-nav > li > a {
    color: #262752;
}

    .navbar-inverse .navbar-nav > li > a.highlight {
        color: purple;
    }

    .navbar-inverse .navbar-nav > li > a:hover {
        color: #44bd32;
        color: var(--green);
        font-size: 1.3em;
    }

.navbar-default > .sidebar {
    background-color: white;
}

.navbar-default {
    background-image: none;
    color: #fff;
    border: none;
}

.smallPrint {
    font-size: 10px;
    color: inherit;
    margin-top: -10px;
    margin-left: -25px;
    line-height: 1em;
}

.navbar-brand {
    margin-top: -5px;
    color: cadetblue;
    text-shadow: initial;
    margin-bottom: -10px;
    padding-top: 0px;
    margin-left: -20px;
    padding-left: 20px;
    height: 50px;
    width: auto;
}

.navbar {
    padding-top: 10px;
    padding-bottom: 0px;
    background-color: #333;
    z-index: 1000;
    border-radius: 0px;
    opacity: 0.95;
    padding-right: 20px;
    padding-left: 20px;
    border-bottom: solid 1px #cccccc;
    height: 60px;
}

.navbar-brand > h1 {
    color: #fff;
}

.col-centered {
    margin: 0 auto;
}

.col-centered-no-float {
    float: none;
    margin: 0 auto;
}

.icon-bar {
    color: #fcfcfc;
}

.infoBox {
    border: solid 1px #aaa;
    background-color: #0f0f0f;
}

.movedback {
    background-image: url('https://c1.staticflickr.com/7/6210/6036781676_b94c801b48_b.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

a > .navbar-link:hover {
    color: #000;
    font-weight: bold;
    border: solid;
    border-width: 2px;
    border-color: lightgrey;
    text-decoration: none;
}

a .navbar-link:focus {
    text-decoration: none;
    background-color: cornflowerblue;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
}

.navbar-default .navbar-brand {
    color: #333;
}

.call-to-action-box {
    display: block;
    margin: 0 auto;
    margin-left: -10px;
    padding: 10px 10px 10px 10px;
}

.specialText {
    line-height: 20px;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 15px;
    padding: 10px;
    border: solid #aaa 1px;
    color: purple;
    border-radius: 4px;
}

input[type="submit"] {
    line-height: 25px;
    margin-left: 20px;
}

.call-to-action {
    background-color: #5cb85c;
    border-color: #4cae4c;
    padding: 20px;
    font-size: 1em;
    color: #fff;
    font-size: 16px;
    margin-top: -1px;
}

.lozenge1 {
    background-color: #999;
    color: white;
    border-radius: 16px;
    padding: 10px;
    margin: 4px;
    font-size: 0.8em;
    text-decoration: none;
    border-bottom: solid 2px #555;
}

a.lozenge1 {
    text-decoration: none;
}


    a.lozenge1:hover {
        text-decoration: none;
        background-color: #fff;
        border: solid 1px #333;
        border-bottom: solid 2px #111;
        color: #333;
    }


.call-to-action-faded {
    background-color: #fff;
    color: #333;
    border: solid 1px #ddd;
}

.call-to-action-bright {
    background-color: #edcc5a;
    color: #333;
    border: solid 1px #ddd;
}


.call-to-action:hover {
    background-color: #edcc5a;
}

a.call-to-action > img {
    height: 30px;
    width: auto;
}

a.show-video {
    background-color: #6ba1e4;
    padding-top: 5px;
    font-size: 1em;
    color: #fff;
    border: none 1px #fcfcfc;
}




.heroCustomerQuote {
    position: absolute;
    height: auto;
    width: 50%;
    display: block;
    margin: 0 auto;
}

.banner {
    color: #fff;
    background-color: transparent;
    position: absolute; /*it can be fixed too*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    overflow: auto;
    text-align: center;
    padding-top: 20px;
}

.largeText {
    font-size: 3em;
}

.mediumText {
    font-size: 2em;
}

.heading2 {
    text-align: left;
    color: inherit;
    font-weight: bold;
    font-size: 1.2em;
}

.heading3 {
    font-weight: bold;
    font-size: 1.2em;
}

.promoTextDetail {
    font-weight: bold;
    font-size: 1.2em;
    opacity: 0;
    text-align: center;
}

.heading {
    font-size: 25px;
    text-align: left;
    color: inherit;
    font-weight: bold;
    line-height: 1.2em;
}


.caption2 {
    top: 40%;
}

.caption {
    position: absolute;
    left: 0;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
    text-align: left;
    color: #000;
}

    .caption span.border {
        background-color: #edcc5a;
        color: #3c3c3c;
        padding: 18px;
        font-size: 1.4em;
        letter-spacing: 10px;
        line-height: 55px;
        word-wrap: break-word;
    }

    .caption span.border2 {
        background-color: #edcc5a;
        color: #edcc5a;
        padding: 28px;
        font-size: 1em;
    }

    .caption > a {
        background-color: transparent;
    }

.subText:before {
    content: '\a';
    white-space: pre;
}

.subText {
    font-weight: normal;
    left: 0;
    top: 0px;
    width: 100%;
    font-size: 0.6em;
    text-align: center;
    color: inherit;
    margin-left: 30px;
    line-height: 1em;
}

    .subText span.border {
        background-color: transparent;
        color: #fff;
        padding: 5px;
        font-size: 18px;
        letter-spacing: 1px;
    }

h3 {
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #111;
}

ul.checkmark li {
    color: #555;
    font-size: 1em; /* this determines the size of the list text and therefore checkmark size */
    list-style-type: none; /* remove default list style */
    margin-bottom: 1em; /* lists need to be able to breathe */
    padding: 0.25em 0 0 3em; /* make room for the circle */
    position: relative; /* because we want to position the circle in an absolute fashion */
    font-weight: bold;
}

ul.checkmark {
    padding: 0;
}


    ul.checkmark li:before {
        content: " ";
        display: block;
        border: solid 0.8em #edcc5a;
        border-radius: .8em;
        height: 0;
        width: 0;
        position: absolute;
        left: 0.4em;
        top: 40%;
        margin-top: -0.6em;
    }

    ul.checkmark li:after {
        content: " ";
        display: block;
        width: 0.3em;
        height: 0.6em;
        border: solid white;
        border-width: 0 0.2em 0.2em 0;
        position: absolute;
        left: 1em;
        top: 40%;
        margin-top: -0.2em;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.corpColourPurple1 {
    background-color: #3f51b5;
    background-color: var(--primary);
    color: #fcfcfc;
}

.corpColourPurple2 {
    background-color: #3f51b5;
    background-color: var(--primary);
    color: #fcfcfc;
}

.corpColourPurple3 {
    background-color: #a080ad;
    color: #fcfcfc;
}


.corpColourOrange1 {
    background-color: #a83743;
    color: #fcfcfc;
}

.menu-bar {
    position: fixed;
    margin-top: 0px;
    padding: 20px 10px;
    background-color: #f0f0f0;
    border-bottom: solid 1px #ccc;
    border-top: solid 1px #ddd;
    z-index: 9999;
    opacity: 0.95;
}

a.feature-link {
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
    border: solid 1px #ccc;
}

    a.feature-link:hover {
        text-decoration: none;
        background-color: #e6b366;
        border-radius: 4px;
        padding: 10px;
    }

    a.feature-link:focus {
        background-color: #e6b366;
        border-radius: 4px;
    }

.corpColourOrange2 {
    background-color: #d47065;
    color: #fcfcfc;
}

.corpColourOrange3 {
    background-color: #edcc5a;
    color: #333;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    #logo {
        margin-top: 0px;
        height: 40px;
        width: auto;
    }

    .promoHeroText1 {
        margin-top: 20px;
        font-size: 2em;
        line-height: 1em;
        text-align: left;
        line-height: 1em;
        color: #fff;
        font-weight: bold;
        opacity: 1;
    }
}

@media only screen and (min-device-width: 300px) and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2) {
    body, html {
        font-size: 14px;
        color: #333;
    }

    .promoHeroText {
        margin-top: 80px;
        font-size: 2em;
        line-height: 1em;
        text-align: center;
        line-height: 1em;
        color: #fff;
        font-weight: bold;
        opacity: 1;
    }

    .promoHeroText1 {
        margin-top: 20px;
        font-size: 2em;
        line-height: 1em;
        text-align: left;
        line-height: 1em;
        color: #fff;
        font-weight: bold;
        opacity: 1;
    }


    .promoTextDetail {
        font-weight: bold;
        font-size: 1em;
        opacity: 0;
        text-align: center;
    }

    .heading2 {
        text-align: left;
        color: inherit;
        font-weight: bold;
        font-size: 0.8em;
    }

    ul.featureList > li {
        margin-bottom: 10px;
        padding: 20px 10px 10px 10px;
        border-radius: 4px;
        background-color: #fcfcfc;
        margin-left: -60px;
        margin-right: -20px;
    }

    .left {
        float: none;
    }

    .right {
        float: none;
    }

    #logo {
        margin-top: 10px;
        height: 30px;
        width: auto;
    }

    .call-to-action-box {
        display: block;
        margin: 0 auto;
        margin-left: -10px;
    }

    eager-side-nav-button {
        top: 1.5em !important;
        left: 1.5em !important;
    }

    .cloud1Float, .cloud2Float, .cloud3Float {
        animation: none;
    }

    .hero {
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
        margin-bottom: 20px;
    }

    .magnified {
        border-radius: 4px;
        height: 200px;
        width: auto;
        box-shadow: 0px 0px 30px 10px #aaa;
    }

    .ctaBanner {
        font-size: 1.5em;
        font-weight: bold;
        color: #fcfcfc;
    }

    .generic {
        padding: 10% 0 10px 0;
        padding-left: 0px;
        font-size: 2.5em;
        line-height: 1.2em;
        color: #edcc5a;
        color: #fff;
        text-align: left;
    }

    .largeText {
        font-size: 2.5em;
    }

    .mediumText {
        font-size: 1.25em;
    }
}

