* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, select {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	color: unset;
}
a {text-decoration:none;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	border: none;
	border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*=== END RESET ===*/
::-moz-selection {
    background: #0110A0;
    color: #ffffff;
    text-shadow: none;
}
::selection {
    background: #0110A0;
    color: #ffffff;
    text-shadow: none;
}

/*=== Clearfix ===*/
.clear {clear: both;}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

/*=== ELEMENTS ===*/
img {max-width: 100%;}
body {
	font-family: "arimo", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px!important;
	line-height: 28px!important;
	color: #000000;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "arimo", sans-serif;
	font-weight: 700;
	font-style: normal;
}

/*=== GLOBAL ===*/
.flex-container {
	display: flex;
	height: auto;
}
.flex-vertical {
	flex-direction: column;
}
.flex-horizontal {
	flex-direction: row
}
.flex-width {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 100%;
}
.flex-height {
	height: 100%;
}
.flex-wrap {
	flex-wrap: wrap;
}
.set-width {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
}

.justify-center {
	justify-content: center;
}
.justify-right {
	justify-content: flex-end
}
.justify-left {
	justify-content: flex-start
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around;
}

.align-center {
	align-items: center;
}
.align-top {
	align-items: flex-start;
}
.align-bottom {
	align-items: flex-end;
}
.align-all-center {
	align-items: center;
	justify-content: center;
}

.align-self-center {
	align-self: center;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.left-icon {
	margin-right: 15px;
}
.right-icon {
	margin-left: 15px;
}

.mobile-only {
	display: none;
}
.clickable {
	cursor: pointer;
}
.hidden {
	display: none;
}

.max-width {
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
}
.logo {
	margin: 15px 0;
	height: 75px;
}

/*=== HEADER ===*/
header.site-header {
	background-color: #003153;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    outline: 12px solid #003153;
    margin: 12px 0;
}
header.site-header .nav-group {
	background-color: #003153;
	border-top: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	margin: 8px 0;
}
header.site-header .nav-group .inner-container {
	width: calc(100% - 120px);
    margin: auto;
}
header.site-header .nav-group .inner-container .logo {
	padding-left: 59px;
}
header.site-header .nav-group {
	height: 100%;
}
header.site-header .top-nav > * {
	padding: 10px 1px;
}

/*=== FOOTER ===*/
footer.site-footer {
	background-color: #003153;
	color: #ffffff;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	padding: 45px 0;
}
footer.site-footer .sub-footer{
	padding: 40px 0 0;
}

/*=== PAGE STYLES ===*/
/*=== DEFAULT-PAGE ===*/
.auction-container {
	padding: 125px 0;
	width: 90%;
	max-width: 1366px;
	margin: auto;
}

@media only screen and (max-width: 1110px) {
	header.site-header .nav-group .inner-container .logo {
		padding-left: 0;
	}
}

@media only screen and (max-width: 900px) {
	.mobile-only {
		display: flex;
	}
	.desktop-only {
		display: none;
	}
	.flex-horizontal {
		flex-direction: column;
	}

	/*** DEFAULT-PAGE ***/
	.default-page .about-us.max-width {
		width: 80%;
	}
}