@charset "UTF-8";

/* @Fonts
===================================== */
/* Thin: 200 */
@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/Proxima-Nova-Alt-Thin.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Proxima-Nova-Alt-Thin-Italic.woff) format("woff");
}

/* Light: 300 */
@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/Proxima-Nova-Alt-Light.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Proxima-Nova-Alt-Light-Italic.woff) format("woff");
}

/* Normal: 400 */
@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Proxima-Nova-Alt-Regular.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/Proxima-Nova-Alt-Regular-Italic.woff) format("woff");
}

/* Medium: 500 */
@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Proxima-Nova-Alt-Semibold.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/Proxima-Nova-Alt-Semibold-Italic.woff) format("woff");
}

/* Bold: 700 */
@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Proxima-Nova-Alt-Bold.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/Proxima-Nova-Alt-Bold-Italic.woff) format("woff");
}

/* Black: 900 */
@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/Proxima-Nova-Alt-Black.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Proxima-Nova-Alt;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/Proxima-Nova-Alt-Black-Italic.woff) format("woff");
}



body {
	font-family: Proxima-Nova-Alt, sans-serif;
	font-size: 100%;
	font-weight: 300;
	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: clamp(1.125rem, 2.55vw, 2.35rem);
    line-height: 1.12em;
    color: var(--dark-gray);
    letter-spacing: -1px;
    
    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.45em !important;
}

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

p + h4{
	margin-top:0.75em;
}

p + ul{
    margin-top: 0.25em;
}


.lead-text p{
    font-size: 22px;
}

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:2em 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.25em;
}

li{
	line-height:1.12em;
	margin-bottom: 0.25em;
    font-size: clamp(1.125rem, 2.55vw, 2.35rem);
}


strong, b {
  font-weight: 900;
}

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-blue);
    line-height: 1.35em;
    font-style: normal;
    font-weight: 400;
}

blockquote {
    padding-left: 2em;
}

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


a, a:link,
a:visited {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 300;

    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(--orange);
    text-decoration: none;
}

a:focus{
    outline: 1px dashed var(--dark-blue) !important;
    outline-offset: 1px;  
    box-shadow: none !important;
    text-decoration: none !important;
}


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

/* Heading Text Elements
===================================== */
ul.off-canvas-list li a,
table thead,
.btn,
.button,
button,
input[type=submit],
h1, 
h2, 
h3,
label{
	font-family: Oswald, sans-serif;
	line-height: 1.125em;
    font-weight: bold;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
    
    position: relative;
    margin-bottom:0.55em;
}

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

/* @Headings (H1)
===================================== */
h1 {
    font-weight: 200;
    text-transform: none;
    font-size: 3.4375rem;
    line-height: 0.875em;
    letter-spacing: -0.05em;
    color: var(--medium-gray);
}

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

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


/* @Headings (H2)
===================================== */
h2{
    font-size: 34px;
    margin-bottom: 1em;
}

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

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

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

/* @Headings (H3)
===================================== */
h3{
    font-weight: 700;
    font-size: 4.85rem;
    line-height: 1em;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

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

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

/* @Headings (H4)
===================================== */
h4 {
    font-family: Proxima-Nova-Alt, sans-serif;
    font-size: 3.35rem;
    font-weight: 900;
    color: var(--black);
}

h4 a,
h4 a:visited,
h4 a:link {
	color: var(--black);
    font-weight: 700 !important;
}

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

.page-id-147 h4{
    margin-top: 1.55em;
}
/* @end Headings (H4)
===================================== */



/* @Headings (H5)
===================================== */
h5{
	font-size: 0.85rem;
    font-weight: 400;
    color: var(--dark-blue);
}
h5 a,
h5 a:visited,
h5 a:link {
	color: var(--dark-blue);
    font-weight: 400 !important;
}

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

/* @Label
===================================== */
label,
label a,
label a:visited,
label a:link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
}

label a:hover,
label a:active{
    color: var(--hover);
}
/* @end Label
===================================== */
.bg-dark-blue,
.bg-dark-blue p, 
.bg-dark-blue h1,
.bg-dark-blue h2, 
.bg-dark-blue h3,
.bg-dark-blue h4,
.bg-orange,
.bg-orange p, 
.bg-orange h1,
.bg-orange h2, 
.bg-orange h3,
.bg-orange h4,
.white,
.white p, 
.white h1,
.white h2, 
.white h3,
.white h4{
	color: var(--white) !important;
}

@media only screen and (max-width: 1880px) {  
    .grid-hover-wrapper p{
        font-size: 2.6875rem;
    }
}

@media only screen and (max-width: 1680px) {  
    .grid-hover-wrapper h3{
        font-size: 4.125rem;
    }
    
    .grid-hover-wrapper p{
        font-size: 2.55rem;
    }
    
     h3 {
        font-size: 4.55rem;
    }
    
    .team-wrapper h3.name,
    .team-wrapper h3.title{
        font-size: 5.55rem;
    }    
}


@media only screen and (max-width: 1580px) {  
    
    .grid-hover-wrapper h3{
        font-size: 3.75rem;
    }
    
    .grid-hover-wrapper p{
        font-size: 2.25rem;
    }
}


@media only screen and (max-width: 1440px) {  
    .grid-hover-wrapper h3{
        font-size: 3.55rem;
    }
    
    .grid-hover-wrapper p{
        font-size: 2rem;
    }
}


@media only screen and (max-width: 1280px) {
    
    .grid-hover-wrapper h3{
        font-size: 2.25rem;
    }

    .grid-hover-wrapper p{
        font-size:1.55rem;
    }
    
    
}

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

    .grid-hover-wrapper h3{
        font-size: 2rem;
    }

    .grid-hover-wrapper p{
        font-size:1.25rem;
    }
    
     h3 {
        font-size: 3.5rem;
    }
    
    .team-wrapper h3.name,
    .team-wrapper h3.title{
        font-size: 4rem;
    }  
}

@media only screen and (max-width: 880px) {
  
    h3 {
        font-size: 2.85rem;
    }
    
    .team-wrapper h3.name{
        font-size: 3rem;
        margin-bottom: 0.001em;
    }
    
    .team-wrapper h3.title{
        font-size: 3rem;
        margin-bottom: 0.25em;
    }
    
    h4 {
        font-size: 2rem;
        line-height: 1em;
    }

}
