﻿/***** 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;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

	NAVY:  #0C2B5A
	YELLOW: #FFD138

	GRAY: #eee
*/

/***** 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 --------*/

* {box-sizing: border-box;}

body {

}

.flex {display: flex;}

.flex-1 {width: 100%;}

.flex-1 .wid-90 {width: 80%; max-width: 800px;}

.wid-90 {width: 90%; max-width:1600px; margin: 0 auto;}

.padit {padding: 50px 0;}

.relative {position: relative;}

.logo {max-width: 300px;}

.logo img {padding: 15px 0; width: 100%;}

.logo p {font-family: "Oswald", sans-serif; font-weight: 600; font-size: 24px; text-transform: uppercase; white-space: nowrap;}

.white-body {background-color: #fff;}

.gray-body {background-color: #eee;}

.blue-body {background-color: #0C2B5A;}

.yellow-body {background-color: #FFD138;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.blue {color: #0C2B5A;}

.yellow {color: #FFD138;}

.white {color: #fff;}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Figtree", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Oswald", sans-serif; }

p, li {
	font-family: "Figtree", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 2.0;
}

hr{border:#919191 1px solid;}

.sm-heading {
	font-size: 20px;
}

.heading {
	font-size: 32px;
}

.hero-heading {
	text-transform: uppercase;
	font-size: 40px;
	line-height: 0.8;
}

.hero-heading span {
	font-size: 24px;
}

/*  BUTTONS  */

.blue-btn {
	background: #0C2B5A;
	padding: 12px 0;
	width: 245px;
	color: #fff;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	border: 3px solid #0C2B5A;
	cursor: pointer;
/*	box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);*/
	-webkit-transition:.5s ease-in;  
	-moz-transition:.5s ease-in;  
	-o-transition:.5s ease-in;  
	transition:.5s ease-in;
}

.blue-btn:hover {
	background: #000;
}

/*--- SECTION BOTTOMS STYLES ---------------------*/

.section-bottom {
	height: 50px;
	position:relative;
}

.left-angle {
	width: 5%;
	max-width: 80px;
	aspect-ratio: 1 / 1;
	position: absolute;
	bottom: -1px;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.right-angle {
	width: 5%;
	max-width: 80px;
	aspect-ratio: 1 / 1;
	position: absolute;
	bottom: -1px;
	right: 0;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/*--- HEADER STYLES ---------------------*/

.top-header {
	background-color: #000;
}

.top-header .wid-90.flex {
	display: flex;
	gap: 25px;
	padding: 10px 0;
}

span.icon {
	display:inline-block !important;
	font-size: 16px;
	color: #FFD138;
}

.contact-item a, .contact-item .contact-text {
	color: #fff;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	text-decoration: none;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.contact-item {
	display: inline-block;
}

.contact-item p a:hover {
	color: #FFD138;
}

.main-header.flex,.header-left.flex {
	align-items: center;
	width: 100%;
	gap: 15px;
}

.main-header .logo {
	margin-left: 5%;
}

.header-search {
	padding: 30px 5% 30px 30px;
}

.search-bar input {
    border: none !important;
    background: none !important;
    color: #000 !important;
    font-family: "Figtree", sans-serif !important;
	font-weight: 600;
    border-bottom: 2px solid #000 !important;
    padding: 5px !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    width: unset !important;
    height: auto !important;
}

.search-bar input:focus {
    outline: none;
}

.search-bar input::placeholder {
	color: rgba(0,0,0,0.7);
}

.search-bar button {
    border: none;
    background: none;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
}

#menu-button .logo {
	width: 80%;
}

#menu-button .logo p{
	padding: 30px 5%;
	white-space: normal;
}

.mobile-search .search-bar {
	margin-top: 40px;
	justify-content: center;
}

.mobile-search .search-bar input {
    color: #fff !important;
    border-bottom: 2px solid #fff !important;
}

.mobile-search .search-bar input::placeholder {
	color: rgba(255,255,255,0.7);
}
.mobile-search .search-bar button {
	color: #fff;
}

/*---BODY--------------------------------*/

.hero .padit {
	background-color: #000;
	background-image: linear-gradient(rgba(0,0,0,0.0) 50%, rgba(0,0,0,1.0)), url("../siteart/hero.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 100px;
}

.hero .padit .logo {
	margin: 0 auto;
}

.hero-links {
	width: 90%;
	max-width: 850px;
	margin: 0 auto;
	margin-top: -70px;
	background-color: #fff;
}

.hero-links .grid {
	display: flex;
	border: 5px solid #fff;
	gap: 5px;
}

.grid a {
	width: 100%;
}

.hero-link {
	background-color: #fff;
	color: #000;
	width: 100%;
	max-width: 280px;
	padding: 50px 0;
	text-align: center;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.4s ease-in;  
	-o-transition:.4s ease-in;  
	transition:.4s ease-in;
}

.hero-link:hover {
	letter-spacing: 2px;
}

.hero-link.parts {
	background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url("../siteart/parts-link.jpg");
	background-size: cover;
	background-position: center;
}

.hero-link.about {
	background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url("../siteart/about-link.jpg");
	background-size: cover;
	background-position: center;
}

.hero-link.fabrication {
	background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url("../siteart/fab-link.jpg");
	background-size: cover;
	background-position: center;
}

.hero-links h2.sm-heading {
	color: #000;
}

.btn-row.flex {
	margin-top: 20px;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.flex-1 .img-aside {
	aspect-ratio: 6 / 4;
}

.flex-1.img-aside .about {
	background-image: url("../siteart/about.jpg");
	background-size: cover;
	background-position: center;
}

.flex-1.img-aside .metal {
	background-image: url("../siteart/metal-fabrication.jpg");
	background-size: cover;
	background-position: center;
}

.flex-1.img-aside .plasma {
	background-image: url("../siteart/services-1.jpg");
	background-size: cover;
	background-position: center;
}

.flex-1.img-aside .plate {
	background-image: url("../siteart/services-2.jpg");
	background-size: cover;
	background-position: center;
}

.flex-1.img-aside .custom {
	background-image: url("../siteart/services-3.jpg");
	background-size: cover;
	background-position: center;
}

.flex-1.img-aside .location {
	background-image: url("../siteart/location-aside.jpg");
	background-size: cover;
	background-position: center;
}

.blue-body.blue-bg {
	background-image: linear-gradient(#0C2B5A, rgba(12,43,90,0.00)), url("../siteart/blue-bg.jpg");
	background-size: cover;
	background-position: center;
	padding-bottom: 100px;
}

.map.flex .map-container {
	width: 100%;
	position: relative;
}

.map.flex .map-container::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: #FFD138;
	width: 15%;
	max-width: 100px;
	aspect-ratio: 1 / 1;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.map-container iframe {
	display: block;
}

.contact-box {
	width: 50%;
}

.contact-box .white-body {
	height: 100%;
	padding: 50px 0 50px 50px;
}

.contact-box .white-body .flex {
	gap: 5px;
	margin: 20px 0;
}

.contact-box .white-body .flex a, .contact-box .white-body .flex span {
	font-family: "Figtree", sans-serif;
	color: #000;
	font-weight: 600;
}

.box-corners {
	width: 60px;
	flex-shrink: 0;
}

.box-corners .corner-1 {
	width: 60px;
	aspect-ratio: 1 / 1;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
	margin-bottom: -0.5px;
	margin-left: -0.5px;
}

.box-corners .center {
	height: calc(100% - 120px);
	width: 60px;
	margin-left: -1px;
}

.box-corners .corner-2 {
	width: 60px;
	aspect-ratio: 1 / 1;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	margin-top: -0.5px;
	margin-left: -0.5px;
}

.page-heading {
	background-color: #000;
	position: relative;
	text-align: center;
}

.page-heading a {
	-webkit-transition:.4s ease-in;  
	-moz-transition:.4s ease-in;  
	-o-transition:.4s ease-in;  
	transition:.4s ease-in;
}

.page-heading a:hover {
	color: #FFD138
}

.contact-form.flex {
	gap: 5%;
}

.contact-form.flex iframe {
	min-height: 400px;
}

.location-info.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 1300px;
}

.location-info.flex a {
	color: #000;
}

ul.service-list {
	list-style: disc;
	list-style-position: inside;
	line-height: 2;
}

.flex.service-section {
	gap: 5%;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-container .form-box {
	margin: 0 auto;
}

.form-box {
	background: #fff;
	padding: 10px 15px;
	border: 3px solid #FFD138;
	position: relative;
}

.form-box p.body-text {
	padding-right: 50px;
}

.form-box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: #FFD138;
	width: 15%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex label {
	font-family: "Figtree", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-flex input, .form-flex select, .form-flex textarea, .form-flex .orange-btn, .form-flex div {
	width: 100%;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #E8E8E8;
	color: #2D2D2D;
	font-family: "Figtree", sans-serif;
	font-size: 15px;
	padding: 15px;
	border: none;
	border-radius: 0;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	background-color: #F3E8C6;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Figtree", sans-serif;
	text-align: left;
}

.captcha-button {
/*	text-align:center;*/
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	background-color: #000;
	padding-bottom: 50px;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-nav ul li {
	margin: 10px 0;
}

.footer-nav ul li a {
	line-height: 2;
	font-weight: 700;
	color: #fff;
	-webkit-transition:.4s ease-in;  
	-moz-transition:.2s ease-in;  
	-o-transition:.2s ease-in;  
	transition:.2s ease-in;
}

.footer-nav ul li a:hover {
	color: #FFD138;
}

.footer-nav .flex {
	gap: 20px;
}

.footer-contact .contact-item {
    display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	position: relative;
    background: #FFD138;
    font-size: 22px;
    margin-bottom: 20px;
    color: #000;
}

.footer-contact .contact-item::before {
	content: "";
	position: absolute;
	top: -1px;
	right: -1px;
	width: 18px;
	aspect-ratio: 1 / 1;
	background-color: #000;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/




/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1050px) {
	.top-header, .main-header {display: none;}
	
	.flex.about-section, .flex.metal-section, .flex.service-section {flex-wrap: wrap; gap: 20px;}
	.flex-1.img-aside {order: -1;}
}

@media only screen and (max-width: 750px) {
	.hero-links .grid {flex-wrap: wrap;}
	.hero-link {max-width: unset;}
	
	.map.flex {flex-wrap: wrap;}
	.contact-box {width: 100%;}
	.contact-box .white-body {padding: 20px 5% 5px 5%;}
	.box-corners {width: 100%; display: flex;}
	.box-corners .corner-1, .box-corners .corner-2 {flex-shrink: 0;}
	.box-corners .corner-1 {clip-path: polygon(0 0, 100% 100%, 100% 0); margin-left: 0; margin-bottom: 0; margin-top: -0.5px;}
	.box-corners .center {width: 100%; height: 100%; margin-left: -0.5px;}
	
	.contact-form.flex {flex-wrap: wrap; gap: 20px;}
}


@media only screen and (max-width: 600px) {
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
}

@media only screen and (max-width: 500px) {
	.heading {font-size: 24px;}
}

@media only screen and (max-width: 450px) {
	.btn-row a, .blue-btn {width: 100%;}
	
	footer .wid-90.flex {justify-content: center;}
/*	.footer-nav .flex {flex-wrap: wrap; gap:0;}*/
	.footer-contact {display: flex; gap: 20px;}
}






