@charset "UTF-8";
/* SHA Styles */


/* BRAND COLOR PALETTE VARIABLES */
:root {
	--primary-red: #d50b37;
	--secondary-red: #881536;
	--primary-blue: #002868;
	--secondary-blue: #0d1c35;
	--primary-charcoal: #26292c;
	--secondary-charcoal: #1c1f21;
	--primary-ghost: #fbfbfb;
	--secondary-ghost: #c5c5c5;
	--secondary-gray-bg: #f5f5f5;
	/*--secondary-gray-bg: #EBEBEB;*/
}

.primary-red {color: var(--primary-red);}
.secondary-red {color: var(--secondary-red);}
.primary-blue {color: var(--primary-blue);}
.secondary-blue {color: var(--secondary-red);}
.primary-charcoal {color: var(--primary-charcoal);}
.secondary-charcoal {color: var(--secondary-charcoal);}
.primary-ghost {color: var(--primary-ghost);}
.secondary-ghost {color: var(--secondary-ghost);}
.lighter-gray {color: #8e8e90;}
.secondary-gray-bg {background: var(--secondary-gray-bg);}

a,
button,
label,
input,
textarea {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* remove gray click box on mobile */
}

* {
  box-sizing: border-box;
}


body {
	font-family: 'Config-Text', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 1.1em;
	line-height: 1.5;
	color: #3B3C3F;
	background: #fbfbfb;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

a {text-decoration: none; cursor: pointer; color: #3B3C3F;}
a:visited {color: none;}

ol {
	font-size: 0.9em;
	margin: 0;
}

ol li {padding: 10px 0;}

.wrapper {
	max-width: 2000px;
	margin: 0 auto;
}

h1,h2,h3,h4 {
	font-family: 'Config-Bold', sans-serif;
	font-weight: normal;
	line-height: 1.3;
	margin-top: 0;
}

/*h2 {font-size: 3em;}*/

h3.sam-headline {
	font-size: 2.3em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: normal;
	margin-top: 20px;
}

p {
	margin: 0 0 30px;
	padding-right: 30px;
}

.uppercase {
	text-transform: uppercase;
}

.section-divider {
	border-bottom: 1.3px solid;
}

.section-divider h2 {
	display: inline-block;
	font-size: 1.1em;
	text-transform: uppercase;
	margin: 0;
	background: white;
	padding: 20px; 
	border-radius: 6px 6px 0 0;
	border: 1.3px solid;
	border-bottom: none;
}

h2.section-helper {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary-red);
	margin-bottom: 0;
}

.bold {
	font-family: 'Config-Bold', sans-serif;
}

a.inline-link {
	display: inline-block;
	border-bottom: 1.3px dotted;
	padding-bottom: 3px;
	color: #525357;
	font-family: 'Config-Bold', sans-serif;
	transition: all 0.3s ease-in-out;
}

a.inline-link:hover {
	color: #a4a4a6;
}


h2.section-title-indicator {
	font-size: 1.3em;
	color: #8e8e90;
}

h3 {
	font-size: 3em;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.right-to-center {
	text-align: right;
}

/* -------------------------------- 

Top Bar

-------------------------------- */
.top-bar {
	font-family: 'Config-Bold', sans-serif;
	color: #8e8e90;
	background: var(--secondary-charcoal);
	text-align: right;
	overflow: hidden;
	padding: 10px 70px;
}

.top-bar a {display: inline-block; color: #8e8e90; transition: all 0.3s ease-in-out;}

.top-bar a:hover {
	color: var(--secondary-ghost);
}

.top-bar a:hover::after{
color: #8e8e90;
} 

.top-bar a:after {
	display: inline-block;
	vertical-align: top;
	content: '|';
	margin: 0 10px;
}

.top-bar a:last-of-type:after {
	content: '';
	margin: 0;
}

.sam-logo {
	display: inline-block;
	vertical-align: middle;
	width: 70px;
	height: 20px;
	background: url("../images/sam-logomark.svg");
	background-repeat: no-repeat;
	margin-right: 5px;
}


.sam-bg {
	background: -webkit-linear-gradient(right, #4dc1dd, #4f76f7);
	background: -o-linear-gradient(right, #4dc1dd, #4f76f7);
	background: linear-gradient(to left, #4dc1dd, #4f76f7);
}

.sam-bg {
	background: #f5f5f5;
}

.alt-gray-bg {
	background: #f5f5f5;
}


.dark {
	background: var(--secondary-charcoal);
	color: var(--secondary-ghost);
}


.center {text-align: center;}

/* NAV BAR */
.nav-container {
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--primary-charcoal);
}


.nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	float: right;
	padding-right: 50px;
}

.nav li {
	position: relative;
	margin: 0;
	float: left;
}

.nav a li {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;
	font-weight: normal;
	text-align: center;
	margin: 0;
	min-width: 70px;
	padding: 45px 25px;	
	height: 100%;
	cursor: pointer;
	color: var(--secondary-ghost);
	transition: all 0.3s ease-in-out;
}

.nav a:hover  li{
	color: white;
	background: rgba(0,0,0,0.1);
}

.brand {
	position: absolute;
	top: 67px;
	left: 70px;
	background: url("../images/silicon-hills-auctions-logo-horizontal.svg");
	background-repeat: none;
	background-size: 230px 77px;
	width: 230px;
	height: 77px;
	z-index: 99;
}

/* -------------------------------- 

Homepage Slider

-------------------------------- */

.full-width-slider {
	position: relative;
	height: 660px;
	overflow: hidden;
}

.full-width-slider-sd {
	position: relative;
	height: 460px;
	border-radius: 6px;
	overflow: hidden;
}

.slides {
	position: relative;
	height: 100%;
	background: -webkit-linear-gradient(#26292c, #1c1f21);
	background: -o-linear-gradient(#26292c, #1c1f21);
	background: linear-gradient(#26292c, #1c1f21);
}



.slides li {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: translateX(100%);
	transition: transform 0.5s;
	background: url('../images/slide-test.jpg') no-repeat center center;
	background-size: cover;
	
}

.slides li:nth-of-type(2){
	background: url('../images/slide-2.jpg') no-repeat center center;
	background-size: cover;
}


.slides li:nth-of-type(3){
	background: url('../images/slide-3.jpg') no-repeat center center;
	background-size: cover;
}

.slides li:nth-of-type(4){
	background: url('../images/slide-5.jpg') no-repeat center center;
	background-size: cover;
}




.full-width-slider-sd .slides li {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: translateX(100%);
	transition: transform 0.5s;
	background: -webkit-linear-gradient(#26292c, #1c1f21);
	background: -o-linear-gradient(#26292c, #1c1f21);
	background: linear-gradient(#26292c, #1c1f21);

	
}


.full-width-slider-sd .slides li img {
	display: block;
	height: 100%;
	margin: 0 auto;
}



.slides li.selected {
	z-index: 2;
	transform: translateX(0);
}

.slides li.move-left {transform: translateX(-100%);}

.slides li.visible {z-index: 2;}


.slides h2 {
	font-size: 3.9em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
	line-height: 1.1;
	margin: 0 0 15px 0;
	text-shadow: 0 0 25px rgba(14,26,38,0.5);
}

.slides p {
	color: white;
	font-size: 1.3em;
	font-family: 'Config-Bold', sans-serif;
}

.specializing {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;	
	font-size: 1.3em;
	color: white;
	padding-bottom: 5px;
	border-bottom: 2.6px solid;
	margin-bottom: 10px;
}


/*.title-effect {
	animation: testMe 4s linear;
}

@keyframes testMe {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
*/

.slides h2.smaller {
	font-size: 2.9em;
	line-height: 1.2;
}

.title-effect-new {
	animation: newFade 1s ease-in-out;
}

.animate h3 {
	color: red;
}


@keyframes newFade {
	0% {transform: translateY(50px); opacity: 0;}
	100% {transform: translateY(0); opacity: 1;}
}




.slider-tagline {
	display: block;
	color: white;
	margin-bottom: 20px;
}

.slider-industry {
	display: inline-block;
	color: white;
	font-family: 'Config-Bold', sans-serif;
	font-weight: normal;
	border: 1.4px solid;
	padding: 10px 15px;
	border-radius: 4px;
	margin: 0 10px 15px 0;
}


.type-container {
	position: absolute;
	top: 15%;
	width: 80%;
	padding: 0 70px;
}

.type-container.higher {
	top: 10%;
}

.slider-navigation a {
	position: absolute;
	bottom: 20px;
	font-size: 0.9em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	line-height: 60px;
	color: white;
	right: 140px;
	text-align: center;
	width: 100px;
	height: 60px;
	border: 1.3px solid white;
	border-radius: 4px;
	opacity: .6;
	transition: all 100ms ease-in-out;
	z-index: 3;
}

.full-width-slider-sd .slider-navigation a {
	position: absolute;
	top: 45%;
	font-size: 0.9em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 70px;
	color: white;
	background: rgb(0,0,0);
	text-align: center;
	width: 100px;
	height: 70px;
	border: none;
	border-radius: 0;
	opacity: .6;
	transition: all .3s ease-in-out;
	z-index: 3;
}

.slider-navigation a:hover {opacity: 1;}

.full-width-slider-sd .slider-navigation a:hover {opacity: 1;}

.slider-navigation a:active {
	border: 1px solid;

}

.full-width-slider-sd .slider-navigation a:active {
	border: none;

}

.slider-navigation a.next {left: auto; right: 20px;}

.full-width-slider-sd .slider-navigation a.prev {left: 0; right: auto; border-radius: 0 4px 4px 0;}
.full-width-slider-sd .slider-navigation a.next {left: auto; right: 0; border-radius: 4px 0 0 4px;}

.slider-dots-navigation {
	position: absolute;
	z-index: 3;
	bottom: 20px;
	left: 30px;
}

.slider-dots-navigation li {
	display: inline-block;
	margin-right: 5px;
}

.slider-dots-navigation a {
	display: block;
	font-family: 'Config-Bold', sans-serif;
	font-weight: normal;
	text-align: center;
	border: 1.3px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	line-height: 35px;
	width: 35px;
	height: 35px;
	color: rgba(255,255,255,0.3);
	transition: border .3s;
}

.slider-dots-navigation a.selected {border: 1px solid white; vertical-align: middle; color: white;}



/* -------------------------------- 

Recent Sales Slider

-------------------------------- */

.title-effect {
	animation: testMe 1s;
}

@keyframes testMe {
	0% {transform: translateX(50%);opacity: 0;}
	100% {transform: translateX(0);opacity: 1;}
}



.full-width-slider-recent {
	position: relative;
	height: 660px;
	overflow: hidden;
}

.full-width-slider-recent .slides {
	position: relative;
	height: 100%;
	background: -webkit-linear-gradient(right, #1c1f21, #26292c, #1c1f21);
	background: -o-linear-gradient(right, #1c1f21, #26292c, #1c1f21);
	background: linear-gradient(to left, #1c1f21, #26292c, #1c1f21);
}

.full-width-slider-recent .slides li {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: none;;
	transform: translateX(100%);
	transition: transform 0.5s;

	
}



.full-width-slider-recent .slides li.selected {
	z-index: 2;
	transform: translateX(0);
}

.full-width-slider-recent .slides li.move-left {transform: translateX(-100%);}

.full-width-slider-recent .slides li.visible {z-index: 2;}


.full-width-slider-recent .slides h2 {
	font-size: 3.9em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
	line-height: 1.1;
	margin: 0 0 15px 0;
	text-shadow: 0 0 25px rgba(14,26,38,0.5);
}

/*.title-effect {
	animation: testMe 4s linear;
}

@keyframes testMe {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
*/


.full-width-slider-recent .slider-navigation a {
	position: absolute;
	bottom: 20px;
	font-size: 0.9em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	line-height: 60px;
	color: white;
	right: 140px;
	text-align: center;
	width: 100px;
	height: 60px;
	border: 1.3px solid white;
	border-radius: 4px;
	opacity: .6;
	transition: all 100ms ease-in-out;
	z-index: 3;
}


.full-width-slider-recent .slider-navigation a:hover {opacity: 1;}


.full-width-slider-recent .slider-navigation a:active {
	border: 1px solid;

}

.full-width-slider-recent .slider-navigation a.next {left: auto; right: 20px;}

.full-width-slider-recent .slider-dots-navigation {
	position: absolute;
	z-index: 3;
	bottom: 20px;
	left: 30px;
}

.full-width-slider-recent .slider-dots-navigation li {
	display: inline-block;
	margin-right: 5px;
}

.full-width-slider-recent .slider-dots-navigation a {
	display: block;
	font-family: 'Config-Bold', sans-serif;
	font-weight: normal;
	text-align: center;
	border: 1.3px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	line-height: 35px;
	width: 35px;
	height: 35px;
	color: rgba(255,255,255,0.3);
	transition: border .3s;
}

.full-width-slider-recent .slider-dots-navigation a.selected {border: 1px solid white; vertical-align: middle; color: white;}



/* -------------------------------- 

Typography

-------------------------------- */










/* -------------------------------- 

Buttons

-------------------------------- */

button.sha,
.sha-cta {
	font-family: 'Config-Bold', sans-serif;
	outline: 0;
	border: 0;
	color: white;
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	padding: 20px 35px;
	border-radius: 35px;
	margin: 20px;
}

.red-button {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;
	font-size: 1.1em;
	outline: 0;
	border: 0;
	color: white;
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	padding: 20px 35px;
	border-radius: 35px;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.red-button:hover {
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);	
}

.sam-button {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;
	font-size: 1.1em;
	outline: 0;
	border: 0;
	color: white;
	background: linear-gradient(to right, #4f76f7, #4dc1dd);
	padding: 20px 35px;
	border-radius: 35px;
}

.charcoal-button {
	display: inline-block;
	font-size: 1.1em;
	font-family: 'Config-Bold', sans-serif;
	outline: 0;
	border: 0;
	color: white;
	background: -webkit-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: -o-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: linear-gradient(to right, var(--primary-charcoal), #3E3E43);
	padding: 20px 35px;
	box-shadow: none;
	border-radius: 35px;
	transition: all 0.3s ease-in-out;

}

.charcoal-button:hover {
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);	
}


.slider-industry.hide-on-desktop.display-on-mobile {display: none;}

.photo {
	display: block;
	width: 100%;
	border-radius: 6px;
}


/************************************************************************
SAM blocks
************************************************************************/

div.sam-block {
	border: 1.3px solid #8e8e90;
	border-radius: 6px;
	padding: 30px;
	min-height: 450px;
}

div.ros-block {
	border: 1.3px solid #8e8e90;
	border-radius: 6px;
	padding: 30px;
	min-height: 300px;
}

.sam-block img {
	width: 100%;
	transition: all 0.3s ease-in-out;

}

.sam-block h4,
.ros-block h4 {
	font-size: 1.6em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	margin-top: 0;
	padding-bottom: 0;
}

a.sam-block-cta {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;
	outline: 0;
	border: 0;
	color: white;
	background: -webkit-linear-gradient(left, #4f76f7, #4dc1dd);
	background: -o-linear-gradient(left, #4f76f7, #4dc1dd);
	background: linear-gradient(to right, #4f76f7, #4dc1dd);
	padding: 20px 35px;
	border-radius: 35px;
	transition: all 0.3s ease-in-out;
}

.sam-animator {
	display: block;
	color: #525357;
	transition: all 0.3s ease-in-out;
}

.stat-number {
	font-size: 3em;
	background: -webkit-linear-gradient(left, #4f76f7, #4dc1dd);
	background: -o-linear-gradient(left, #4f76f7, #4dc1dd);
	background: linear-gradient(to right, #4f76f7, #4dc1dd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/************************************************************************
Auction Cards
************************************************************************/

div.month-divider {
	border-bottom: 1.3px solid #a4a4a6;
}

div.month-divider span {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: #efefef;
	border-radius: 6px 6px 0 0;
	padding: 10px 30px;
}

.auction-card {
	width: 100%;
	height: 500px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 0 80px rgba(35,74,156,0.30);
	overflow: hidden;
}



.cover-container {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 225px;
	text-align: center;
	background: white;
/*
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/292_14_1589328069..jpg);
	background-size: cover;
	background-position: center center;
*/
	overflow: hidden;
	z-index: 1;
}

.cover-image {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/356_9_1617162619..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
}

.cover-image.proindustrial {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/427_0_1653497157..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.hlccc {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/423_19_1649874871..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.b8ta {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/413_14_1646419414..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.centaur-two {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/401_14_1642702128..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.local-motors {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/402_0_1642954861..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.shapeways {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/563_0_1694645238..png);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.made {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/571_14_1696350515..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.techfootin {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/566_12_1696117014..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.innervoice {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/565_3_1695061918..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.model1 {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/567_1_1695833995..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}

.cover-image.bcs {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://svdisposition.com/backend/web/images/AuctionImages/421_81_1649456410..jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	opacity: 0.15;
	z-index: 3;
	transition: all 0.5s ease-out;
	
}




.client-logo {
	position: absolute;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	z-index: 4;
}


.gradient-overlay {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, var(--primary-red), #ffb41e);
	background: -o-linear-gradient(left, var(--primary-red), #ffb41e);
	background: linear-gradient(to right, var(--primary-red), #ffb41e);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.model1 {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #5f7f56, #2d4f3e);
	background: -o-linear-gradient(left, #5f7f56, #2d4f3e);
	background: linear-gradient(to right, #5f7f56, #2d4f3e);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.innervoice {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #4196b5, #0f548b);
	background: -o-linear-gradient(left, #4196b5, #0f548b);
	background: linear-gradient(to right, #4196b5, #0f548b);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.local-motors {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #0d60ae, #00cce7);
	background: -o-linear-gradient(left, #0d60ae, #00cce7);
	background: linear-gradient(to right, #0d60ae, #00cce7);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.techfootin {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #3e9c52, #85bc2a);
	background: -o-linear-gradient(left, #3e9c52, #85bc2a);
	background: linear-gradient(to right, #3e9c52, #85bc2a);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.bcs {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #df0036, #550133);
	background: -o-linear-gradient(left, #df0036, #550133);
	background: linear-gradient(to right, #df0036, #550133);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.made {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #ecab57, #cf612c);
	background: -o-linear-gradient(left, #ecab57, #cf612c);
	background: linear-gradient(to right, #ecab57, #cf612c);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.shapeways {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #fe4c66, #4e288f);
	background: -o-linear-gradient(left, #fe4c66, #4e288f);
	background: linear-gradient(to right, #fe4c66, #4e288f);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.gradient-overlay.proindustrial2 {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, #df0036, #550133);
	background: -o-linear-gradient(left, #df0036, #550133);
	background: linear-gradient(to right, #df0036, #550133);
	opacity: 1;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}



.cover-link:hover .sale-details-link {
	background: rgba(255,255,255,0.2)
}

.cover-link:hover .cover-image {
	transform: scale(1.1);
	
}




h3.sale-title {
	display: block;
	font-family: 'Config-Bold', sans-serif;
	letter-spacing: -0.5px;
	font-size: 2em;
	margin: 10px 0;
	line-height: 1.1;
}

.sd-location {
	font-size: 1.3em;
}

.sale-type {
	display: inline-block;
	border-bottom: 1.3px dotted;
	padding-bottom: 5px;
	margin-bottom: 20px;

}

.sale-featuring {
	margin-bottom: 20px;
	color: #8e8e90;
}

.hashtag {
	display: inline-block;
	font-size: 0.9em;
	padding: 8px 30px 10px;
	border-radius: 35px;
	background: #efefef;
	margin: 0 7px 10px 0;
}

.sd-link {
	display: block;
	text-align: center;
	font-family: 'Config-Bold', sans-serif;
	border: 1.6px solid;
	color: #525357;
	padding: 20px 35px;
	border-radius: 35px;
	margin: 0 0 20px 0;
	transition: all 0.3s ease-in-out;
}


.sd-link.lp {	
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.tdk {	
	background: -webkit-linear-gradient(left, #0061aa, #008cba);
	background: -o-linear-gradient(left, #0061aa, #008cba);
	background: linear-gradient(to right, #0061aa, #008cba);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.local-motors {	
	background: -webkit-linear-gradient(left, #0d60ae, #00cce7);
	background: -o-linear-gradient(left, #0d60ae, #00cce7);
	background: linear-gradient(to right, #0d60ae, #00cce7);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.b8ta {	
	background: -webkit-linear-gradient(left, #f69329, #a4143d);
	background: -o-linear-gradient(left, #f69329, #a4143d);
	background: linear-gradient(to right, #f69329, #a4143d);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.techfootin {	
	background: -webkit-linear-gradient(left, #3e9c52, #85bc2a);
	background: -o-linear-gradient(left, #3e9c52, #85bc2a);
	background: linear-gradient(to right, #3e9c52, #85bc2a);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.batc {	
	background: -webkit-linear-gradient(left, #0d60ae, #00cce7);
	background: -o-linear-gradient(left, #0d60ae, #00cce7);
	background: linear-gradient(to right, #0d60ae, #00cce7);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.tactus {	
	background: -webkit-linear-gradient(left, #CC6127, #DB9B2A);
	background: -o-linear-gradient(left, #CC6127, #DB9B2A);
	background: linear-gradient(to right, #CC6127, #DB9B2A);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.tte {	
	background: -webkit-linear-gradient(left, #00334e, #3db7e4);
	background: -o-linear-gradient(left, #00334e, #3db7e4);
	background: linear-gradient(to right, #00334e, #3db7e4);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp:hover {	
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.tdk:hover {	
	background: -webkit-linear-gradient(left, #0061aa, #008cba);
	background: -o-linear-gradient(left, #0061aa, #008cba);
	background: linear-gradient(to right, #0061aa, #008cba);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.b8ta:hover {	
	background: -webkit-linear-gradient(left, #f69329, #a4143d);
	background: -o-linear-gradient(left, #f69329, #a4143d);
	background: linear-gradient(to right, #f69329, #a4143d);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.local-motors:hover {	
	background: -webkit-linear-gradient(left, #0d60ae, #00cce7);
	background: -o-linear-gradient(left, #0d60ae, #00cce7);
	background: linear-gradient(to right, #0d60ae, #00cce7);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.batc:hover {	
	background: -webkit-linear-gradient(left, #0d60ae, #00cce7);
	background: -o-linear-gradient(left, #0d60ae, #00cce7);
	background: linear-gradient(to right, #0d60ae, #00cce7);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.techfootin:hover {	
	background: -webkit-linear-gradient(left, #3e9c52, #85bc2a);
	background: -o-linear-gradient(left, #3e9c52, #85bc2a);
	background: linear-gradient(to right, #3e9c52, #85bc2a);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.tactus:hover {	
	background: -webkit-linear-gradient(left, #CC6127, #DB9B2A);
	background: -o-linear-gradient(left, #CC6127, #DB9B2A);
	background: linear-gradient(to right, #CC6127, #DB9B2A);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.tte:hover {	
	background: -webkit-linear-gradient(left, #00334e, #3db7e4);
	background: -o-linear-gradient(left, #00334e, #3db7e4);
	background: linear-gradient(to right, #00334e, #3db7e4);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.lp.ns {	
	background: -webkit-linear-gradient(left, #6600cc, #009ed8);
	background: -o-linear-gradient(left, #6600cc, #009ed8);
	background: linear-gradient(to right, #6600cc, #009ed8);
	color: white;
	border: none;
	border-radius: 35px;
}

.sd-link.lp.ns:hover {	
	background: -webkit-linear-gradient(left, #6600cc, #009ed8);
	background: -o-linear-gradient(left, #6600cc, #009ed8);
	background: linear-gradient(to right, #6600cc, #009ed8);
	border: none;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link.illumitex {
	display: block;
	text-align: center;
	font-family: 'Config-Bold', sans-serif;
	border: 1.6px solid;
	color: #525357;
	padding: 20px 35px;
	border-radius: 35px;
	margin: 0 0 20px 0;
}

.sd-link.makani {
	display: block;
	text-align: center;
	font-family: 'Config-Bold', sans-serif;
	border: 1.6px solid;
	color: #525357;
	padding: 20px 35px;
	border-radius: 35px;
	margin: 0 0 20px 0;
}

.sd-link:hover {
	border: 1.6px solid var(--primary-charcoal);
	background: var(--primary-charcoal);
	color: white;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);
}

.sd-link:focus {
	box-shadow: 0 0 0 rgba(38,41,44,0);
}


.sale-title {
	font-size: 2.6em;
	margin: 0;
}


span.live-auction {
	position: absolute;
	font-family: 'Config-Bold', sans-serif;
	top: 20px;
	left: 20px;
	color: white;
	border: 1.3px solid white;
	padding: 10px;
	border-radius: 3px;
	z-index: 4;
	animation: pulse 1.3s infinite;
}


@keyframes pulse {
	0% {opacity: 0.3;}
	50% {opacity: 1;}
	100% {opacity: 0.3;}
}


/* -------------------------------- 

Sale Details Page

-------------------------------- */

.sd-banner-container {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 300px;
	text-align: center;
	background: white;
	overflow: hidden;
	z-index: 1;
}

.sd-banner-container .client-logo {
	height: 180px;
	width: 180px;
}

.sd-banner-container .cover-image {
	position: absolute;
	width: 100%;
	height: 225px;
	background: url(https://i.pinimg.com/originals/62/1e/64/621e64c22dd60edda644343e08815587.jpg);
	background-size: cover;
	background-position: center center;
	filter: grayscale(100%);
	z-index: 2;
	transition: all 0.5s ease-out;
	min-height: 100%;
}

.sd-banner-container .gradient-overlay {
	position: absolute;
	width: 100%;
	height: 225px;
	background: -webkit-linear-gradient(left, dodgerblue, #b20f8e);
	background: -o-linear-gradient(left, dodgerblue, #b20f8e);
	background: linear-gradient(to right, dodgerblue, #b20f8e);
	opacity: 0.8;
	z-index: 3;
	transition: all 0.3s ease-in-out;
	min-height: 100%;
}

.featuring {
	margin: 20px 0 30px;
}

ul.sale-details-grid {
	border: 1.3px solid #a4a4a6;
	border-radius: 4px;
	margin: 20px 0 40px;
	overflow: hidden;
}

ul.sale-details-grid li {
	display: block;
	padding: 15px;
	border-bottom: 1.3px dotted;
}

ul.sale-details-grid li a {
	font-family: 'Config-Bold', sans-serif;
	display: block;
	color: #525357;
	transition: all 0.3s ease-in-out;
}

ul.sale-details-grid a:hover {
	color: #a4a4a6;
}

ul.sale-details-grid li:last-child {
	border-bottom: none;
}


h2.section-title {
	font-size: 1.6em;
}

.info-block {
	border-radius: 4px;
	overflow: hidden;
	background: var(--primary-ghost);
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 10px 20px rgba(38,41,44,0.05);
}


div.employee-portrait img {
	display: block;
	width: 100%;
	max-width: 100px;
	height: 100px;
	max-height: 100px;
	border-radius: 50%;
	margin-bottom: 20px;
}

a.download {
	display: block;
}

ul.featured-assets {
	border-radius: 4px;
	margin: 20px 0 40px;
	overflow: hidden;
}

ul.featured-assets li {
	display: block;
	padding: 15px;
	background: #ebebeb;
}


ul.featured-assets li:nth-of-type(2n+2) {
	background: var(--primary-ghost);
}


/* -------------------------------- 

Landing Page Common

-------------------------------- */
ul.breadcrumb {
	margin: 10px 0 0;
}

ul.breadcrumb li,
ul.breadcrumb li a {
	display: inline-block;
	color: #525357;
	padding-bottom: 5px;
}

ul.breadcrumb li a {font-family: 'Config-Bold', sans-serif;}

ul.breadcrumb li a {
	display: inline-block;
	border-bottom: 1.3px dotted;
}

ul.breadcrumb li:after {
	display: inline-block;
	content: '>';
	padding: 0 10px;
	border-bottom: none;
}

ul.breadcrumb li:last-child::after{
	content: '';
}


/* -------------------------------- 

Industries

-------------------------------- */
a.industry-highlighter {
	display: block;
	color: #525357;
}

.industry-block {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 4px;
	background: white;
	padding: 10px 30px 10px 10px;
	box-shadow: 0 10px 20px rgba(38,41,44,0.05);
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.industry-block-top {
	position: relative;
	border-radius: 4px;
	border: 1.3px solid;
	padding: 30px;
	box-shadow: 0 10px 20px rgba(38,41,44,0.05);
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.industry-block-top img {
	display: block;
	margin: 0 auto;
	text-align: center;
	width: 70%;
	max-width: 400px;
}

.industry-title-top {
	display: block;
	font-size: 1.3em;
}

.industry-block img {
	display: inline-block;
	width: 100%;
	max-width: 150px;
	z-index: 3;
	transition: all 0.3s ease-in-out;
}

.industry-title {
	z-index: 3;
	
}

span.sha-gradient {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	transition: all 0.3s ease-in-out;
}

a.industry-highlighter:hover .industry-block span.sha-gradient {
	opacity: 1;
}

a.industry-highlighter:hover .industry-block {
	color: white;
}

ul.industries-list {}

ul.industries-list a {
	display: block;
	padding: 10px 0;
	border-bottom: 1.3px dotted;
	color: #525357;
	transition: all 0.3s ease-in-out;
}

ul.industries-list a:hover {
	color: #a4a4a6;
}

.industry-lp {
	display: inline-block;
	color: #ccc;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9em;
	font-weight: normal;
	
	padding: 10px;
	border-radius: 4px;
	margin: 0 10px 15px 0;
	animation: highlighter 12s infinite ease-in-out;
}

.industry-lp:nth-of-type(2) {animation: highlighter2 12s infinite ease-in-out;}
.industry-lp:nth-of-type(3) {animation: highlighter3 12s infinite ease-in-out;}
.industry-lp:nth-of-type(4) {animation: highlighter4 12s infinite ease-in-out;}
.industry-lp:nth-of-type(5) {animation: highlighter5 12s infinite ease-in-out;}
.industry-lp:nth-of-type(6) {animation: highlighter6 12s infinite ease-in-out;}
.industry-lp:nth-of-type(7) {animation: highlighter7 12s infinite ease-in-out;}
.industry-lp:nth-of-type(8) {animation: highlighter8 12s infinite ease-in-out;}
.industry-lp:nth-of-type(9) {animation: highlighter9 12s infinite ease-in-out;}
.industry-lp:nth-of-type(10) {animation: highlighter10 12s infinite ease-in-out;}
.industry-lp:nth-of-type(11) {animation: highlighter11 12s infinite ease-in-out;}




@keyframes highlighter11 {
	60%, 100% {color: transparent;}
	0% {color: transparent;}
	55% {color: white;}
}

@keyframes highlighter10 {
	55%, 100% {color: transparent;}
	0% {color: transparent;}
	50% {color: white;}
}

@keyframes highlighter9 {
	50%, 100% {color: transparent;}
	0% {color: transparent;}
	45% {color: white;}
}

@keyframes highlighter8 {
	45%, 100% {color: transparent;}
	0% {color: transparent;}
	40% {color: white;}
}

@keyframes highlighter7 {
	40%, 100% {color: transparent;}
	0% {color: transparent;}
	35% {color: white;}
}

@keyframes highlighter6 {
	35%, 100% {color: transparent;}
	0% {color: transparent;}
	30% {color: white;}
}

@keyframes highlighter5 {
	30%, 100% {color: transparent;}
	0% {color: transparent;}
	25% {color: white;}
}

@keyframes highlighter4 {
	25%, 100% {color: transparent;}
	0% {color: transparent;}
	20% {color: white;}
}

@keyframes highlighter3 {
	20%, 100% {color: transparent;}
	0% {color: transparent;}
	15% {color: white;}
}

@keyframes highlighter2 {
	15%, 100% {color: transparent;}
	0% {color: transparent;}
	10% {color: white;}
}

@keyframes highlighter {
	10%, 100% {color: transparent;}
	0% {color: transparent;}
	5% {color: white;}
}

/* -------------------------------- 

Surplus Capital Assets Page

-------------------------------- */

.ms-aim {
	padding-top: 100px;
	padding-bottom: 100px;
}

img.cover-image {
	width: 100%;
	border-radius: 2px;
	box-shadow: 0 0 20px rgba(35,74,156,0.30);
}


span.step-guide {
	display: block;
	font-size: 0.9em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #495566;
	margin-bottom: 20px;
}

span.step-guide.dark {
	color: #26364c;
}

span.step-guide:before {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	content: "1";
	line-height: 1.5;
	text-align: center;
	width: 30px;
	height: 30px;
	color: white;
	background: #4dc1dd;
	border: 2px solid #4dc1dd;
	border-radius: 50%;
	margin-right: 7px;
}

span.radiate {
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	border: 2px solid #4dc1dd;
	border-radius: 50%;
	z-index: 2;
}

span.step-guide.two:before {content: "2";}
span.step-guide.three:before {content: "3";}
span.step-guide.four:before {content: "$";}


.animate-left.step-guide span.radiate {
	animation: growPop 1s ease;
	animation-delay: 0.3s;
}


@keyframes growPop {
	0% {transform: scale(1); opacity: 1;}
	100% {transform: scale(3); border: 0.5px solid #4dc1dd; opacity: 0;}
}

h1.page-guide {
	display: inline-block;
	color: white;
	font-size: 0.7em;
	font-family: 'Config-Bold', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 10px 15px;
	margin-bottom: 20px;
}


ul.features {
	list-style-type: disc;
	margin: 20px 0 0 15px;
	font-size: 0.9em;
}

ul.features li {
	margin-bottom: 15px;
}



/* -------------------------------- 

Manage Surplus Steps

-------------------------------- */

a.arrow-link {
	display: block;
	font-size: 1.5em;
	color: #f7f8fc;
	background: #3875f7;
	width: 50px;
	height: 50px;
	line-height: 1.75em;
	border-radius: 50%;
	text-align: center;
	margin: 20px auto 0;
	transition: all 0.3s ease-in-out;
	animation: verticalPulse 1s ease-in-out infinite;
}

a.arrow-link:hover {
	color: #4dc1dd;

}

@keyframes verticalPulse {
	0% {transform: translateY(0);}
	50% {transform: translateY(10%);}
	100% {transform: translateY(0);}
}


.ms-steps {
	position: fixed;
	background: #f7f8fc;
	width: 100%;
	z-index: 99;
	top: -100px;
	opacity: 0;
	box-shadow: 0 0 20px rgba(35,74,156,0.30);
	transition: all 0.3s ease-in-out;
}

.menu-items {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.menu-items li {
	display: inline-block;
	float: left;
	width: 25%;
	margin: 0;
}

.menu-items li a {
	display: inline-block;
	color: #495566;
	font-size: 0.9em;
	width: 100%;
	text-align: center;
	padding: 10px;
	vertical-align: bottom;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
	transition: all 0.3s ease-in-out;
}




div.step-one-container,
div.step-two-container,
div.step-three-container,
div.step-four-container {position: relative;}

a.step-target {
  position: absolute;
  left: 0px;
  top: -135px;
	background: red;
}

a.step-target-higher {
  position: absolute;
  left: 0px;
  top: -145px;
	background: red;
}

.activate>a.step-link {
	color: white;
	background: #4dc1dd;
}


.steps-nav {
	position: fixed;
	top: 25px;
	width: 100%;
	max-width: 1500px;
	background: #f7f8fc;
	box-shadow: 0 0 20px rgba(35,74,156,0.30);
	text-align: right;
	z-index: 3;
	transition: all 0.3s ease-in-out;
}

.steps-nav ul {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.steps-nav li {
	display: inline-block;
	float: left;
	background: #4dc1dd;
}

.steps-nav li:last-of-type {background: #3875f7;}

.steps-nav li a {
	display: inline-block;
	font-size: 0.9em;
	color: white;
	padding: 10px 20px;
	vertical-align: bottom;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
	transition: all 0.3s ease-in-out;
}



/* AIM steps nav */


.steps-nav-aim,
.steps-nav-techfootin {
	position: fixed;
	top: 25px;
	width: 100%;
	max-width: 1500px;
	background: #f7f8fc;
	box-shadow: 0 0 20px rgba(35,74,156,0.30);
	text-align: center;
	z-index: 4;
	transition: all 0.3s ease-in-out;
}

.steps-nav-aim ul,
.steps-nav-techfootin ul{
	display: block;
	margin: 0 auto;
	width: 100%;
}


.steps-nav-aim li,
.steps-nav-techfootin li {
	display: inline-block;
	float: left;
	width: 20%;
	margin: 0;
}

.steps-nav-aim li:last-of-type a,
.steps-nav-techfootin li:last-of-type a {background: #3875f7; color: white;}

.steps-nav-aim li a,
.steps-nav-techfootin li a{
	display: inline-block;
	text-align: center;
	font-size: 0.9em;
	color: #495566;
	width: 100%;
	padding: 10px 20px;
	vertical-align: bottom;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0;
	transition: all 0.3s ease-in-out;
}


/* Drop Steps Nav */
.ms-steps-drop {top: 0; opacity: 1;}


/* -------------------------------- 

Landing Page Banner

-------------------------------- */
.lp-banner {
/*	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
*/
	background: url("../images/lp-banner.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	color: white;
	padding: 70px;
}


.lp-banner.upcoming-auctions {
	background: url("../images/banner-upcoming-auctions.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

}

.lp-banner.warehousing {
	background: url("../images/banner-warehousing.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

}

.lp-banner.forklift-rental {
	background: url("../images/banner-forklift-rental.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

}

.lp-banner.industries {
	background: url("../images/banner-industries.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

}

.lp-banner.contact {
	background: url("../images/banner-contact.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

}



.lp-banner h1 {
	font-size: 2.6em;
	margin: 0;
}

.gradient-headline {
	background: -webkit-linear-gradient(left, var(--primary-red), #ffb41e);
	background: -o-linear-gradient(left, var(--primary-red), #ffb41e);
	background: linear-gradient(to right, var(--primary-red), #ffb41e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ros-benefit {
	display: block;
	margin: 0 auto 20px;
}

/* -------------------------------- 

Footer

-------------------------------- */
footer {
	color: var(--secondary-ghost);
}

footer h4 {
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0;
}

footer ul {
	margin: 10px 0 60px 0;
	color: #8e8e90;
}


footer ul li a {
	display: block;
	color: #8e8e90;
	padding: 7px 0;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

footer ul li a:hover {
	color: white;
}

.social-media-icon img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 40px;
	height: 40px;
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.social-media-icon:hover img {
	opacity: 1;
}

/* -------------------------------- 

Back to top button

-------------------------------- */

.to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	text-align: center;
	background: rgba(21,33,48,0.7);
	color: white;
	font-size: 0.9em;
	line-height: 70px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease-in-out;
}

.to-top:hover {background: rgba(21,33,48,0.9);}

.showBackToTop {
	opacity: 1;
	transform: translateX(0);
}




/* -------------------------------- 

Mobile Styling

-------------------------------- */

@media screen and (max-width: 950px) {
	
	.slider-industry.hide-on-mobile {display: none;}
	.slider-industry.hide-on-desktop.display-on-mobile {display: inline-block;}
	
	.hide-on-mobile {display: none;}
	
	.display-on-mobile {display: block;}
	
	.top-bar {text-align: center;}
	
	.brand {
		top: 57px;
		left: 20px;
		width: 50px;
		height: 50px;
		background: url("../images/silicon-hills-auctions-logomark.svg");
		background-repeat: no-repeat;
		background-size: 50px 50px;
	}
	
	.mobile-nav {
		position: relative;
		width: 100%;
		height: 70px;
		background: var(--primary-charcoal);
		z-index: 10;
		box-shadow: 0 0 20px rgba(0,0,0,0.30);

	}
	
	.nav-trigger {
		position: absolute;
		z-index: 20;
		top: 55px;
		right: 20px;
		height: 44px;
		width: 44px;
		overflow: hidden;
		color: transparent;
		white-space: nowrap;
		text-indent: 100%;	
	}

	.nav-trigger span,
	.nav-trigger span::before,
	.nav-trigger span::after {
		position: absolute;
		width: 35px;
		height: 2px;
		background: -webkit-linear-gradient(left, #f7f8fc, #f7f8fc);
		background: -o-linear-gradient(left, #f7f8fc, #f7f8fc);
		background: linear-gradient(to right, #f7f8fc, #f7f8fc);
		transition: all 0.3s ease-in-out;
	}

	.nav-trigger span {
		top: 45%;
		left: 0;
		transition: all .3s;
	}

	.nav-trigger span::before,
	.nav-trigger span::after {
		content:'';
		top: 0;
		left: 0;
		transition: all .3s, transform .3s;
	}

	.nav-trigger span::before {transform: translateY(-8px); width: 44px;}

	.nav-trigger span::after {transform: translateY(8px); width: 15px}


	.nav-open .nav-trigger span,
	.nav-open .nav-trigger span::before,
	.nav-open .nav-trigger span::after {width: 44px;}

	.nav-open .nav-container {transform: translateX(0);}

	.nav-container {
		position: fixed;
		overflow-y: scroll;
		-webkit-overflow-scrolling:touch;
		transform: translateX(-100%);
		transition: transform 0.3s;	
		width: 100%;
		height: 100vh;
		background: var(--primary-charcoal);
		margin-top: 0;
		z-index: 9;
		top: 100px;
	}

	.nav {
		margin: 25px 0 0 0;
		padding: 0;
		width: 100%;
		background: none;	
	}

	.nav a li {
		display: block;
		font-size: 0.9em;
		width: 100%;
		padding: 20px;
		border-radius: 0px;
		border-bottom: 1px solid var(--secondary-charcoal);
		color: var(--primary-ghost);
		text-align: left;
	}
	
	.nav a:last-of-type li {border-bottom: none;}
	
	
	.full-width-slider {
		height: 500px;
	}
	
	.full-width-slider-sd {
		height: 300px;
	}

	
	.type-container {
		position: absolute;
		top: 10%;
		width: 80%;
		padding: 0 20px;
		/*background: rgba(14,26,38,0.8);*/

	}

	
	.slides h2, 
	.slides h2.smaller {font-size: 2.3em;}
	
	.slider-dots-navigation {
		display: none;
		position: absolute;
		z-index: 3;
		bottom: 20px;
		left: -10px;
	}
	
	h3 {font-size: 2.3em;}
	
	.right-to-center {text-align: center;}
	.center-on-mobile {margin: 0 auto;}
	
}

/* -------------------------------- 

Remove zoom from Form inputs

-------------------------------- */
/* Remove Input Auto Zoom on Form Inputs */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    select,
    textarea,
    input {
        font-size: 16px;
    }

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px;
    }

}


/* -------------------------------- 

Sticky Bar

-------------------------------- */
.cta-bar {
	display: flex;
	align-items: center;
	height: 75px;
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #ffb41e);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #ffb41e);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #ffb41e);
	color: white;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);	
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.cta-bar-sam {
	display: flex;
	align-items: center;
	height: 75px;
	position: fixed;
	top: -100px;
	left: 0;
	right: 0;
	background: -webkit-linear-gradient(right, #4dc1dd, #4f76f7, #0F1E53);
	background: -o-linear-gradient(right, #4dc1dd, #4f76f7, #0F1E53);
	background: linear-gradient(to left, #4dc1dd, #4f76f7, #0F1E53);
	color: white;
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);	
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.sticky {
	position: fixed;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
}

.pulsing-indicator {
	display: block;
	width: 50px;
	height: 100px;
	border: 1.3px solid;
	color: var(--primary-red);
	margin: 0;
	border-radius: 35px;
	overflow: hidden;
	animation: pulseMotion 1.5s infinite;
}

.pulsing-indicator-sam {
	display: block;
	width: 50px;
	height: 100px;
	border: 1.3px solid;
	color: #4f76f7;
	margin: 0;
	border-radius: 35px;
	overflow: hidden;
	animation: pulseMotion 1.5s infinite;
}

.animated-arrows {
	display: block;
	width: 50px;
	height: 50px;
	transform: translateY(33px);
	background: url('../images/icon-animated-arrow.svg');
	background-size: 50px 50px;
}

.animated-arrows-sam {
	display: block;
	width: 50px;
	height: 50px;
	transform: translateY(33px);
	background: url('../images/icon-animated-arrow-sam.svg');
	background-size: 50px 50px;
}

@keyframes pulseMotion {
	0%{transform: translateY(0);}
	50%{transform: translateY(10px);}
	100%{transform: translateY(0);}
}

@keyframes arrowMotion {
	0%{transform: translateY(17px); opacity: 0;}
	100%{transform: translateY(50px); opacity: 1;}
}

.small-button {
	display: inline-block;
	border: 1.3px solid;
	color: var(--primary-ghost);
	padding: 10px 35px;
	border-radius: 35px;
	transition: all 0.3s ease-in-out;
}

.small-button:hover {
	background: rgba(255,255,255,0.1);
}


/* -------------------------------- 

Upcoming Auctions Page

-------------------------------- */
#filter-button {
	position: relative;
	display: block;
	text-align: center;
	padding: 10px 35px;
	border-radius: 35px;
	color: var(--secondary-ghost);
	background: -webkit-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: -o-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: linear-gradient(to right, var(--primary-charcoal), #3E3E43);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

span.filter-indicator {
	display: inline-block;
	position: relative;
	content: '';
	vertical-align: middle;
	width: 30px;
	height: 2px;
	background: var(--secondary-ghost);
	margin-right: 5px;
}

span.filter-slider {
	display: inline-block;
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	background: var(--secondary-ghost);
	border-radius: 50%;
	left: 4px;
	top: -4px;
	transition: all 0.3s ease-in-out;
}

.auction-filters {
	display: none;
	font-size: 0.9em;
	text-align: left;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}


.auction-filters li {
	display: block;
	border-top: 1.3px solid var(--secondary-charcoal);
	background: -webkit-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: -o-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: linear-gradient(to right, var(--primary-charcoal), #3E3E43);
	padding: 10px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.auction-filters li:hover {
	color: white;
}

.auction-filters li:last-child {
	border-radius: 0 0 4px 4px;
}


.show-filters#filter-button {
	border-radius: 4px 4px 0 0;
}

.show-filters span.filter-slider {
	left: 16px;
}

.show-filters .auction-filters {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	animation: displayFilters 0.6s;
}

@keyframes displayFilters {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.bar-button {
	display: block;
	text-align: center;
	padding: 10px 35px;
	border-radius: 35px;
	color: var(--secondary-ghost);
	background: -webkit-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: -o-linear-gradient(left, var(--primary-charcoal), #3E3E43);
	background: linear-gradient(to right, var(--primary-charcoal), #3E3E43);
	transition: all 0.3s ease-in-out;

}

.past-sale-logo {
	width: 100%;
	max-width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: 0 10px 20px rgba(38,41,44,0.1);
}

/* -------------------------------- 

SHA Management Team

-------------------------------- */
.personnel-card {
	text-align: center;
	background: white;
	padding: 60px 30px 30px;
	border-radius: 4px;
	box-shadow: 0 10px 20px rgba(38,41,44,0.1);
}

.personnel-card img.profile-photo {
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: 0 auto 20px;
}

a.social-media {display: block;}

a.social-media img {
	display: block;
	width: 40px;
	height: 40px;
	margin: 20px auto;
	transition: all 0.3s ease-in-out;
}

a.social-media:hover img {
	opacity: 0.8;
}

ul.bullet-list {
	padding: 30px 60px;
}

ul.bullet-list li {
	padding: 20px 0;
	border-bottom: 1.3px dotted;
}
ul.bullet-list li:last-child {
	border-bottom: none;

}



/****************************
New Auction Cards
****************************/
.sale-card {
	color: white;
	border-radius: 12px;
	overflow: hidden;
	text-align: center;
}

.cover-photo {
	display: flex;
	justify-content: center;
	align-items:center; 
	position: relative;
	width: 100%;
	height: 250px;
	background: url('https://mma.prnewswire.com/media/1016496/Illumitex_Corp.jpg?p=publish');
	background-size: cover;
	background-position: center center;
}

.offset-logo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
}

.links-bar {
	display: flex;
	align-items: center;
	background: -webkit-linear-gradient(left, #00753e, #95cc4d);
	background: -o-linear-gradient(left, #00753e, #95cc4d);
	background: linear-gradient(to right, #00753e, #95cc4d);
	height: 80px;
}

.links-bar a {
	display: inline-block;
	float: left;
	width: 50%;
	height: 100%;
	line-height: 80px;
	color: white;
	transition: all 0.3s ease-in-out;
}

.links-bar a:hover {
	background: rgba(0,0,0,0.1);
}


/* -------------------------------- 

Contact Form

-------------------------------- */

form {margin: 0;}

fieldset {
	display: block;
	width: 100%;
	border: 1.3px solid #a4a4a6;
	box-sizing: border-box;
	margin: 0;
	padding: 30px;
	border-radius: 6px;
	margin-bottom: 20px;
}

legend {
	font-size: 1.3em;
	padding: 0 30px 0 15px;
	margin: 0;
}

input[type=text],
input[type=tel],
input[type=email] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #efefef;
	padding: 15px;
	border-radius: 3px;
	margin: 0 0 15px;
	border: 0;
	outline: 0;
	box-shadow: inset 0 10px 20px rgba(38,41,44,0.05)
}

textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	background: #efefef;
	padding: 15px;
	border-radius: 3px;
	border: 0;
	outline: 0;
	box-shadow: inset 0 10px 20px rgba(38,41,44,0.05)
}


input[type=submit] {
	display: inline-block;
	font-family: 'Config-Bold', sans-serif;
	font-size: 1.1em;
	outline: 0;
	border: 0;
	color: white;
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	padding: 20px 35px;
	border-radius: 35px;
	box-shadow: none;
	transition: all 0.3s ease-in-out;

}
input[type=submit]:hover {
	box-shadow: 0 10px 20px rgba(38,41,44,0.3);	
}

.capitalize {text-transform: capitalize;}

select {
	display: block;
	width: 100%;
	padding: 15px;
	background: #efefef;
	border: none;
	box-shadow: inset 0 10px 20px rgba(38,41,44,0.05);
	border-radius: 3px;
}


.contact-page-list li {
	margin-bottom: 10px;
}



/* The container */
.container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background-color: #efefef;
	box-shadow: inset 0 10px 20px rgba(38,41,44,0.05);
	transition: all 0.3s ease-in-out;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	background-color: var(--primary-red);
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: var(--primary-red);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}




/* -------------------------------- 

Frequently Asked Questions FAQ

-------------------------------- */

.faq-link {
	text-align: center;
}

.faq-link img {
	display: block;
	width: 100px;
	margin: 0 auto 10px;
}

.accordion {
	position: relative;
	background-color: white;
	cursor: pointer;
	padding: 18px 50px 18px 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
}

.accordion:nth-of-type(2n+1) {background: var(--secondary-gray);}



.close-icon:before,
.close-icon {
	position: absolute;
	top: 20px;
	right: 50px;
	width: 2px;
	height: 20px;
	background: var(--primary-red);
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.close-icon:before {
	content: "";
	top: 0;
	right: 0;
	transform: rotate(90deg);
}




.active, .accordion:hover,
.accordion:active,
.accordion:nth-of-type(2n+1).active {
	background: -webkit-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: -o-linear-gradient(left, var(--secondary-red), var(--primary-red), #f01648);
	background: linear-gradient(to right, var(--secondary-red), var(--primary-red), #f01648);
	color: white;
}

.active .close-icon {
	transform: rotate(45deg);
	background: white;
}

.active .close-icon:before {background: white;}

.panel {
	padding: 20px;
	display: none;
	overflow: hidden;
	background: white;
	border-bottom: 1.3px solid #a4a4a6;
}

.panel:last-of-type {border-bottom: none;}


span.bottom-bar {
	display: block;
	height: 1.3px;
	width: 100%;
	background: #a4a4a6;
}







