/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
-webkit-appearance: none;
border-radius: 0;
}

/*
==========================================================================
GLOBAL & WP SPECIFIC STYLES
==========================================================================
*/



:root {
  --background-color: #fff;
  --text: #444;
  --white: #fff;
  --green: #37b0a6;
  --yellow: #ebae00;
  --red: #df3d69;
  /*--light-blue: #5251a2;*/
  --blue: #192d4d;
  --border: #323d5a;
  --grey: #eee;
  --light-grey: #d7d7d7;
  --very-light-grey: #f5f5f5;
	
  --corporateblue: #192d4d;
  --light-blue: #7694cc;
  --purple: #544797;
  --gold: #ebae00;
  /*--grey: #818284;*/
  --teal: #37b0a6;
  --rose: #df3d69;
  --vanilla: #fff4ac;
  --dark-purple: #492774;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
}

input, textarea, select {
    -webkit-border-radius:0;
    border-radius:0;
	font-family:'Bricolage Grotesque', 'MuseoSans_500', Helvetica , Arial, sans-serif;
}

img,
audio,
video,
canvas {
	max-width: 100%;
}

html {
	height: 100%;
	min-height: 100%;
	margin-bottom: 1px;
	overflow: -moz-scrollbars-vertical!important;
}

::selection {
	background: var(--red);
	color: var(--white);
}

::-moz-selection {
	background: var(--red);
	color: var(--white);
}

::-webkit-selection {
	background: var(--red);
	color: var(--white);
}

.cf:before,.cf:after {content: " "; display: table;}
.cf:after {clear: both;}
.cf {clear: both;}

strong, b {
	font-weight:bold;
}

em, i {
	font-style:italic;
}

p {
	margin: 0 0 20px 0;
}

a {
	color: var(--green);
	text-decoration: none;
}

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


/*
==========================================================================
H & LINKS
==========================================================================
*/

h1 {
	font-size: 42px;
	font-weight: 800;
	line-height: 1.2;
}

h2 {
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-size: 22px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	font-weight: 700;
}
h1, h2, h3, h4, h5 {
	color: var(--teal);
	font-family:'Bricolage Grotesque', 'MuseoSans_500', Helvetica , Arial, sans-serif;
	letter-spacing: normal;
	margin:0 0 20px 0;
	padding:0;
}



/*
==========================================================================
GENERAL
==========================================================================
*/

body {
	background: var(--background-color);
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
	font-family: 'Bricolage Grotesque', 'MuseoSans_500', Helvetica, Arial, sans-serif;
	font-weight: 300;
	height:100%;
	margin:0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

.wrapper {
	width:auto;
	/*margin: 30px;
	padding-bottom: 30px; adds a lovely white border around the design */
	position: relative;
}

.inner {
	position: relative;
	width: 100%;
	max-width: 1210px;
	margin: 0 auto;
	padding: 0 20px;
}

.inner img{
	height:auto;
}

.alert {
	background: var(--red);
	color: var(--white);
	margin: 0 0 0px 0;
	padding: 10px;
}

.alert h5 {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 5px 0;
}

.alert p {
	font-size: 13px;
	margin: 0;
}

.alert-close {
	position: absolute;
	right: 10px;
	top: 10px;
	color: var(--white);
	z-index: 9;
	cursor: pointer;
}

.alert-close:hover {
	opacity: 0.5;
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

/*
==========================================================================
HEADER
==========================================================================
*/

header {
	width:100%;
	max-width: 1240px;
	margin: 0 auto;
}

.logo {
    width: 220px;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.3s ease-in;
    z-index: 99999;
    top: 22px;
}

nav {
	position: absolute;
	padding: 0px 20px;
	background: rgba(0,0,0,0.3);
	top: 0;
	left:0;
	text-align: center;
	right: 0;
	z-index: 9999;
}

.nav-spacer {
    width: 200px;
}

nav li {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 10px;
}

nav li::before {
    content: "";
    border-left: 1px solid rgba(0,0,0,0.3);
    top: 0;
    bottom:0;
    margin: 0 1px 0 0;
    padding: 13px 0;
    background: rgba(255,255,255,0.3);
    position: relative;
}

nav li:nth-of-type(5n):before,
nav li:first-of-type:before {
	/*display: none;*/
}

nav a {
	font-size: 16px;
	/*text-transform: uppercase;*/
	color: var(--white);
	padding: 0 0 0 20px;
	transition: all 0.3s ease-in;
}

nav a:hover{
	opacity: 0.8;
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.utility-nav {
    position: absolute;
    top: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1050px;
    padding: 0;
    display: block;
    left:0;
    right:0;
    margin: 0 auto;
}

.utility-social {
    position: absolute;
    left:0;
}

.utility-menu {
    position: absolute;
    right:0;
}

.utility-social a {
	color: var(--white);
	font-weight: 600;
	font-size: 15px;
	margin: 0 10px 0 0;
	transition: all 0.3s ease-in;
}

.utility-menu a {
	color: var(--white);
	font-weight: 600;
	font-size: 13px;
	transition: all 0.3s ease-in;
}

.utility-social a:hover,
.utility-menu a:hover {
	opacity: 0.5;
	color: var(--white);
	transition: all 0.3s ease-in-out;
}


/*
==========================================================================
NAV WRAPPER
==========================================================================
*/

.nav-wrapper {
  background-color: var(--green);
  box-shadow: 2px 0px 5px 0px rgba(0,0,0,0.5);
  height: 100%;
  padding: 80px 30px 30px 30px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: visibility 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, visibility 0.5s;
  transition: transform 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  visibility: hidden;
  width: 300px;
  overflow-x: hidden;
  z-index: 999999999999999;
}

.simplebar-placeholder {
    height: auto !important;
}

.side-item {
	position: relative;
}

.nav-wrapper a {
	-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
	font-size: 16px;
	font-weight: 700;
	display: block;
	/*text-transform: uppercase;*/
	color: var(--white);
	padding: 10px;
	transition: all 0.3s ease-in;
}

.nav-wrapper a:hover {
	color: var(--white);
	background-color: rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease-in-out;
}

.nav-button {
	display: inline-block;
	font-weight: 700;
}

.nav-button .fa-caret-down {
    float: right;
    margin: 5px 5px 0 0;
}

.nav-button:hover {
	opacity: 0.8;
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.nav-wrapper .nav-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
	transition: all 0.3s ease-in;
}

.nav-wrapper .nav-buttons:hover {
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.nav-visible .nav-wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

.nav-wrapper .nav {
  position: relative;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
    padding: 20% 25% 0 25%;
}

.nav-visible .nav {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}


.nav-wrapper .nav a:focus, .nav-wrapper .nav a:hover {
  text-decoration: none;
	transition: all 0.3s ease-in-out;
	color: var(--yellow);
}

.button-lines {
	font: 16px Helvetica, Arial, sans-serif;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  padding: 1rem 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.menutag {
	margin: 5px 0 0 15px;
    vertical-align: middle;
    display: inline-block;
    font-size: 16px;
    text-transform: none;
	color: var(--white);
}

.nav-visible .lines, .nav-visible .lines:after, .nav-visible .lines:before {
	color: var(--white);
}

.nav-visible .menutag {
	color: var(--white);
    margin: 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

.nav-visible .lines::after, .nav-visible .lines::before {
    height: 0.2rem;
    width: 2rem;
}


.close {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 0 10px;
 	line-height: 12px;
}

.close img {
	width: 15px;
}

.closer {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
	transition: all 0.3s ease-in-out;
    position: absolute;
    right: 50px;
    top: 50px;
}

.closer:hover {
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
}

.nav-wrapper .parent ul {
	display: none;
	padding: 10px 0;
	background: var(--blue);
}

.nav-wrapper .parent {
	position: relative;
	cursor: pointer;
}

.nav-wrapper .parent:after {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 100px;
	text-align: right;
	color: var(--white);
	cursor: pointer;
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.nav-wrapper .minus:after {
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.nav-wrapper li {
	padding: 0px;
}

.nav-wrapper .parent ul a {
	color: var(--white);
	padding: 5px 0 5px 20px;
}

.nav-wrapper .parent ul a:hover {
	color: var(--white);
}

.nav-wrapper .parent ul li {
	border: 0!important;
}

/*
==========================================================================
HOME
==========================================================================
*/

.hero {
	height: 650px;
	width: 100%;
	display: block;
	position: relative;
}

.hero:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
    background: rgba(0,0,0,0.3);
}

.page-hero {
	height: 550px;
	width: 100%;
	display: block;
	position: relative;
}

.page-hero:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
    background: rgba(0,0,0,0.3);
}

.small-hero {
    height: 200px;
	width: 100%;
	display: block;
	position: relative;
}

.small-hero:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
    background: rgba(0,0,0,0.3);
}

.hero-inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
}

.page-title {
color: var(--white);
font-size: 42px;
font-weight: 700;
left:0;
max-width: 1170px;
margin: 0 auto;
padding: 0 20px;
position: absolute;
/*letter-spacing: 6px;
text-transform: uppercase;*/
top: 50%;
right:0;
transform: translateY(-50%);
}

.grey-section {
	background: var(--grey);
	padding: 75px 0;
	/*margin: 30px auto;*/
}

.grey-section h1,
.grey-section .centered {
	/*color: var(--blue);*/
}

.green-section {
	background: var(--green);
	padding: 75px 0;
}

.yellow-section {
	background: var(--yellow);
	padding: 75px 0;
}

.red-section {
	background: var(--red);
	padding: 75px 0;
}

.home-slider {
	margin: 0 auto;
}

.home-slider .inner {
	max-width: 1100px;
}

.hs-photo img {
	width: 100%;
	max-width: 800px;
	height: auto;
}

.hs-content {
    background: var(--white);
    padding: 35px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    transform: translateY(-50%);
}

.hs-content h5 {
	text-transform: uppercase;
	color: var(--green);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
}

.hs-content a {
	text-transform: uppercase;
	color: var(--green);
	font-weight: 700;
	transition: all 0.3s ease-in;
}

.hs-content a:hover {
	color: var(--red);
	transition: all 0.3s ease-in-out;
}

.centered {
    color: var(--white);
	margin: 0 0 30px 0;
	text-align: center;
}

.ys-photo {
	right:0;
	position: relative;
}

.ys-photo img {
	width: 100%;
	float: right;
	max-width: 800px;
	height: auto;
}

.ys-content {
    background: var(--white);
    padding: 35px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 35%;
    transform: translateY(-50%);
}

.ys-content h5 {
	text-transform: uppercase;
	color: var(--yellow);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
}

.ys-content a {
	text-transform: uppercase;
	color: var(--yellow);
	font-weight: 700;
	transition: all 0.3s ease-in;
}

.ys-content a:hover {
	color: var(--red);
	transition: all 0.3s ease-in-out;
}

.ys-date {
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 15px 20px;
    position: absolute;
    top: 0;
    right: 0;
}

.y-day {
	display: block;
	text-align: center;
	margin: 0 0 -5px 0;
}

.y-date {
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 -5px 0;
}

.y-month {
	display: block;
	text-align: center;
	font-weight: 700;
}

.all-link {
	text-align: center;
	margin: 60px 0 0 0;
	font-size: 16px;
	font-weight: 700;
	display: block;
	text-transform: uppercase;
	color: var(--white);
	transition: all 0.3s ease-in;
}

.all-link:hover {
	color: var(--blue);
	transition: all 0.3s ease-in-out;
}

.news-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
}

.news-item img {
	display: block;
	margin: 0;
	width: 100%;
	height: auto;
}

.news-inner {
    background: var(--white);
    text-align: center;
    padding: 20px;
}

.news-inner h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
}

.news-inner a {
	color: var(--red);
	font-weight: 700;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.news-inner a:hover {
	color: var(--green);
	transition: all 0.3s ease-in-out;
}

.red-section .all-link {
	margin: 30px 0 0 0;
}

.prospect {
	padding: 20px;
}

.prospect .inner {
	max-width: 1000px;
}

.pros {
    position: absolute;
    left: 0;
    top: -55px;
}

.pros-content {
	padding: 30px 0 30px 160px;
}

.prospect h4 {
	color: var(--light-blue);
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 10px 0;
}

.prospect a {
	text-transform: uppercase;
	font-size: 18px;
	color: var(--light-blue);
	margin: 0 20px 0 0;
	transition: all 0.3s ease-in;
}

.prospect i {
	color: var(--red);
	padding: 0 5px 0 0;
}

.prospect a:hover {
	color: var(--red);
	transition: all 0.3s ease-in-out;
}

.image-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-items: stretch;
    align-items: inital;
    margin: 0 auto;
}

.image-grid-five {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-items: stretch;
    align-items: inital;
    margin: 0 auto;
}

.image-grid-five .cta-block {
    max-height:225px;
}

.white-section {
	width: 75%;
	margin: 50px auto;
}

.white-sections {
	width: 100%;
	margin: 75px auto;
}

.white-sections .hs-content {
	background: var(--red);
	color: var(--white);
}

.white-sections a,
.white-sections h5 {
	color: var(--white);
}

.white-sections a:hover {
	color: var(--yellow);
}

.white-sections .all-link {
	color: var(--red);
}

.white-sections h2 {
	color: var(--red);
}

.white-section .image-grids {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
    margin: 0 0 30px 0;
}

.white-section .image-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
    margin: 0;
}

.im-hover::before {
    content: "";
    width: 50px;
    height: 2px;
    background: white;
    top: -8px;
    left: 0;
    right: 0;
    display: block;
    position: relative;
    z-index: 99999;
    text-align: center;
    margin: 0 auto;
}

.im-hover {
	color: #fff;
	display: none;
    left:0;
	margin: 0 auto;
	position: absolute;
    right:0;
    text-align: center;
    top: 55%;
	width: 90%;
	z-index: 99;
}

.im-item:hover .im-hover {
	display: block;
}

.im-item:hover .im-title {
	top:40%;
}

.im-item {
	background-color: var(--green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.im-item img {
	display: block;
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.im-item:hover {
	border: 5px solid var(--green);
}

.im-item:hover img {
	transform: scale(1.2);
	opacity: 0.3;
}

.im-item img {
	background-color: var(--green);
	transition: transform 0.5s ease;
}

.im-item:before {
	content: "";
	background: rgba(0,0,0,0.3);
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
}

.im-title {
	color: var(--white);
	position: absolute;
	/*text-transform: uppercase;*/
	text-align: center;
	padding: 20px;
	margin: 0 auto;
	left:0;
	right:0;
	font-size: 18px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.5s ease;
}

.nl-section {
	text-align: center;
}

.nl-button {
	padding: 10px 50px;
	display: inline-block;
	/*text-transform: uppercase;*/
	color: var(--white);
	background: var(--green);
	border: 2px solid var(--white);
	border-radius: 10px;
	text-align: center;
	margin: 0 15px;
	transition: all 0.3s ease-in;
}

.nl-button:hover {
	color: var(--green);
	background: var(--white);
	transition: all 0.3s ease-in-out;
}

.pre-footer {
	padding: 30px 0;
}

.social-foot {
	float: left;
	/*text-transform: uppercase;*/
}

.social-foot a {
	margin: -5px 0 0 10px;
	font-size: 20px;
	display: inline-block;
	vertical-align: middle;
}

.social-foot .fa-twitter {
	color: var(--light-blue);
}

.social-foot .fa-facebook-f {
	color: var(--blue);
}

.social-foot .fa-youtube {
	color: var(--red);
}

.social-foot .fa-instagram {
	color: var(--green);
}

.back-to-top {
	float: right;
	color: var(--text);
	/*text-transform: uppercase;*/
}

.back-to-top i {
	color: var(--red);
	padding: 0 0 0 5px;
}

.home .inner.center {padding:60px 20px !important; text-align:left; background-image: url("../images/6-background.png"); background-position: right; background-repeat: no-repeat; background-size:contain;}

/*
==========================================================================
FOOTER
==========================================================================
*/

footer {
	padding: 25px 0 0 0 !important;
	background: var(--blue);
	font-size: 13px;
}

footer hr{
	background-color: rgba(255, 255, 255, .1);
	border: none;
	height:2px;
	margin: 0px;
}

.footer-instagram {
	display: block;
	padding: 0;
}

.footer-instagram img {
	width: 100%;
	height: auto;
}

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: start;
    margin: 0 auto;
    padding: 50px 0;
	/*border-bottom: 2px solid var(--border);*/
}

.foot-col img {
    width: 100%;
   	max-width: 160px;
}

.foot-col h6 {
	font-weight: 700;
	/*text-transform: uppercase;*/
	color: var(--white);
	/*letter-spacing: 1px;*/
	font-size: 13px;
	margin: 0 0 5px 0;
}

.foot-col a {
	color: var(--white);
	font-size: 13px;
	transition: all 0.3s ease-in;
}

.foot-col a:hover {
/*	color: var(--yellow);*/
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.foot-col p {
	color: var(--white);
	margin: 0 0 5px 0;
}

.social-bubbles {
	margin: 20px 0;
}

.social-bubbles ul li{
	display:inline;
}

.social-bubbles a {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: var(--white);
    border-radius: 50%;
    padding: 0px;
    font-size: 20px;
    color: var(--text);
    text-align: center;
	line-height: 40px;
    margin: 0 10px 10px 0;
	transition: all 0.3s ease-in;
}

.social-bubbles a:hover {
	background: var(--text);
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

/*
==========================================================================
PAGES
==========================================================================
*/

.left-col {
	float: left;
	width: 65%;
	margin: 0 30px 0 0;
}

.right-col {
	float: left;
	width: 30%;
}

.quote {
	position: relative;
	margin: 30px 0;
	font-size: 15px;
	padding: 0 0 0 75px;
}

.quote p {
	margin: 0 0 10px 0;
}

.quote-author {
	font-weight: 700;
}

.quote::before {
    content: "";
    background: url('../images/quotes.svg');
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0px;
    top: 5px;
}

.whoframed {
    margin: 0px auto 30px auto;
	padding-top:0px !important;
}

.button {
	display: inline-block;
	padding: 15px 30px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 3px;
	/*text-transform: uppercase;*/
	color: var(--white);
	background: var(--blue);
	margin: 0 10px 10px 0;
	border:0;
	cursor: pointer;
	transition: all 0.3s ease-in;
}

.button:hover {
	background: var(--light-blue);
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.page-table {
    background-color: var(--white);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    margin: 0 0 2px 0;
}

.thead {
	background: var(--blue);
	padding: 5px 0;
	/*text-transform: uppercase;*/
	font-weight: 600;
	color: var(--white);
	text-align: left;
}

.mobcoltitle {
	display: none;
}

.tcol {
	padding: 10px;
}

.block-table {
	display: block;
	margin: 20px auto;
}

.widget {
	padding: 30px;
	margin: 0 0 30px 0;
	background: var(--white);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}

.widget img {
	margin: 0 0 10px 0;
}

.widget ul {
	margin: 10px 0 20px 0;
}

.widget li {
	position: relative;
	/*padding: 0 0 0 15px;*/
	font-size: 14px;
}

.widget li:before {
	position: absolute;
	left: 0;
	top: 0;
	color: var(--green);
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.widget a {
	color: var(--text);
	transition: all 0.3s ease-in;
}

.widget a:hover {
	color: var(--green);
	transition: all 0.3s ease-in-out;
}

.taggs li {
	display: inline-block;
	margin: 0 10px 10px 0;
	/*text-transform: uppercase;*/
}

.taggs a {
	color: var(--light-blue);
}

.taggs a:hover {
	color: var(--green);
}

.widget-view {
	color: var(--green)!important;
	font-weight: 800;
	font-size: 14px;
	/*letter-spacing: 1px;*/
	/*text-transform: uppercase;*/
	transition: all 0.3s ease-in;
}

.widget-view:hover{
	color: var(--text)!important;
	transition: all 0.3s ease-in-out;
}

.text-in {
	color: var(--text);
	/*font: 13px 'MuseoSans_500', Helvetica, Arial, sans-serif;*/
	border-radius: 5px!important;
	padding: 15px;
	background: var(--white);
	border: 1px solid var(--light-grey);
	width: 100%;
	margin: 0 0 10px 0;
}

.fifty {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-items: stretch;
    align-items: start;
    margin: 0 auto;
}

form {
	display: block;
	margin: 30px auto;
}

.full-image {
	margin: -25px auto 50px auto;
}

.full-image img {
	width: 100%;
	height: auto;
}

.events-title {
	float: left;
	width: 60%;
	margin: 0 5% 0 0;
}

.events-title h1 {
	margin: 0;
}

.events-filter {
	float: right;
	width: 35%;
	text-align: right;
	margin: -5px 0 0 0;
}

.events-filter span {
	display: inline-block;
}

.events-slide {
	margin: 50px auto;
}

.events-photo {
	right: -20px;
	position: relative;
}

.events-photo img {
	width: 100%;
	float: right;
	max-width: 850px;
	height: auto;
}

.events-content {
    background: var(--white);
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 35%;
    font-size: 16px;
    transform: translateY(-50%);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}

.events-slide .inner {
	padding: 0;
}

.events-content h5 {
	text-transform: uppercase;
	color: var(--light-blue);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1px;
}

.events-content a {
	text-transform: uppercase;
	color: var(--light-blue);
	font-weight: 700;
	transition: all 0.3s ease-in;
}

.events-content a:hover {
	color: var(--green);
	transition: all 0.3s ease-in-out;
}

.events-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: start;
    margin: 0 auto;
}

.event-col {
	position: relative;
	background: var(--white);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}

.event-content {
	padding: 25px 20px 25px 30px;
}

.event-col h4 {
	margin: 0 0 10px 0;
}

.event-col h5 {
	font-size: 13px;
	margin: 0 0 10px 0;
}

.event-col a {
	/*color: var(--light-blue);
	text-transform: uppercase;*/
	font-weight: 700;
	transition: all 0.3s ease-in;
}

.event-col a:hover {
	/*color: var(--corporateblue);*/
	transition: all 0.3s ease-in-out;
}

.event-meta {
	margin: 0 0 10px 0;
}

.event-meta i {
	/*color: var(--light-blue);*/
}

.pagination {
	margin: 50px 0 0 0;
}

.pagination a {
	background: var(--blue);
	border: 1px solid var(--blue);
	color: var(--white);
	padding: 15px;
	border-radius: 5px;
	transition: all 0.3s ease-in;
}

.pagination a:hover {
	background: var(--grey);
	border: 1px solid var(--blue);
	color: var(--blue);
	transition: all 0.3s ease-in-out;
}

.narrow-col {
	width: 70%;
	margin: 0 auto;
}

.triple-col {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: start;
    margin: 50px auto 0 auto;
}

.triple-col .button {
	text-align: center;
}

.search-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
	background: rgba(14,46,79,0.6);
	z-index: 99999999;
}

input#searchsubmit {font-family:'Bricolage Grotesque', sans-serif; }

.so-form {
	width: 50%;
	min-width: 300px;
 	position: relative;
  	top: 50%;
  	transform: translateY(-50%);
}

.so-txt {
	width: 100%;
	padding: 30px;
	background: var(--white);
	color: var(--text);
	font: 22px 'MuseoSans_500', Helvetica, Arial, sans-serif;
	border:0;
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}

.so-go {
	position: absolute;
	right:0;
	font-size: 22px;
	padding: 30px;
	border:0;
	bottom:0;
	top:0;
	cursor: pointer;
	color: var(--white);
	background: var(--blue);
	transition: all 0.3s ease-in;
}

.so-go:hover {
	background: var(--green);
	transition: all 0.3s ease-in-out;
}

.news-slide {
	margin: 50px auto;
}

.news-photo {
	position: relative;
}

.news-photo img {
	width: 100%;
	max-width: 850px;
	height: auto;
}

.news-content {
    background: var(--white);
    padding: 46px 45px 43px 50px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 35%;
    font-size: 16px;
    transform: translateY(-50%);
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
}
.news-content p, .event-content p, .hs-content p, .news-inner p{
	line-height: 1.5em !important;
	margin-bottom: 10px;
}

.news-slide .inner {
	padding: 0;
}

.news-content h5 {
	/*text-transform: uppercase;
	color: var(--light-blue);*/
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.news-content a {
	/*text-transform: uppercase;
	color: var(--light-blue);*/
	font-weight: 700;
	transition: all 0.3s ease-in;
}

.news-content a:hover {
	color: var(--corporateblue);
	transition: all 0.3s ease-in-out;
}

.comment-section {
	margin: 30px auto;
}

/*
==========================================================================
SELECTS
==========================================================================
*/

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--white);
  border:1px solid var(--light-grey)!important;
  border-radius: 5px;
  color: var(--text);
  border-left: 0;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: inline-block;
  z-index: 9;
  font-family: inherit;
  font-size: 13px;
  margin: 0 0 0 10px;
  font-weight: 600;
  font-weight: normal;
  line-height: 40px;
  outline: none;
  padding: 2px 0 2px 20px;
  width: 100%;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 150px; }

.nice-select:hover {
    background: var(--ver-light-grey);
}

.nice-select:active, .nice-select.open, .nice-select:focus {
	border-color:  var(--light-grey);
}

.nice-select:after {
    content: '\f078';
  	font-family: 'Font Awesome 5 Free';
  	font-style: normal;
  	font-weight: 900;
  	color: var(--text);
    display: block;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 3px;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color:  var(--light-grey);
    color: var(--text);
    pointer-events: none;
}

.nice-select.disabled:after {
	border-color: var(--light-grey);
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
    width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

 .nice-select .list {
	height: 200px;
	width: 200px!important;
	overflow-y: scroll!important;
  	font-size: 13px;
	width: 100%;
    background-color: var(--white);
    color: var(--text);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 1px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
	z-index: 9;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
	transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    z-index: 999;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color:  var(--very-light-grey);
 }

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: var(--text);
	cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.nice-select {
    z-index: auto;
}

/*
==========================================================================
MEDIA QUERIES
==========================================================================
*/



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

 nav li {
    padding: 10px 2px;
 }


.utility-nav {
    max-width: 85%;
    width: 85%;
}

.hs-content {
    right: 20px;
}

.ys-content {
    left: 20px;
}

.news-content,
.events-content {
    right: 20px;
}

.white-section {
	width: 100%;
}

}


@media screen and (max-width: 990px) {
	
 .narrow-col {
 	width: 100%;
 }

 nav {
	display: none;
 }


.page-title {
    top: 80%;
}

 .utility-nav {
 	top: 20px;
 }

.news-content,
.events-content {
    width: 50%;
}


.white-section .image-grids {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	
.news-grid {grid-template-columns: 1fr 1fr;}
.news-grid .news-item:last-child {display: none;}


}


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

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

.image-grid, .image-grid-five {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.pros, .lower-left div.social-company, a.socs, .home .hs-content p, .home .news-inner p {
    display: none;
}
.home .hs-content { text-align: center;}
	
.lower-left p.search {margin-left: 0px;}
.hero-slider-container .video-holder {margin: 0px !important;}
.hero-slider-container video {display:block; object-fit:cover; min-height: 400px;}
.logo {top:20px;}
.grey-section {margin-top:0px; margin-bottom: 0px;}
.grey-section + .grey-section {padding-top: 30px !important;}
.page-hero, .hero {height: 400px !important;}
#lower-menu {top: 70px !important;}
	

.news-content {
    padding: 20px;
}

.pros-content {
    padding: 30px 0;
    text-align: center;
}

.pros-content a {
	display: block;
	margin: 0 0 10px 0;
}

.nl-button {
	display: block;
	margin: 10px auto;
}

.left-col {
	float: none;
	display: block;
	width: 100%;
	margin: 0 0 30px 0;
}

.right-col {
	float: none;
	width: 100%;
	display: block;
	margin: 0;
}

.events-filter {
	float: none;
	width: 100%;
	margin: 20px 0 0 0;
	text-align: center;
}

.events-title {
	float: none;
	width: 100%;
	margin: 0;
	text-align: center;
}

.new-content,
.events-content {
    padding: 25px;
    position: relative;
    top: 0;
    left:0;
    right: 0;
    width: 100%;
    transform: translateY(0%);
}

.new-photo img {
	display: block;
	position: relative;
	margin: 0;
}

.new-photo,
.events-photo {
    right: 0;
    position: relative;
}

.im-hover {
    top: 55%;
}

.white-section .image-grids,
.white-section .image-grid,
.white-section .image-grid-five
	{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

}




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

.triple-col {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-content,
.ys-content,
.hs-content {
    padding: 25px;
    position: relative;
    top: 0;
    left:0;
    right: 0;
    width: 100%;
    transform: translateY(0%);
}

.news-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: inital;
}

.events-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.news-slide,
.events-slide {
    margin: 30px auto;
}

.news-photo {
    position: relative;
    margin: 0px 0 -6px 0;
    display: block;
}
.wrapper {margin: 0px; padding-bottom: 0px;}
	

}




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

.logo {
    width: 150px;
    height: auto;
}

.back-to-top,
.social-foot {
	float: none;
	text-align: center;
	margin: 10px auto;
	width: 100%;
	display: block;
}

.page-title {
    top: 60%;
}

.page-table  {
    grid-template-columns: 1fr;
}

.thead {
	display: none;
}

.mobcoltitle {
	display: inline-block;
	font-weight: 600;
}

}


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

.footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

.first-fg {

}
	
.footer-grid .foot-col {padding:0 0 20px 0;}
	.footer-grid .foot-col:last-child {padding-bottom:0px;}

.triple-col {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.so-txt,
.so-go {
	font-size: 16px;
}
.hideformobile {display:none}
.social-sharing {justify-content: center;}

}


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

 .container {min-width:240px; width:100%;}
.hideformobile {display:none}
.social-sharing {justify-content: center;}
 
}