:root
{
    --bar-height: 72px;
    --color-primary: #3B3355;
    --color-primary-light: #8E8DBE;
}

.navbarNavAltMarkup
{
    background-color: #3B3355;
}


h1.MainBody
{
    text-align: center;
    font-size: xx-large;
    color: #ffffff;
}

.header
{
    display: none;
}

.bar
{
    background: #3B3355;
    /*position: fixed;
    z-index: 1;
    top: 0;
    left: 0;*/
    width: 100%;
    height: var(--bar-height);
    box-shadow: 0 0 10px  rgba(0, 0, 0, 0.15);
    transition: background 0.15s;
}

.bar--bg
{
    background: var(--color-primary);
}

.bar__content
{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar__logo
{
    height: 100%;
}

.bar__nav-toggle
{
    cursor: pointer;
}

.bar__nav-toggle > i 
{
    color: #ffffff;
    font-size: 2em;
}

#inpNavToggle
{
    display: none;
}

#inpNavToggle:checked ~ .nav
{
    display: flex;
}

.nav
{
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--bar-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--bar-height));
    padding: 32px;
    background: #3B3355;
    box-sizing: border-box;
}

.nav__link
{
    font-weight: 500;
    padding: 16px 0;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__link:hover
{
    opacity: 0.8;
}

@media screen and (min-width: 767px)
{
    .bar__nav-toggle
    {
        display: none;
    }

    .nav
    {
        display: initial;
        position: static;
        width: unset;
        height: unset;
        padding: unset;
        background: transparent;
    }

    .nav__link
    {
        border-bottom: none;
    }

    .nav__link:not(:last-of-type)
    {
        margin-right: 24px;
    }
}

body
{
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #8E8DBE;
}

.header
{
    height: 70vh;
    background-color: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    padding-top: var(--bar-height);
    box-sizing: border-box;
}

.u-centered
{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    box-sizing: border-box;
}

.call-to-action
{
    max-width: 500px;
    padding: 32px;
    box-sizing: border-box;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
}

.call-to-action__title
{
    margin-top: 0;
}

.call-to-action__description
{
    font-weight: 500;
    font-size: 1.1em;
}

.call-to-action__button
{
    background: #ffffff;
    outline: none;
    font: bold 1.1em 'Gill Sans', sans-serif;
    color: var(--color-primary);
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s color 0.15s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.call-to-action__button:hover
{
    background: transparent;
    color: #ffffff;
}

.baby-Button
{
    background: #ffffff;
    outline: none;
    font: bold 1.1em 'Gill Sans', sans-serif;
    color: var(--color-primary);
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s color 0.15s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    box-sizing: border-box;
}

.baby-Button:hover
{
    background: transparent;
    color: #ffffff;
}

.MainBody
{
    color: white;
    text-align: center;
}

.button
{
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px; 
    border-radius: 8px;
}

.content
{
    padding: 7%;
    text-align: center;
    color: white;
}

.web-push-button
{
    background-color: #ffffff;
    outline: none;
    font: bold 0.8em 'Gill Sans', sans-serif;
    color: var(--color-primary);
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
