* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #3a6fa2;
    background: #ffffff;
}



/*--------------------------------------------------------------
Coming Soon - Starburst
--------------------------------------------------------------*/

.coming-soon-starburst {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4rem 2rem;

    background-image: url("images/background1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/*--------------------------------------------------------------
Content
--------------------------------------------------------------*/

.coming-soon-starburst__content {
    width: 100%;
    max-width: 900px;

    text-align: center;
}


/*--------------------------------------------------------------
Logo
--------------------------------------------------------------*/

.coming-soon-starburst__logo {
    display: block;

    width: 100%;
    max-width: 225px;
    height: auto;

    margin: 0 auto 1rem;
}


/*--------------------------------------------------------------
Eyebrow
--------------------------------------------------------------*/

.coming-soon-starburst__eyebrow {
    display: inline-block;

    margin-bottom: 1.25rem;

    padding: 0.65rem 1.2rem;

    border-radius: 100px;

    background: rgba(139, 198, 64, 0.14);

    color: #8EC642;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.14rem;

    text-transform: uppercase;
}


/*--------------------------------------------------------------
Heading
--------------------------------------------------------------*/

.coming-soon-starburst h1 {
    margin-bottom: 1rem;

    color: #3a6fa2;

    font-size: 3rem;
    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -0.15rem;
}


/*--------------------------------------------------------------
Text
--------------------------------------------------------------*/

.coming-soon-starburst__text {
    max-width: 900px;

    margin: 0 auto;
}

.coming-soon-starburst__text p {
    margin-bottom: 1.5rem;

    color: #59677d;

    font-size: 1.1rem;
    line-height: 1.8;
}

.coming-soon-starburst__text p:last-child {
    margin-bottom: 0;

    color: #8EC642;

    font-weight: 700;
}

.coming-soon-starburst__text strong {
    color: #3a6fa2;

    font-weight: 700;
}


/*--------------------------------------------------------------
Divider
--------------------------------------------------------------*/

.coming-soon-starburst__divider {
    width: 65px;
    height: 4px;

    margin: 2.5rem auto 0;

    border-radius: 20px;

    background: #8bc640;
}


/*--------------------------------------------------------------
Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

    .coming-soon-starburst {
        padding: 4rem 3rem;
    }

    .coming-soon-starburst__content {
        max-width: 650px;
    }

    .coming-soon-starburst h1 {
        font-size: 3.2rem;
    }

}


@media (max-width: 767px) {

    .coming-soon-starburst {
        padding: 3rem 2rem;

        background-position: center;
    }

    .coming-soon-starburst__logo {
        max-width: 250px;

        margin-bottom: 2.5rem;
    }

    .coming-soon-starburst h1 {
        font-size: 2.7rem;

        letter-spacing: -0.08rem;
    }

    .coming-soon-starburst__text p {
        font-size: 1rem;
        line-height: 1.7;
    }

}


@media (max-width: 480px) {

    .coming-soon-starburst {
        padding: 3rem 1.5rem;

        background-size: auto 100%;
    }

    .coming-soon-starburst__logo {
        max-width: 220px;
    }

    .coming-soon-starburst h1 {
        font-size: 2.2rem;
    }

}