:root {
	--dark-blue: #144266; /* logo background blue */
	--light-blue: #1783DD; /* button background blue */
	--main-text: #1A1818;
	--charcoal-text: #504D4D;
	--charcoal: #3F3F3F;
	--copyright-background-color: #262626;

	--primary-color-hex: var(--main-text);
	--primary-color: var(--primary-color-hex); /* charcoal text */
	--primary-color-text: #fff;

	--secondary-color-hex: var(--dark-blue);
	--secondary-color: var(--secondary-color-hex); /* blue */
	--secondary-color-text: #fff;

	--blue: var(--dark-blue); /* text blue */
	
	--section-padding-top: 3rem;
	--section-padding-bottom: 3rem;
	
	--footer-background-color: var(--charcoal);
	--footer-text-color: #fff;

	
	--font-primary: 'Raleway', Helvetica, Arial, sans-serif;
	--font-secondary: 'Montserrat', Arial, Helvetica, sans-serif;

	--header_spacer_height: 105px;
	--header_spacer_height: 0;
}


/* Default Styles
   ========================================================================== */


article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:active,
a:hover,
a:visited:hover,
a:active:hover {
    text-decoration: none;
    outline-width: 0
}

b,
strong {
    font-weight: inherit
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

a img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

.p_form {
	line-height: 1.5 !important;
}

.p_form .fld_check input, .p_form .fld_radio input {
	margin-top: 5px !important;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button,
input {
    overflow: visible
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

html {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  /* Page Layout & Utility
   ========================================================================== */

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  background: #F4F5F7;
  -ms-font-feature-settings: 'liga' 1, 'kern';
   -o-font-feature-settings: 'liga' 1, 'kern'; /* FF old */
      font-feature-settings: 'liga' 1, 'kern';
}

.main-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 0;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 400;
  color: var(--primary-color);
}

.wide {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.container {
  position: relative;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}


.mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .wide, .main-container {
    width: 100%;
    min-width: 0;
  }

/*
  .container {
    width: 540px;
  }
*/
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*  Header
   ========================================================================== */
#header_spacer {
	position: relative;
	height: var(--header_spacer_height);
}

.primary {
	position: fixed;
	display: block;
	z-index: 3000;
	transition: .3s;
}

	.primary.scrolled {
/*
		padding-top: 10px;
		padding-bottom: 10px;
*/
		background-image: none;
		background-color: var(--charcoal);
		box-shadow: 0 -5px 10px #000;
	}

.primary > .container {
  width: 90%;
  max-width: 850px;
  padding-left: 0;
  padding-right: 0;
  vertical-align: middle;
}

#logo {
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: auto;
  transition: .25s ease-out;
  line-height: 1;
  vertical-align: middle;
  z-index: 200;
  pointer-events: none;
}

#logo a {
	position: relative;
	display: block;
	pointer-events: auto;
}

#logo img {
/*
	padding: 20px 0 10px;
	max-width: 290px;
	height: auto;
*/
	position: relative;
	height: 100%;
	margin: 0 auto;
	display: block;
	transition: .3s;
}

/*
.site-header.wide {
	border-bottom: 15px solid var(--orange);
}
*/

@media (max-width: 1024px) {
/*
	:root {
		--header_spacer_height: 74px;
	}
*/

	#logo img {
		max-width: 170px;
	}
  .primary {
/*     padding: 10px 0; */
    display: block;
  }
}

/*
@media (max-height: 600px) {
  .primary {
    position: relative;
    padding: 0;
  }
  
  	.primary.scrolled {
	  	padding: 0;
  	}
  
  .primary > .container {

    width: 100%;
    padding: 0;
  }
  
  #logo {
    float: left;
    display: block;
    margin-left: 2%;
    padding: 12px 0;
    width: 70%;
    max-width: 300px;
    
    float: none;
  }
  
  	#logo img {
	  	width: 100%;
  	}
}
*/
  
/*  Navigation
   ========================================================================== */



/*  General Content Styles
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#content .cb-body img {
  max-width: 100%;
  height: auto;
}


.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

a.btn {
	font-size: 21px;
}

a.btn, a.btn:visited,
span.btn {
	position: relative;
	padding: 5px 20px;
	text-align: center;
	text-decoration: none;
	transition: all .4s;
	opacity: 1;
	display: inline-block;
	text-transform: capitalize;
}


	a.btn.blue, a.btn.blue:visited,
	span.btn.blue {
	    color: #fff;
	    background: var(--blue);
	}

		a.btn.blue:hover, 
		a.btn.blue:visited:hover,
		span.btn.blue:hover {
		    color: #fff;
		    background: var(--charcoal);
		}

	a.btn.charcoal, a.btn.charcoal:visited,
	span.btn.charcoal {
	    color: #fff;
	    background: var(--charcoal);
	}

	a.btn.white, a.btn.white:visited,
	span.btn.white {
	    color: var(--blue);
	    background: #fff;
	}

/*
  	a.btn:hover,
  	span.btn:hover {
		opacity: 1;
	}
*/


/*  Footer
   ========================================================================== */

#bottom {
	background-color: var(--footer-background-color);
	min-height: 300px;
	height: auto;
	padding-top: var(--section-padding-top);
}

	#bottom > .container {
		width: 95%;
		max-width: 1500px;
	}

#bottom > .container > div {
	width: 50%;
}

#bottom .address_social_container {
	justify-content: flex-start;
	align-items: center;
	padding: 35px 10px 60px;
}

#bottom .columns {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 40px 40px 60px;
	flex: 1 1 auto;
}

.columns .col {
	min-height: 150px;
	height: auto;
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.col h5 {
	text-transform: uppercase;
	margin: 0 0 1em;
	font-size: 1rem;
	color: var(--footer-text-color);
}

	.col h5 a {
		color: var(--footer-text-color);
		text-decoration: none;
	}

		.col h5 a:hover {
			text-decoration: underline;
		}

.col p {
    font-size: 14px;
    line-height: 1.25;
    margin: 0 0 .75em;
}

	.col p a {
		color: var(--footer-text-color);
		text-decoration: none;
	}
	
	.col p a:hover {
		text-decoration: none;
		color: var(--light-blue);
	}

.site-footer a {
		color: var(--footer-text-color);
		text-decoration: none;
}

.site-footer .location-info {
	position: relative;
	margin-bottom: 30px;
}
	.site-footer .location-info p {
	    margin: 0;
	    font-family: var(--font-primary);
	    font-size: 20px;
	    font-weight: 500;
	    color: var(--footer-text-color);
	    text-transform: uppercase;
	    line-height: 1.5;
		white-space: nowrap;
		letter-spacing: 2px;
	}

	.site-footer .contact-info {
		position: relative;
		margin-top: 3em;
	}

		.site-footer .contact-info p {
		    margin: 0;
		    font-size: 1.4rem;
		    font-weight: 600;
		    color: var(--footer-text-color);
		    text-transform: uppercase;
		    line-height: 1.2;
			white-space: nowrap;
		}
		
			.contact-info a[href^='tel'] {
				font-size: 35px;
				font-weight: 400;
			}
	
			.contact-info a[href^='mailto:'] {
				font-size: 18px;
			}
	

.site-footer {
	background-image: var(--background-image);
	background-position: center bottom;
	background-size: cover;
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  overflow: hidden;
  padding: 0;
}

.footer-row {
  margin: 5em auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row nowrap;
  -webkit-flex-flow: row nowrap;
          flex-flow: row;
  -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.footer-column {
  font-size: 1.4em;
  line-height: 1.6;
}

.footer-column p {
  margin: .2em 0;
}

.footer-column a:not(.button) {
  color: #fff;
}

.footer-column strong {
  font-size: 1.14em;
}

.footer-column strong,
.footer-column strong a {
  color: #dea92c !important;
  font-weight: 600;
}

.footer-column a:not(.button):not(.social-link):hover {
  text-decoration: underline;
}

.footer-column a.button {
  font-size: 14px;
  margin: 1em 0;
}

#search {
  position: relative;
  width: 260px;
  margin: 0;
}

.search-input {
  position: relative;
  width: 100%;
  padding: 8px 48px 8px 8px;
  font-size: 16px;
  line-height: 16px;
  background: #404140;
  color: #fff;
  outline: 0;
  box-sizing: border-box;
}

.search-btn,
.search-input {
  margin: 0;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
}

.footer-info {
  padding: 2em 0;
}

	.footer-info::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--copyright-background-color);
	}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  display: inline-block;
  margin: 10px 0 0 50px;
  font-family: var(--font-primary);
  font-size: 10px;
  color: #fff;
  vertical-align: middle;
}

.footer-copyright a,
.footer-copyright a:visited{
  color: #fff;
  text-decoration: none;
} 



/*
section#section-social {
	padding-top: 2.4rem;
	padding-bottom: 2.4rem;
	background-color: var(--footer-background-color);
	border-bottom: rgba(255, 255, 255, 0.16) solid 1px;
}
*/

/*
	#section-social img {
		height: 60px;
	}
*/
	
	.social_container {
		color: var(--primary-color);
		font-size: 30px;
		display: flex;
/* 		gap: .5em; */
	}
	
		.social_container a {
			margin: 0 .25em;
			color: var(--primary-color-text);
			text-decoration: none;
			transition: .2s;
		}
		
			.social_container a:not(:first-child) {
				padding-left: 10px;
			}
		
			.social_container a:hover {
				color: var(--light-blue);
			}
	
@media (max-width: 1024px) {
	.col p {
		font-size: 17px;
	}
	
	a.btn {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	
	#bottom > .container {
		width: 95%;
		align-items: center;
	}
	
		#bottom > .container > div {
			width: 100%;
			align-items: center;
		}

		.site-footer .contact-info p {
			text-align: center;
		}

	.columns .col {
	    width: 90%;
	    margin: 0 auto 2rem;
	}
	.columns .col.column-one {
	    width: 90%;
	    margin-bottom: 30px;
	}
	
	#bottom .columns {
	    display: flex;
	    justify-content: center;
	    flex-direction: column;
	    text-align: center;
	}
	
	#search {
	    position: relative;
	    width: 100%;
	    margin: 0;
	}


	body.modal_active #modal_container {
		overflow: hidden;
	}
	
	#modal_container[data-modal] .modal_window {
		width: 100%;
		height: 100%;
		top: 0;
		padding-bottom: 0;
	}
	
	#modal_container .modal_window .modal_body {
		overflow: auto;
	}
}	
	
@media (max-width: 640px) {
  .footer-row {
    -ms-flex-flow: column;
        -webkit-flex-flow: column;
            flex-flow: column;
    text-align: center;
  }
  
  	.social_container {
	  	font-size: 30px;
  	}

	.site-footer .location-info p {
		font-size: 1.75rem;
		text-align: center;
		white-space: normal;
	}



  .footer-column {
    margin: 1em 0;
    font-size: 1.4em;
    line-height: 2;
  }
  
  #bottom .floating-icon-container {
	  width: 50%;
	  max-width: 160px;
  }

  #search {
    width: 100%;
  }


  .footer-copyright {
    text-align: center;
  }

  .footer-copyright p {
    display: block;
    margin: 20px auto;
  }

	#section-social .right {
		text-align: right;
		justify-content: center;
		font-size: 32px;
		color: #fff;
		text-align: center;
	}
  

  
}
