@charset "UTF-8";

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 100%;
	font-weight: 400;
	line-height: 1.55em;
	color: var(--dark-gray);
	/*This fixes an issue with Chrome rendering fonts*/
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

p {
	font-family: inherit;
	font-weight: 300;
    font-size: 0.945rem;
    line-height: 1.45em;
    margin-bottom: 0 !important;

	/*This fixes an issue with Chrome rendering fonts*/
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

p + p {
	margin-top:1.25em;
	margin-bottom: 1.25em !important;
}

p + h2,
p + h3,
p + h4,
p + h5{
	margin-top:1.25em;
}

.lead-copy p{
    font-size: 1.125rem;
    font-weight: 300;
}

.small-copy p{
    font-size: 0.825rem;
    font-weight: 400;
}

div, dl, dt, dd, ol, li,
pre, form, p, th, td {
	margin: 0;
	padding: 0;
	direction: ltr;
}

hr{
    max-width: 100%;
    margin: 2em auto !important;
    border-top: none !important;
    border-bottom: 1px solid var(--borders);
}

ul{
    margin:0.55em 0 2em 3em;
	text-align: left;
    font-size: 16px;
    display: block;
}

ol{
    margin:0.55em 0 1em 1em;
	text-align: left;
    font-size: 15px;
    display:block;
}

ul ul{
	margin-bottom:.25em;
    margin-left: 3em;
}

ol li{
    list-style-type: auto;
	border-bottom: none;
	margin-bottom:0.75em;
}

li{
	line-height:1.5em;
	margin-bottom:  0.85em;
}


strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

sup {
    top: -0.25em;
}

blockquote{
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 40px;
}

blockquote,
blockquote p{
    font-size: 20px;
    color: var(--dark-gray);
    line-height: 1.35em;
    font-style: normal;
    font-weight: 600;
}

blockquote {
    padding-left: 2em;
}

.lead-copy{
    font-size: 22px;
    font-weight: 400;
}

.small-copy{
    font-size: 13px;
}

/* @Global Links
===================================== */


a, a:link,
a:visited {
    color: var(--light-blue);
    text-decoration: none;

    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

a:hover,
a:active {
    color: var(--hover);
    text-decoration: none;
}

a:focus{
    box-shadow: none !important;
    text-decoration: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* @end General Text Elements
===================================== */

/* Heading Text Elements
===================================== */
table thead,
.btn,
.button,
button,
label,
input[type=submit],
#navWrapper li,
.off-canvas-list,
label,
h1, h2, 
h3, h4{
    font-family: 'Plus Jakarta Sans', sans-serif;
	line-height: 1.25em;
    
    position: relative;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1, h2, 
h3, h4, h5{
    margin-bottom:0.25em;
}

/* @end General Text Elements
===================================== */

/* @Headings (H1)
===================================== */
h1{
    font-weight: 600;
    color: var(--white);
    font-size: 2.35rem;
    margin-bottom: 0.85em;
}

h1 a,
h1 a:visited,
h1 a:link{
	color: var(--white);
}

h1 a:hover,
h1 a:active{
	color: var(--hover);
	text-decoration: none;
}
/* @end Headings (H1)
===================================== */


/* @Headings (H2)
===================================== */
h2{
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
}

h2 a,
h2 a:visited,
h2 a:link {
	color: var(--blue);
}

h2 a:hover,
h2 a:active{
	color: var(--hover);
	text-decoration: none;
}

/* @end Headings (H2)
===================================== */

/* @Headings (H3)
===================================== */
h3{
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.75em;
}

h3 a,
h3 a:visited,
h3 a:link {
	color: var(--blue);
}

h3 a:hover,
h3 a:active{
	color: var(--hover) !important;
	text-decoration: none;
}
/* @end Headings (H3)
===================================== */

/* @Headings (H4)
===================================== */
h4{
	font-size: 0.945rem;
    font-weight: 700;
    color: var(--light-blue);
}

h4 a,
h4 a:visited,
h4 a:link {
	color: var(--light-blue);
}

h4 a:hover,
h4 a:active{
	color: var(--hover);
	text-decoration: none;
}
/* @end Headings (H4)
===================================== */

/* @Headings (H5)
===================================== */
h5{
	font-size: 0.75rem;
    font-weight: 700;
    color: var(--very-light-blue);
}

h5 a,
h5 a:visited,
h5 a:link {
	color: var(--very-light-blue);
}

h5 a:hover,
h5 a:active{
	color: var(--hover);
	text-decoration: none;
}
/* @end Headings (H5)
===================================== */

/* @Headings (H6)
===================================== */
H6{
	font-size: 0.65rem;
    font-weight: 500;
    color: var(--very-light-blue);
}

H6 a,
H6 a:visited,
H6 a:link {
	color: var(--very-light-blue);
}

H6 a:hover,
H6 a:active{
	color: var(--hover);
	text-decoration: none;
}
/* @end Headings (H5)
===================================== */


/* @Label
===================================== */
label,
label a,
label a:visited,
label a:link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.055em;
    margin-bottom: 0.55em;
}

label a:hover,
label a:active{
    color: var(--hover);
}
/* @end Label
===================================== */

.white,
.white p, 
.white h1,
.white h2, 
.white h3,
.white h4,
p.white, 
h1.white,
h2.white, 
h3.white,
h4.white{
	color: var(--white);
}

@media only screen and (max-width: 1440px) {

    h1,
    #heroWrapper h1{
        font-size: 1.75rem;
    }
    
    h2{
        font-size: 1.25rem;
    }
    
    #heroWrapper p,
    .lead-copy p{
        font-size: 1.225rem;
    }

}

@media only screen and (max-width: 1280px) {

    h1,
    #heroWrapper h1{
        font-size: 1.55rem;
    }
    
    
    #heroWrapper p,
    .lead-copy p{
        font-size: 1.125rem;
    }
    
    ul ul {
        margin-left: 2em;
    }

}
