/* --------------------------------------------------
GLOBAL TYPOGRAPHY
-------------------------------------------------- */

.lp-page h1,
.lp-page h2,
.lp-page h3 {
    font-weight: 700;
    color: #111;
    text-wrap: balance;
    margin: 0 0 3rem 0;
}

.lp-page h2 {
    font-size: 4rem;
    margin: 0 0 2rem 0;
}

.lp-page h3 {
    font-size: 3rem;
}

.lp-page h2:before {
    display: none;
}


/* --------------------------------------------------
LAYOUT CONTAINER
-------------------------------------------------- */

.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* --------------------------------------------------
SITE HEADER
-------------------------------------------------- */

.lp-site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    z-index: 15;
}

.lp-site-header-grid {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.lp-site-header img {
    max-width: 75px;
}

.lp-site-header-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.lp-site-header-cta a {
    display: flex;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.lp-site-header-cta a img {
    max-width: 20px;
}


/* --------------------------------------------------
HERO
-------------------------------------------------- */

.lp-hero {
    position: relative;
    z-index: 5;
    padding: 175px 0 0 0;
    font-size: 1.75rem;

    color: #fff;
    background: var(--primary);
    background: #54439E;
    background: linear-gradient(180deg,
            rgba(84, 67, 158, 1) 0%,
            rgba(84, 67, 158, 1) 90%,
            rgba(255, 255, 255, 1) 89%);
}

.lp-hero h1 {
    color: #fff;
    position: relative;
    line-height: 1;
    padding: 0 0 2rem 0;
    font-size: 5rem;
}

.lp-hero h1:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;

    width: 50px;
    height: 5px;

    background: var(--secondary);
}

.lp-hero p {
    text-wrap: balance;
}

.lp-hero img {
    box-shadow: 15px 15px 25px rgba(0, 0, 0, .15);
}

.lp-hero-grid .text {
    padding-bottom: 50px;
}


/* --------------------------------------------------
BACKGROUND COVER IMAGE
-------------------------------------------------- */

.bkg-cover {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    mix-blend-mode: multiply;

    z-index: -1;
    opacity: .3;

    box-shadow: none !important;
}

.lp-hero .bkg-cover {
    height: 90%;
    opacity: 1;
}



/* --------------------------------------------------
RESULTS SECTION
-------------------------------------------------- */

.lp-results {
    position: relative;
    z-index: 5;

    margin: 75px 0;
    padding: 100px 0 65px 0;

    background: Var(--primary);
}

.lp-results h2 {
    color: #fff;
    text-align: center;

    max-width: 80%;

    margin: 0 auto 3rem auto;
    padding: 0 0 2rem 0;
}

.lp-results h2:after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 25px);
    bottom: 0;

    width: 50px;
    height: 5px;

    background: var(--secondary);
}

.lp-results ul {
    list-style: none;
    padding: 0;

    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    justify-items: start;
    align-items: start;
}

.lp-results ul li {
    height: 100%;
    padding: 2rem 2rem 2rem 7rem;

    font-size: 2rem;
    color: #fff;

    background: url(ico-check.png) 2rem 2rem no-repeat rgba(0, 0, 0, .25);
    background-size: 35px 35px;
}

.lp-results-cta {
    margin: 6rem 0 0 0;
}




/* --------------------------------------------------
CTA SECTION
-------------------------------------------------- */

.lp-cta {
    background: var(--primary);
    color: #fff;

    margin: 50px 0;
    padding: var(--spacer) 0;
}

.lp-cta h2 {
    color: #fff;
}

.lp-cta .text {
    padding: var(--spacer) 0;
}

.lp-cta-grid {
    display: grid;
    gap: 75px;
}

.lp-cta-grid figure {
    order: 2;
    min-height: 450px;

    box-shadow: 15px 15px 25px rgba(0, 0, 0, .15);
}

.lp-cta-grid figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-cta-grid .text {
    order: 1;
}


/* --------------------------------------------------
MEDIA QUERIES
-------------------------------------------------- */

@media (min-width: 768px) {

    .lp-cta {
        padding: 0;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 1) 10%,
                rgba(84, 67, 158, 1) 10%,
                rgba(84, 67, 158, 1) 90%,
                rgba(255, 255, 255, 1) 90%);
    }

    .lp-cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .lp-cta .text {
        margin: 4rem 0;
    }

    .lp-cta-grid figure {
        order: 1;
    }

    .lp-cta-grid .text {
        order: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

}


@media (min-width: 992px) {

    .lp-site-header img {
        max-width: 125px;
    }

    .lp-site-header-cta a {
        font-size: 1.5rem;
    }

    .lp-hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .lp-hero h1 {
        font-size: 6rem;
    }

    .lp-faqs-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 50px;
        align-items: flex-start;
    }

}


@media (min-width: 1200px) {

    .lp-hero-grid {
        display: grid;
        grid-template-columns: 7fr 5fr;
        gap: 100px;
        align-items: center;
    }

}

.cta h2 {
    color: #fff;
}
