.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #f9f9f9;
}


/* Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.hero {
    position: relative;
    color: #000000;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background-image: url("../img/hero-bg-2x.jpg");
    background-repeat: no-repeat;
    position: relative;
    z-index: 80;
}

.hero-content {
    justify-self: flex-end;
    position: relative;
    z-index: 200;
}

.hero-title {
    font-weight: 700;
}
.hero-title.anim-fade-in-up {
    -webkit-transition-delay: 300ms;
         -o-transition-delay: 300ms;
            transition-delay: 300ms;
}

.hero-desc {
    line-height: 1.3;
}
.hero-desc.anim-fade-in-up {
    -webkit-transition-delay: 500ms;
         -o-transition-delay: 500ms;
            transition-delay: 500ms;
}

.hero-button-container.anim-fade-in-up {
    -webkit-transition-delay: 700ms;
         -o-transition-delay: 700ms;
            transition-delay: 700ms;
}

.hero-button,
form input.form-button,
form input.form-button:disabled {
    color: #ffffff !important;
    background-color: #2b94d6;
    opacity: 0.95;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: background-color 400ms;
    -o-transition: background-color 400ms;
    transition: background-color 400ms;
    /* override skeleton */
    text-transform: none;
    letter-spacing: normal;
    height: auto;
    line-height: normal;
    border: 0;
}
form input.form-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hero-button:hover,
form input.form-button:hover {
    background-color: #137CBD;
    color: #ffffff;
}

.hero-button.hero-button-small {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1rem;
    padding: 0.5rem 1.2rem;
}

.hero-bg {
    background-image: url("../img/angle-bg-gray-2x.png");
    background-size: auto 435px;
    background-position: 0;
    position: absolute;
    width: 100%;
    height: 435px;
    z-index: 50;
    bottom: 0;
}

.hero-carkey {
    position: absolute;
    z-index: 300;
    width: 172px;
    left: calc(50% - 23.5rem);
    bottom: -60px;
}

@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes fade-in-out {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.2;
  }
}


/* Loading animations
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.anim-fade-in-up {
    opacity: 0;
    -webkit-transform: translate3d(0, 75px, 0);
            transform: translate3d(0, 75px, 0);
}
.anim-fade-in-up-active {
    opacity: 1;
    -webkit-transition: opacity 800ms linear, -webkit-transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 800ms linear, -webkit-transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), opacity 800ms linear;
    transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), opacity 800ms linear;
    transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), opacity 800ms linear, -webkit-transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}


/* Trusted by
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.trusted {
    background: #f9f9f9;
    position: relative;
    z-index: 50;
    padding: 8rem 0 3rem;
    margin: -3rem 0 10rem;
    margin-bottom: 10rem;
}
.trusted-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
}
.trusted-title {
    text-align: center;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 1rem;
}
.trusted-logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 132px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 4rem;
}
.trusted-logo img {
    max-width: 82px !important;
}
.trusted-logo img.img-potamkin {
    max-width: 106px !important;
}
.trusted-logo img.img-flow {
    max-width: 96px !important;
}

/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section-grad {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#f9f9f9));
    background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #f9f9f9 100%);
    background-image: -o-linear-gradient(bottom, #ffffff 0%, #f9f9f9 100%);
    background-image: linear-gradient(0deg, #ffffff 0%, #f9f9f9 100%);
}
.section-white {
    background-color: #ffffff;
}

.section {
    position: relative;
}

.section-title {
    font-weight: 700;
    font-size: 3.4rem;
    line-height: 3.4rem;
    margin: 0 0 1.5rem;
}
.section-desc {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #666666;
}
.section-desc.italic {
    font-style: italic;
}

.section-seamless {
    min-height: calc(758px * 1.5);
}
.section-chart {
    min-height: calc(733px * 1.7);
}
.section-signature {
    min-height: calc(596px * 1.85);
}
.section-graph {
    min-height: calc(1140px * 1.2)
}
.section-start-finish {
    padding: 1rem 0 5rem;
}
.section-products {
    opacity: 0.95;
    padding: 0 0 15rem;
}
.section-signup {
    padding: 1rem 0 2rem;
}


.section .container,
.section-white .container,
.section-grad .container {
    position: relative;
    z-index: 100;
}
.container-seamless {
    text-align: center;
}
.container-chart {
    padding-top: 12rem;
}
.container-signature {
    text-align: center;
}
.container-graph {
    padding-top: 10rem;
}

.parallax {
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}
.parallax.overview {
    z-index: 0;
}

.container-seamless .section-desc {
    font-style: italic;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.seamless {
    background-image: url('../img/seamless-2x.jpg');
    background-size: auto 758px;
    background-position: 0 15rem;
    min-height: 758px;
}
.seamless-img {
    display: none;
    text-align: center;
}

.seamless-quotes {
    position: relative;
    min-height: 120px;
    overflow: hidden;
}
.quote {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
    position: absolute;
    left: calc(50% - 350px);
}
.quote.anim {
    -webkit-transition: opacity 0.6s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    transition: opacity 0.6s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: opacity 0.6s cubic-bezier(0.7, 0, 0.3, 1), transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    transition: opacity 0.6s cubic-bezier(0.7, 0, 0.3, 1), transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    transition: opacity 0.6s cubic-bezier(0.7, 0, 0.3, 1), transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.quote.off-right {
    -webkit-transform: translate3d(20%, 0, 0);
            transform: translate3d(20%, 0, 0);
    opacity: 0;
}
.quote.off-left {
    -webkit-transform: translate3d(-20%, 0, 0);
            transform: translate3d(-20%, 0, 0);
    opacity: 0;
}
.seamless-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem 0 0;
}
.seamless-dot {
    cursor: pointer;
    opacity: 0.5;
    height: 18px;
    width: 18px;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.dot-circle {
    height: 6px;
    width: 6px;
    border-radius: 6px;
    background-color: #999999;
}
.seamless-dot:hover {
    opacity: 0.75;
}
.seamless-dot.active {
    opacity: 1;
}



.chart {
    background-size: auto 733px;
    min-height: 733px;
}
.chart-bg {
    background-image: url('../img/chart-bg-grid-2x.jpg');
    z-index:0;
    margin-top: 11.5rem;
}
.chart-fg {
    background-position: calc(65% + 100px) 0;
    background-image: url('../img/chart-fg-2x.png');
    margin-top: 5rem;
}
.chart-img {
    display: none;
    text-align: center;
}
.chart-img img {
    width: 90%;
}

.container-signature .section-desc {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.signature {
    background-image: url('../img/signature-2x.jpg');
    background-size: auto 596px;
    background-position: 50% 15rem;
    min-height: 596px;
}
.signature-img {
    display: none;
    text-align: center;
}

.graph {
    background-image: url('../img/graph-2x.jpg');
    background-size: auto 1140px;
    background-position: 50% 0;
    min-height: 1140px;
}
.graph-img {
    display: none;
    text-align: center;
}

.section-start-finish .section-title {
    margin-left: auto;
    margin-right: auto;
}
.section-start-finish .section-desc {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
}


.img-genericlogo {
    width: 82px;
}
.img-potamkin {
    width: 106px;
}
.img-flow {
    width: 88px;
}
.img-asbury {
    width: 115px;
}
.img-larryhmiller {
    width: 118px;
}
.img-penske {
    width: 87px;
}
.img-billluke {
    width: 120px;
}
.img-motortrend {
    width: 127px;
}
.img-claycooley {
    width: 139px;
}

#profit-per-sale {
    padding-top: 1rem;
}


/* Chart animation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.chart-dyn {
    margin-top: 45rem;
}
.chart-dyn.hidden .chart-bar-1,
.chart-dyn.hidden .chart-bar-2,
.chart-dyn.hidden .chart-bar-3,
.chart-dyn.hidden .chart-bar-4 {
    height: 0;
}

.chart-dyn.hidden .chart-label-1,
.chart-dyn.hidden .chart-label-2,
.chart-dyn.hidden .chart-label-3,
.chart-dyn.hidden .chart-label-4 {
    opacity: 0;
}

.chart-bar {
    position: absolute;
    bottom: 35rem;
    width: 32px;
    background-color: #888888;
    opacity: 0.25;
    /* transition: height 1.3s cubic-bezier(0.645, 0.045, 0.355, 1); */
}

.chart-label {
    position: absolute;
    width: 100px;
    bottom: 50rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 500;
    -webkit-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}
.chart-label > span {
    opacity: 0.5;
}

.chart-bar-1 {
    height: 233px;
    margin-left: -111px;
    -webkit-transition: height 0.7s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: height 0.7s cubic-bezier(0.9, 0, 0.1, 1);
    transition: height 0.7s cubic-bezier(0.9, 0, 0.1, 1);
}
.chart-label-1 {
    bottom: 800px;
    margin-left: -145px;
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
}

.chart-bar-2 {
    height: 333px;
    margin-left: -11px;
    -webkit-transition: height 1s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: height 1s cubic-bezier(0.9, 0, 0.1, 1);
    transition: height 1s cubic-bezier(0.9, 0, 0.1, 1);
    /* bayla */
}
.chart-label-2 {
    bottom: 900px;
    margin-left: -45px;
    -webkit-transition-delay: 0.7s;
         -o-transition-delay: 0.7s;
            transition-delay: 0.7s;
}

.chart-bar-3 {
    height: 432px;
    margin-left: 89px;
    -webkit-transition: height 1.3s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: height 1.3s cubic-bezier(0.9, 0, 0.1, 1);
    transition: height 1.3s cubic-bezier(0.9, 0, 0.1, 1);
    /* bayla */
}
.chart-label-3 {
    bottom: 1000px;
    margin-left: 55px;
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s;
}

.chart-bar-4 {
    height: 521px;
    margin-left: 190px;
    background-color: #0091EA;
    -webkit-transition: height 1.6s cubic-bezier(0.9, 0, 0.1, 1);
    -o-transition: height 1.6s cubic-bezier(0.9, 0, 0.1, 1);
    transition: height 1.6s cubic-bezier(0.9, 0, 0.1, 1);
    /* bayla */
}
.chart-label-4 {
    bottom: 1090px;
    margin-left: 155px;
    color: #0091EA;
    -webkit-transition-delay: 1.3s;
         -o-transition-delay: 1.3s;
            transition-delay: 1.3s;
}
.chart-label-4 > span {
    opacity: 1;
}
.chart-label-4 .drive-logo {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -.08rem;
    font-weight: 700;
    font-size: 1.9rem;
    line-height: 2.1rem;
}


/* Products
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.product,
.product:hover,
.product:visited {
    color: #000000;
    background: #F2F2F2;
    text-decoration: none;
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    -webkit-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 1rem 2.5rem 3rem;
}
.product:hover {
    background-color: #e7e7e7;
}
.product-name {
    font-weight: 700;
    margin-bottom: 1rem;
}
.product-desc {
    line-height: normal;
    margin-bottom: 1rem;
    width: 100%;
}
.product-link {
    color: #888888;
    cursor: pointer;
}



/* Smaller than 719 */
@media (max-width: 719px) {
    .hero {
        background-size: cover;
        background-position: 20% 0;
        height: 600px;
    }
    .hero-content {
        width: 100%;
        background: rgba(255, 255, 255, 0.5);
        padding: 1.5rem 0 1.5rem 1rem;
        margin-top: 18rem;
    }
    .hero-title {
        font-size: 2.8rem;
        line-height: 2.8rem;
        margin-bottom: 1rem;
    }
    .hero-desc {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .hero-button,
    form input.form-button {
        padding: 0.8rem 1.4rem;
        font-size: 1.2rem;
    }
    .hero-carkey {
        width: 140px;
        left: calc(50% + 2rem);
        bottom: -50px;
    }
    .trusted {
        padding: 4rem 0 3rem;
        margin: 0 0 3rem;
    }
    .trusted-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .trusted-logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .section-title {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin: 0 0 1.2rem;
    }
    .section-desc {
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin: 0 0 1.4rem;
    }
    .section-products {
        padding: 0 0 5rem;
    }
    .product,
    .product:hover,
    .product:visited {
        margin-bottom: 0.5rem;
    }
    .section-seamless {
        min-height: 600px;
        max-width: auto;
    }
    .seamless-quotes {
        min-height: 150px;
    }
    .quote {
        left: calc(50% - 175px);
    }
    .container-seamless {
        padding: 0 1rem;
        margin: 0 0 2rem;
    }
    .container-seamless .section-desc {
        width: 350px;
    }
    .seamless {
        display: none;
    }
    .seamless-img {
        display: block;
    }
    .seamless-img img {
        width: 100%;
        left: 0;
        position: absolute;
    }
    .section-chart {
        min-height: auto;
        padding-bottom: 8rem;
    }
    .container-chart {
        text-align: left;
        padding: 0 1rem;
    }
    .chart {
        display: none;
    }
    .chart-img {
        display: block;
        margin-top: 1.5rem;
    }
    .chart-img img {
        margin-top: -1rem;
    }
    .section-signature {
        min-height: auto;
        padding-bottom: 8rem;
    }
    .container-signature {
        text-align: left;
        padding: 0 1rem;
        margin: 0 0 2rem;
    }
    .container-signature .section-desc {
        max-width: 30rem;
        margin-left: 0;
        margin-right: 0;
    }
    .signature {
        display: none;
    }
    .signature-img {
        display: block;
    }
    .signature-img img {
        width: 90%;
    }
    .section-graph {
        min-height: auto;
        padding-bottom: 6rem;
    }
    .container-graph {
        text-align: center;
        padding-top: 0;
    }
    .graph {
        display: none;
    }
    .graph-img {
        display: block;
    }
    .graph-img img {
        width: 160%;
        margin-left: -60%;
        margin-top: -60%;
    }
    .product,
    .product:hover,
    .product:visited {
        padding: 1rem 1.25rem 1.5rem
    }
    .product-icon {
        width: 150px;
        margin: 0.5rem auto 1.5rem;
    }
    .product-name,
    .product-desc,
    .product-link {
        font-size: 1.2rem;
    }
}


/* Bigger than 720 */
@media (min-width: 720px) {
    .hero {
        background-size: cover;
        background-position: 50% 0;
    }
    .hero-content {
        width: 50%;
        padding: 15rem 0 17rem 2rem;
    }
    .hero-title {
        font-size: 3.2rem;
        line-height: 3rem;
        margin-bottom: 1rem;
    }
    .hero-desc {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    .hero-button,
    form input.form-button {
        padding: 0.6rem 1.2rem;
        font-size: 1.0rem;
    }
    .chart {
        background-position: 65% 5rem;
    }
    .chart-bar,
    .chart-label {
        left: 60%;
    }
    .section-title {
        font-size: 2.7rem;
        line-height: 2.7rem;
        margin: 0 0 1rem;
    }
    .section-desc {
        font-size: 1.2rem;
        line-height: 1.6rem;
        margin-bottom: 1rem;
    }
    .product-name,
    .product-desc {
        font-size: 1.3rem;
    }
    .product-link {
        font-size: 1.3rem;
    }
    .product-icon {
        width: 250px;
        margin: 1rem auto 3rem;
    }
}

/* Bigger than 960 */
@media (min-width: 960px) {
    .hero {
        background-size: cover;
        background-position: 50% 0;
        min-height: 55rem;
    }
    .hero-content {
        width: 50%;
        padding: 15rem 0 17rem 3rem;
    }
    .hero-title {
        font-size: 4rem;
        line-height: 4.2rem;
        margin-bottom: 1.5rem;
    }
    .hero-desc {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .hero-button,
    form input.form-button {
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
    }
    .chart {
        background-position: calc(65% + 100px) 5rem;
    }
    .chart-bar,
    .chart-label {
        left: 70%;
    }
    .section-title {
        font-size: 3.5rem;
        line-height: 4rem;
        margin: 0 0 1.5rem;
    }
    .section-desc {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 1.5rem;
    }
    .product-name,
    .product-desc {
        font-size: 1.5rem;
    }
    .product-link {
        font-size: 1.5rem;
    }
    .product-icon {
        width: 250px;
        margin: 1rem auto 3rem;
    }
}