﻿/***** 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 --------

	COLOR:  #XXXXXX
*/

:root {
	--navy: #040666;	
	--green: #2ECC70;
	--orange: #FF8C00;
	
	--gray: #222;
}

/***** 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 {
}

.wid-90 {width: 90%; margin: 0 auto; max-width: 1800px;}

.padit {padding: 70px 0;}
.paditxl {padding: 100px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 250px;}

.logo img {width: 100%; display: block; padding: 15px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 900px;
}

.navy-body {background-color: var(--navy);}
.orange-body {background-color: var(--orange);}
.green-body {background-color: var(--green);}

.mobile-only {display: none;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}

.navy {color: var(--navy);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Montserrat", sans-serif; }
a:hover {text-decoration:none;}

a.navy {-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;}

a.navy:hover {color: var(--orange);}

h1, h2, h3, h4, h5, h6 { font-family: "Montserrat", serif; }

p, li {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
}

p.body-text {
	line-height: 1.5;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

hr {
	margin: 50px 0;
	border: 1px solid #222;
}

.sm-heading {
	font-size: 24px;
	font-weight: 800;
}

.heading {
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
}

.sub-heading {
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	padding: 20px 0;
	letter-spacing: 0.4px;
}

/*  BUTTONS  */

.green-btn {
	gap: 10px;
	padding: 10px 25px;
	background: var(--green);
	color: var(--navy);
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.green-btn:hover  {
	background-color: var(--orange);
}

.navy-btn {
	gap: 10px;
	padding: 10px 25px;
	background: var(--navy);
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	border-radius: 3px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}
.navy-btn:hover {
	background-color: #fff;
	color: var(--navy);
}

.btn-row.flex {gap: 15px;}

.contact.flex {gap: 50px 100px;}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

.header-container {
	position: relative;
}

.top-header {
	padding: 10px 0;
}

.top-header .wid-90.flex {
	justify-content: space-between;
	gap: 40px;
}

.top-header .left.flex{
	justify-content: flex-start;
	gap: 20px;
}

.top-header .flex a, .top-header .flex p {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.top-header .right.flex {
	gap: 10px;
}

.top-header a.lang-toggle {
	display: block;
	padding: 0 10px; 
	color: rgba(255,255,255,0.8);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.80);
	background: #040666;
}

.top-header a.lang-toggle.active {
	background: #FFF;
	color: var(--navy);
}

.main-header .flex {
	justify-content: space-between;
	align-items: center;
}

/*---BODY--------------------------------*/

.hero {
	background-color: var(--navy);
	background-image: linear-gradient(0deg, rgba(4, 6, 103, 0.80) 0%, rgba(4, 6, 103, 0.80) 100%), url("../siteart/hero.jpg");
	background-size: cover;
	background-position: center;
	padding: 150px 0 300px;
}

.page-heading {
	background-color: var(--navy);
	background-image: linear-gradient(0deg, rgba(4, 6, 103, 0.80) 0%, rgba(4, 6, 103, 0.80) 100%), url("../siteart/page-heading.jpg");
	background-size: cover;
	background-position: center;
}

.hero-text {max-width: 800px;}

.hero h1.heading {
	color: #FFF;
	font-size: 48px;
	font-weight: 900;
}

.img-aside img {
	display: block;
	width: 100%;
}

.consign-banner {
	text-align: center;
}

.consign-banner h2 {
	padding-bottom: 20px;
}

.about.flex {
	gap: 30px 10%;
}

.about.flex .img-aside img {
	min-height: 400px;
	object-fit: cover;
}

.map-top.flex {
	align-items: flex-end;
}

.map-top.flex iframe {position: relative;}

.map-btns {
	padding: 40px 40px 0;
	border-top-right-radius: 10px;
}

.map-btn {
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	border: 1px solid #fff;
	border-radius: 3px;
	font-size: 24px;
	margin-bottom: 20px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.map-btn:hover {
	color: var(--orange);
	background-color: #fff;
}

.map-bottom.flex {
	padding: 20px 40px 40px;
	margin-left: 40px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	justify-content: space-around;
	gap: 30px;
	flex-wrap: wrap;
}

ul.icon-list li {
	position: relative;
	padding-left: 30px;
}

ul.icon-list li i {
	position: absolute;
	left: 0; top: 3px;
}

/*--------FORM STYLES--------------------*/

.contact-flex {
	display: flex;
	justify-content: space-around;
}

.form-box {
	margin: 0 auto;
	width: calc(100% - 40px);
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 10px 0;
}

.form-flex label {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-field, .form-flex input, .form-flex select, .form-flex textarea, .form-flex div {
	width: 100%;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #E8E8E8;
	border: none;
	color: #2D2D2D;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	padding: 15px;
	border-radius: 3px;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	background: #FFE7CC;
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
}

.captcha-button {
	text-align:center;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding-bottom: 50px;
	background: var(--gray);
}

footer .padit {
	padding-top: 25px;
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

footer .wid-90.flex  .flex {
	gap: 0 10px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1150px) {
	.contact.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 950px) {
	.top-header .wid-90.flex {justify-content: center;}
	.top-header .left.flex {display: none;}
}

@media only screen and (max-width: 850px) {
	.hero {padding: 100px 0 200px;}
	.hero h1.heading {font-size: 36px;}
	
	.heading {font-size: 28px;}
	.sub-heading {font-size: 17px; padding: 15px 0;}
	
	.about.flex {flex-wrap: wrap;}
	.about.flex .img-aside img {min-height: 200px;}
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
}


@media only screen and (max-width: 600px) {
	.hero {padding: 60px 0 150px;}
	.hero h1.heading {font-size: 28px}
	
	.heading {font-size: 26px;}
	
	.map-top.flex {flex-wrap: wrap;}
	.map-top.flex iframe {width: 90%;}
	.map-btns {width: 100%; margin-left: 40px; margin-top: -40px; padding-top: 60px;display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap;}
}

@media only screen and (max-width: 500px) {
	.btn-row.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.green-btn, .navy-btn, .btn-row.flex a {width: 100%;}
}






