/*=== BEGIN STYLE 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;
}
html {
	scroll-behavior: smooth;
}
/* input {
	width: 100%;
} */

/*=== 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;
}

/*=== ELEMENTS ===*/
* {
	box-sizing: border-box;
}
img {max-width: 100%;}
body {
	font-family: 'Roboto', sans-serif;
}
a:link, a:visited, a:active {text-decoration:none;color: unset;}
a:hover {text-decoration:none;}
hr{border:#000 1px solid;}
h1, h3, h4 {
	font-size: 28px;
	line-height: 40px;
}
.button-container {
	gap: 20px;
}
.default-page button, .about-page button, .thank-you-page button, .finance-page button {
	height: 50px;
    padding: 0px 20px;
    font-weight: 800;
	cursor: pointer;
	width: 100%;
	font-size: 16px;
}
button.set-width {
	width: max-content;
}
button.primary {
	border: 2px solid #072642;
	background-color: #072642;
	color: #ffffff;
	transition: .3s ease all;
}
button.primary:hover {
	background-color: unset;
	color: #072642;
}
button.secondary {
	border: 2px solid #072642;
	background-color: unset;
	color: #072642;
	transition: .3s ease all;
}
button.secondary:hover {
	background-color: #072642;
	color: #ffffff;
}

/*=== GLOBAL ===*/
.flex-container {
	display: flex;
}
.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%;
}
.set-width {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
    width: max-content;
}
.flex-wrap {
	flex-wrap: wrap;
}

.justify-center {
	justify-content: center;
}
.justify-right {
	justify-content: flex-end;
}
.justify-left {
	justify-content: flex-start;
}
.justify-between {
	justify-content: space-between;
}
.justify-evenly {
	justify-content: space-evenly;
}

.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;
}

.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;
}

.max-width {
	max-width: 1366px;
	width: 90%;
	margin: 0 auto;
}

.default-page, .about-page, .thank-you-page, .finance-page {
	background-color: #E2E2E2;
}
.clickable {
	cursor: pointer;
}
.accent-color {
	color: #E31D26;
}
.white-bkg {
	background-color: #ffffff;
}
header.site-header .logo, footer.site-footer .logo  {
	height: 80px;
	cursor: pointer;
	line-height: 0;
}
.heading {
	position: relative;
	padding: 35px 0;
}
.heading h1 {
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    color: #ffffff;
    padding: 5px 0;
}
.heading-background {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	height: 50px;
	background-color: #072642;
	width: 25%;
}

.image-container {
	position: relative;
}
.image-container .top-right-blue {
	background-color: #072642;
	width: 280px;
	height: 100%;
	position: absolute;
	top: -10px;
	right: -5px;
	z-index: 4;
}
.image-container .bottom-left-blue {
	background-color: #072642;
	width: 280px;
	height: 60%;
	position: absolute;
	bottom: 10px;
	left: -10px;
	z-index: 3;
}
.image-container .bottom-right-orange {
	background-color: #E31D26;
	width: 280px;
	height: 75%;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: 2;
}
.image-container .top-left-orange {
	background-color: #E31D26;
	width: 280px;
	height: 50%;
	position: absolute;
	top: 5px;
	left: -5px;
	z-index: 1;
}

.fiance-buttons.flex-container.flex-width.flex-horizontal.max-width {justify-content: space-between;padding: 40px 0;}

.flex-container.flex-width.flex-horizontal.max-width.finance-container {gap: 0 5%;}

.finance {    
	display: flex;
    flex-direction: column;
	justify-content: flex-start;
	padding-top:40px;
	width: 100%;
	
}

.finance .logo {
	padding: 20px;
	background-color: #fff;
	border-radius: 3px;
	border: 1px solid #072642;
	transition: .2s ease-in;
}

.finance .logo:hover {
	background-color: #efefef;
	box-shadow: 0 2px 5px 1px rgba(0,0,0,0.3);
}

.finance img{    
width: 70%;
	display: block;
	margin: 0 auto;
}


.currency img{ 
	width:90%;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 90%;
}


.currency { 
    padding-top: 7px;
}




.capital-about {    width: 100%;
    max-width: 500px;}
/*=== HEADER ===*/
header.site-header {
	margin-top: 20px;
	border-bottom: 1px solid #072642;
	line-height: 24px;
}
header.site-header .nav-group.desktop {
	border-top: 1px solid #072642;
	margin-top: 20px;
}
header.site-header form {
	border: 1px solid #072642;
	width: 45%;
}
header.site-header form .divider {
	width: 2px;
    height: 35px;
    background-color: #e2e2e2;
    margin: 0 10px;
}
header.site-header form select {
	font-size: 18px;
    border: unset;
    padding: 10px;
    width: auto;
    box-sizing: unset;
    display: unset;
    background: unset;
    border-radius: 0;
    color: unset;
    height: unset;
    line-height: unset;
}
header.site-header form input[type="text"] {
	font-size: 18px;
	padding: 10px 0 10px 5px;
	background-color: unset;
    border: none;
    border-radius: 0;
    box-sizing: unset;
    color: unset;
    display: unset;
    height: unset;
    line-height: unset;
    overflow: unset;
}
header.site-header form button {
	border: unset;
	background-color: unset;
	font-size: 18px;
    color: #E31D26;
	margin: 0 10px;
}

/*=== FOOTER ===*/
footer.site-footer {
	background-color: #072642;
	color: #ffffff;
	padding: 20px 0 40px;
	line-height: 24px;
}
footer.site-footer a:not(:last-of-type) {
	border-right: 2px solid #ffffff;
	padding-right: 10px;
    margin-right: 10px;
}
footer.site-footer .sub-footer {
	font-size: 14px;
}

/*=== PAGE STYLES ===*/
.sub-page:not(.inventory-page) {
	font-size: 16px;
	line-height: 24px;
}

/*=== DEFAULT.HTM ===*/
.default-page {
	font-size: 16px;
	line-height: 24px;
}
.default-page section.hero-container {
	background: url(/siteart/BlueLift.jpg);
	background-position: center;
	background-size: cover;
	height: 600px;
}
.default-page section.hero-container .hero-text-container {
	background-color: rgba(7, 38, 66, 0.75);
	padding: 15px;
	width: calc(33% - 20px);
	color: #ffffff;
	margin-top: 100px;
}
.default-page section.hero-container button.primary {
	margin-top: 15px;
	border: 2px solid #E31D26;
	background-color: #E31D26;
	color: #ffffff;
	width: 100%;
}
.default-page section.hero-container button.primary:hover {
	color: #E31D26;
	border: 2px solid #ffffff;
	background-color: #ffffff;
}
.default-page section.category-buttons {
	margin-top: -40px;
	gap: 40px;
	padding-bottom: 40px;
}
.default-page section.category-buttons .card {
	height: 225px;
	margin-top: -40px;
	color: #ffffff;
	text-shadow: 0 0 10px #000;
}
.default-page section.category-buttons .card.boom-lifts {
	background: url(/siteart/BlueBoomLiftPullType.jpg);
	background-position: center;
	background-size: cover;
	border-image: fill 0 linear-gradient(rgba(7, 38, 66, 0.70), rgba(7, 38, 66, 0.70));
	transition: .3s ease all;
}
.default-page section.category-buttons .card.telehandlers {
	background: url(/siteart/BlueTelehandler.jpg);
	background-position: center;
	background-size: cover;
	border-image: fill 0 linear-gradient(rgba(7, 38, 66, 0.70), rgba(7, 38, 66, 0.70));
	transition: .3s ease all;
}
.default-page section.category-buttons .card.all-inventory {
	background: url(/siteart/skytrak-telehandlers.jpg);
	background-position: center;
	background-size: cover;
	border-image: fill 0 linear-gradient(rgba(7, 38, 66, 0.70), rgba(7, 38, 66, 0.70));
	transition: .3s ease all;
}
.default-page section.category-buttons .card:hover {
	border-image: fill 0 linear-gradient(rgba(7, 38, 66, 0.0), rgba(7, 38, 66, 0.0));
}
.default-page section.brands {
	padding: 50px 0 35px 0;
}
.default-page section.brands h3 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	color: #ffffff;
	padding: 5px 0;
}
.default-page section.brands .brand-logo-container {
	padding: 45px 0 100px;
}
.default-page section.brands img {
	max-height: 35px;
	width: 100%;
}
.default-page section.welcome .welcome-text {
	padding: 75px 75px 75px 0;
}
.default-page section.welcome button {
	max-width: 250px;
}
.default-page section.welcome h3 {
	font-size: 18px;
	line-height: 18px;
}
.default-page section.welcome .image-container .image {
	position: relative;
	width: 280px;
    height: 100%;
    background-image: url(/siteart/GreenLift.jpg);
    background-position: center;
    background-size: cover;
	z-index: 100;
}
.default-page section.welcome p {
	padding: 50px 0;
}

/*** INVENTORYLAYOUT.HTM ***/
.inventory-page {
	padding-top: 50px;
}

/*** ABOUT.HTM ***/
.about-page {
	padding-top: 50px;
}
.about-page section.about .about-text {
	padding-right: 75px;
}
.about-page section.about .image-container .image {
	position: relative;
	width: 280px;
    height: 100%;
    background-image: url(/siteart/marcus.jpg);
    background-position: top;
    background-size: cover;
	z-index: 100;
}

/*** FINANCING.HTM ***/
.finance-page {
	padding-top: 50px;
}
.finance-page section.about .about-text {
	padding-right: 75px;
	margin-bottom: 25px;
}
.finance-page section.about button{
	max-width: max-content;
}
.finance-page section.about .logo-container  {
	gap: 35px;
}
.finance-page section.about .currency-finance {
	width: 100%;
	max-width: 350px;
	min-width: 250px;
}
.finance-page section.about .first-citizens-bank {
	width: 100%;
	max-width: 350px;
	min-width: 250px;
}
.finance-page section.about .patriot-financial {
	width: 100%;
	max-width: 200px;
	min-width: 100px;
}

/*** CONTACT-CARD.HTM ***/
section.contact {
	margin-top: 135px;
	background-color: #ffffff;
}
section.contact > div {
	padding: 50px;
}
section.contact .more-info {
	color: #ffffff;
	background: linear-gradient(0deg, rgba(7, 38, 66, 0.70), rgba(7, 38, 66, 0.70)), url(/siteart/OrangeBoomLift.jpg);
	background-position: left;
	background-size: cover;
}

/*** THANK-YOU.HTM ***/
.thank-you-page {
	padding-top: 50px;
}
.thank-you-page p.thank-you-text {
	margin: 25px 0;
}

/*** SCROLLING INVENTORY ***/
.scrolling-wrap {
	width:100%;
	height: 140px;
    padding-top: 50px;
	overflow:hidden;
	background-color: #E2E2E2;
}
.scrolling{
	width:100%;
	height:92px;
}

/*=== RESPONSIVE ===*/
@media only screen and (min-width: 2000px) {
	/*** DEFAULT.HTM ***/
	.heading-background {
		width: 40%;
	}
}
@media only screen and (max-width: 1000px) {
	/*** DEFAULT.HTM ***/
	.default-page section.brands img {
		max-height: 30px;
	}
}
@media only screen and (max-width: 825px) {
	/*** HEADER.HTM ***/
	footer.site-footer .logo {
		height: 50px;
	}
}
@media only screen and (max-width: 725px) {
	.Priority-capital img {width:100%;}
	
	.Priority-capital { 
	padding-top:80px;
    margin: 0 auto;
    text-align: center;}
	
	.mobile-only {
		display: flex;
	}
	.desktop-only {
		display: none;
	}
	.flex-horizontal {
		flex-direction: column;
	}

	button.set-width {
		width: 100%;
	}
	
	.heading-background {
		width: 55%;
	}
	.image-container {
		width: 100%;
		margin-top: 60px;
	}
	.image-container .top-right-blue {
		width: calc(100% - 40px);
		height: 100%;
		top: -20px;
		right: 10px;
	}
	.image-container .bottom-left-blue {
		width: calc(100% - 40px);
		height: 60%;
		bottom: 20px;
		left: 0;
	}
	.image-container .bottom-right-orange {
		width: calc(100% - 40px);
		height: 75%;
		bottom: -20px;
		right: 0px;
	}
	.image-container .top-left-orange {
		width: calc(100% - 40px);
		height: 50%;
		top: 5px;
		left: 10px;
	}

	/*** HEADER.HTM ***/
	header.site-header form {
		width: 100%;
		margin: 30px 0 5px;
		padding: 0;
	}
	header.site-header form select {
		padding: 0px 10px;
	}
	header.site-header form input {
		width: 100%;
		padding: 0px 0 0px 5px;
	}

	/*** FOOTER.HTM ***/
	footer.site-footer {
		padding: 40px 0;
	}
	footer.site-footer .logo {
		height: 75px;
	}
	footer.site-footer a:not(:last-of-type) {
		border-right: unset;
		padding-right: unset;
		margin-right: unset;
	}
	footer.site-footer .logo {
		margin-bottom: 30px;
	}
	footer.site-footer .sub-footer {
		margin-top: 30px;
		text-align: center;
	}

	/*** DEFAULT.HTM ***/
	.default-page section.hero-container .hero-text-container {
		width: 50%;
	}
	.default-page section.category-buttons .card h2 {
		padding: 75px 0;
	}
	.default-page section.category-buttons {
		padding-top: 60px;
		padding-bottom: 60px;
		gap: 0;
	}
	.default-page section.category-buttons .card {
		margin-top: 0;
	}
	.default-page section.brands {
		padding: 60px 0;
	}
	.default-page section.brands .brand-logo-container {
		padding: 45px 0 25px;
	}
	.default-page section.brands .brand-logo-container .row:first-of-type {
		margin-bottom: 20px;
	}
	.default-page section.brands .brand-logo-container .row:last-of-type {
		margin-top: 20px;
	}
	.default-page section.brands .brand-logo-container .row .flex-width {
		flex: unset;
	}
	.default-page section.welcome .welcome-text {
		padding: 0 0 50px;
	}
	.default-page section.welcome p {
		padding: 25px 0;
	}
	.default-page section.welcome button {
		max-width: 100%;
	}
	.default-page section.welcome .image-container .image {
		width: calc(100% - 40px);
		height: 475px;
		margin: auto;
	}

	/*** CONTACT-CARD.HTM ***/
	section.contact {
		margin-top: 100px;
	}
	section.contact .more-info {
		gap: 10px;
	}

	/*** ABOUT.HTM ***/
	.about-page section.about .image-container .image  {
		width: calc(100% - 40px);
		height: 475px;
		margin: auto;
	}
	.about-page section.about .about-text  {
		padding-right: 0;
	}

	/*** FINANCING.HTM ***/
	.finance-page section.about .about-text {
		padding-right: 0;
		margin-bottom: 25px;
	}
	.finance-page section.about button{
		max-width: 100%;
	}
	.finance-page section.about .logo-container  {
		margin-top: 60px;
	}
}

@media only screen and (max-width: 575px) {
	/*** DEFAULT.HTM ***/
	.default-page section.hero-container .hero-text-container {
		width: 75%;
	}
}

@media only screen and (max-width: 400px) {
	/*** DEFAULT.HTM ***/
	header.site-header .logo, footer.site-footer .logo {
		height: 50px;
	}
	header.site-header form select {
		font-size: 16px;
	}
	header.site-header form input[type="text"] {
		font-size: 16px;
	}
	.default-page section.brands .brand-logo-container .row {
		flex-direction: column;
		gap: 35px;
	}
	section.contact > div {
		padding: 20px;
		word-break: break-word;
	}
}