:root
{
    --BrandColor1: #152342;
    --BrandColor2: #eeb500;
}

:root
{
    /*
    font size is defined from root.css in :root selector.
    all other elements must use rem units to be responsive scaling from devices
    */
    font-weight: 400;
    line-height: 1.4;

    color: var(--DefaultTextColor);
    box-sizing: border-box;
}

*,
input,
button,
select,
textarea
{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

*,
*:before,
*:after
{
    color: inherit;
    box-sizing: inherit;
}


.font-roboto
{
    font-family: 'Roboto', sans-serif;
}

.font-eb-garamond
{
    font-family: "EB Garamond", Sans-serif;
}


.root-content-div > header{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
}

.root-scroll-div{
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* .main-grid
{
    display: grid;
    min-height: 50vh;
} */

.root-content-div
{
    display: grid;
    grid-template-rows: auto 1fr auto;

    min-height: 100%;

    width: 1200px;
    max-width: 100%;

    margin: 0 auto;

    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.bgcolor-brandcolor1{
    background-color: var(--BrandColor1);
}
.bgcolor-brandcolor2{
    background-color: var(--BrandColor2);
}

.bg-stripe{
    background-image: url('/Login/ClientApp/views/main-page/images/grey_line.png');
    background-position: center center;
    background-repeat: repeat;
    background-size: 74% auto;
}

.section1-grid{
    display: grid!important;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: center;
    grid-gap: 1rem;
    padding: 3rem 5%;
}
.section1-grid-med{
    padding: 5rem 5%;
}
.section1-grid-wide{
    grid-template-columns: 2fr 1.5fr;
}


.ct-size-xs{
    font-size: 0.625rem; /* 10px */
}
.ct-size-sm{
    font-size: 0.75rem; /* 12px */
}
.ct-size-md{
    font-size: 1rem; /* 16px */
}
.ct-size-lg{
    font-size: 1.125rem; /* 18px */
}
.ct-size-xl{
    font-size: 1.5rem; /* 24px */
}
.ct-size-2xl{
    font-size: 2.25rem; /* 36px */
}
.ct-size-3xl{
    font-size: 3rem; /* 48px */
}
.ct-size-4xl{
    font-size: 4rem; /* 64px */
}

textarea,
input[type='text'],
input[type='email']{
    -webkit-appearance: none;
}