﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

img {
	max-width: 100%;
}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/
.grey {
	background-color: #212227;
}


/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}



/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

body {
	font-family: 'Barlow', sans-serif;
}

a:link, a:visited, a:active {
	text-decoration:none;
	color: #000000;
	font-weight: 600;
}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}

.items-right a:link, a:visited, a:active {
    text-decoration: none;
    color: #1467ae;
    font-weight: 600;
}
.col-right a:visited {
    color: #000000;
}
.width80 {
	width: 80%;
	margin: 0 auto;
}
.width70 {
	width: 70%;
	margin: 0 auto;
}

.flex-container {
	align-items: center;
	justify-content: space-between;
}

/*--- HEADER STYLES ---------------------*/
header {}

.head {
    display: flex;
	margin: 12px 0;
}

.head-contact {
    display: flex;
}

.head .flex-container {
	display: flex;
}

.logo img {
	width: 150px;
}

.head-location {
    margin-right: 100px;
	display: flex;
}
.head-phone {
    display: flex;
}
.head-icon {
    margin: auto 20px;
	background-color: #eaeaea;
    padding: 10px;
    border-radius: 3px;
    color: #1467ae;
}


/*---BODY--------------------------------*/

.hero {
    position: relative;	
}
.hero-img {
	background-image: url("../siteart/home-hero.jpg");
	background-position: center;
	background-color: #000;
    width: 100%;
    height: 640px;
    background-size: cover;
    filter: brightness(80%);
}
.hero-cta {
    position: absolute;
    top: 37%;
    text-align: left;
}
.hero-txt h1 {
	font-size: 60px;
    color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -5%);
    width: 100%;
    position: relative;
	text-transform: capitalize;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
button.hero-btn {
    text-transform: uppercase;
    background-color: #1467ae;
    margin: 20px 0;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
}
button.hero-btn:hover {
    background-color: #212227;
	transition: .3s ease-in-out;
}
.hero-cta a:link, a:active {
    color: #ffffff;
    letter-spacing: 1px;
}
button.hero-btn a {
    color: #ffffff;
}

.home-container {
    background-color: #eaeaea;
	padding: 100px 0;
}
.container-wht {
    background-color: #ffffff;
	display: flex;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.container-txt {
	flex: 1;
}
.container-title h2 {
    text-transform: capitalize;
    color: #1467ae;
    font-size: 48px;
}
.container-sub h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
	margin: 20px 0 45px
}
.container-list {
    display: inline-grid;
    margin-right: 25px;
	text-transform: capitalize;
}
.container-list h4 {
	text-transform: uppercase;
    font-size: 16px;
	margin: 15px 0;

}
i.fa-solid.fa-circle-chevron-right {
    color: #1467ae;
    align-self: center;
}
.container-list li {
    display: flex;
	margin: 0 30px 10px 0;
}
.container-list p {
    margin-left: 10px;
    font-size: 16px;
}
.section-txt {
	width:80%; 
	margin: 0 auto;
}
.collage-container {
	display: flex;
	flex: 1;
}

.img-vertical {
    margin-right: 10px;
	flex: 1;
}
.img-vertical img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.img-stack {
    flex: 1;
}
.stack1 {
    margin-bottom: 5px;
}
.stack2 {
    margin-bottom: -3px;
}

.txt-blue {
	color: #ffffff;
}
.txt-blue p {
    margin-bottom: 20px;
    font-size: 18px;
}
.lower-grid {
	display: grid; 
	grid-template-columns: repeat(3, 1fr); 
	gap: 5%;
	grid-auto-rows: minmax(100px, auto);
}
.box {
	position: relative;
}
.box.box-img img {
    filter: brightness(50%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
	background-color: #000;
}
.box.box-img:hover img {
    filter: brightness(35%);
}
.box img {
	object-fit: cover; 
	width: 100%; 
	height: 100%;}
h2.box-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
	color: #ffffff;
    font-size: 28px;
    text-align: center;
}
h3.box-title {
    text-transform: uppercase;
	color: #ffffff;
    font-size: 28px;
    text-align: center;
	margin-bottom: 30px;
}
.box.middle-section {
    background-color: #1467ae;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container-blue {
	text-align: center;
}
.lower-container {
    background-color: #F2F2F2;
    padding: 100px 0;
}

/*--------About Us Page--------------------*/

.about-container img {
	width: 100%;
}

.about-title {
    margin: 100px 0 50px;
}
.about-title h1 {
    text-align: center;
    color: #1467ae;
}
.about-txt {
    margin-bottom: 100px;
}
.about-txt h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}


/*--------Contact Us Page--------------------*/

.contact-heading {
    text-align: center;
    padding: 50px 0 100px;
    background: #1467ae;
}
.contact-heading h1 {
    color: #ffffff;
	font-size: 48px;
}
.wht-contact-container {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	background-color: #ffffff;
}
.contact-box {
    display: flex;
	margin: -50px 0 100px;
	padding: 50px;
}

.col-title h2 {
    color: #1467ae;
    text-transform: capitalize;
	font-size: 32px;
	margin-bottom: 50px;
}
.col-left {
    flex: 2;
    margin-right: 50px;
}
.col-right {
    flex: 1;
}
.combo {
    display: flex;
    gap: 20px;
    align-items: center;
}
.combo h3 {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-info hr {
    border: #000000 1px solid;
    width: 100%;
    float: left;
}
.section-info {
    margin: 0 0 35px;
}
input.submit-button:hover {
    background-color: #212227;
	transition: .3s ease-in-out;
}
iframe {
    margin-bottom: 50px;
}



/*--------Thank You page--------------------*/

.thankyou-container {
    text-align: center;
    padding: 200px 0 200px;
    background-color: #eaeaea;
}
.thankyou-container h1 {
    margin: 0 0 25px;
}
.thankyou-container h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
	margin-bottom: 25px;
}
button.blue-btn {
    padding: 10px 20px;
    border: 0;
    color: #ffffff;
    background-color: #1467ae;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}
.left-btn {
    margin-right: 10px;
}
.right-btn {
    margin-left: 10px;
}

/*--------FORM STYLES--------------------*/

div#formpage {
    margin: 0 25px 0;
}
.contact-half {
	border: 0;
	z-index: 1;
	background-color: transparent;
	border-bottom: 2px solid #a1a1a1; 
	font: inherit;
	font-size: 16px;
	padding: .25rem 0;
    width: 300px;
}
input.contact-half {
    color: #000000;
}
input.contact-half::placeholder {
    color: #cecece;
}
.input-label {
	color: #000000;
	transform: translateY(-1.5rem);
	font-weight: 600;
}
textarea {
    border: 0;
    border-bottom: 2px solid #a1a1a1;
	font: inherit;
    font-size: 16px;
    padding: 0.25rem 0 2.5rem;
	width: 300px;
}
textarea::placeholder {
    color: #cecece;
}
input.submit-button {
    padding: 10px 20px;
    border: 0;
    color: #ffffff;
    background-color: #1467ae;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}
/*control the Captcha */
.CaptchaPanel {
    margin: 10px 0px 20px 0px !important ;
    text-align: inherit !important;
    padding: 0 !important;
}

.CaptchaImagePanel {
margin:0 0 0 0;
padding:5px 0 10px;
}

.CaptchaMessagePanel {
padding:0 0 0 0 !important;
margin:0 0 0 0 !important;
font-weight:normal !important;
font-size:12px;
line-height:14px;
}

.CaptchaAnswerPanel {
margin:0 0 0 0;
padding:2px 0px 2px 0px !important;
}

.CaptchaWhatsThisPanel {
	line-height:0;
	margin:0 0 0 0;
	padding:8px 0 8px 0 !important;
    font-size: 12px;
}
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 




/*-------- FOOTER STYLES ----------------*/
footer{}

.footer {
    background-color: #212227;
}
.blue-strip {
    width: 100%;
    height: 5px;
    background-color: #1467ae;
}
.foot-col hr {
    border: #1467ae 1px solid;
    width: 25px;
    float: left;
}
.columns {
	display: flex;
	padding: 60px 0;
    gap: 20px;
}
.col-title {
    font-weight: 700;
    text-transform: uppercase;
	margin-bottom: 5px;
	letter-spacing: 1px;
}
.foot-col {
    flex: 1;
	color: #ffffff;
}
.foot-col a {
    color: #ffffff;
	font-weight: 500;
	font-size: 14px;
}
.foot-col p {
    margin-top: 10px;
	font-size: 14px;
}
.col-list {
    margin-top: 10px;
}
.foot-logo img {
    width: 200px;
}


/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/







/*---------- RESPONSIVE STYLES ----------*/

	
@media only screen and (max-width: 1530px) {
	.container-sub h3 {
		margin: 10px 0 20px;
	}
	.container-title h2 {
    	font-size: 36px;
	}
}
@media only screen and (max-width: 1475px) {
	.container-wht {
	    display: inline-block;
	}
	.section-txt {
		margin: 50px auto;
	}
	.img-stack {
		margin-right: -15px;
	}
}
@media only screen and (max-width: 1300px) {
	.txt-blue p {
    	margin-bottom: 15px;
    	font-size: 16px;
	}
}
@media only screen and (max-width: 1250px) {
	.txt-blue p {
		font-size: 16px;
	}
}
@media only screen and (max-width: 1235px) {
	.img-stack {
		margin-right: 0;
	}
}
@media only screen and (max-width: 1215px) {
	.lower-grid {
		grid-template-columns: none;
	}
	.box.middle-section {
		display: none;
	}
}
@media only screen and (max-width: 1150px) {
	.contact-box {
		flex-direction: column;
 		align-items: center;
		text-align: center;
	}
	.contact-column {
		flex-direction: column;
    	align-items: center;
	}
	.col-left {
		flex: 0;
		display: flex;
		margin: 0;
	}
	.col-right {
		flex: 0;
		margin-top: 100px;
	}
	.combo {
	    justify-content: center;
	}
	div#formpage {
    	margin: 0;
	}
	.input-label {
		float: left;
    	margin: 20px 0 -20px;
	}
	textarea {
		width: 100%;
	}
	.contact-half {
		width: 100%;
	}
}
@media only screen and (max-width: 980px) {
	.columns {
		flex-direction: column;
	    gap: 40px;
    	text-align: center;
	}
}
@media only screen and (max-width: 600px) {
	.collage-container {
		display: none;
	}
	.wht-contact-container {
		box-shadow: none;
	}
	.contact-box {
		margin: 0 auto;
		padding: 50px 0;
	}
	.contact-form p {
		margin-bottom: 10px;
	}
	.contact-heading {
		padding: 50px 0;
	}
	.input-label {
		float: left;
		margin: 20px 0 -20px;
	}
}




