* {
	-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;
}
html {
    scroll-behavior: smooth;
}
a {text-decoration:none;cursor: pointer;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
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 {
	cursor: pointer;
	border: none;
	border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*=== END RESET ===*/
::-moz-selection {
    background: #262626;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #262626;
    color: #fff;
    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: "acumin-variable", sans-serif;
	font-variation-settings:"wght" 400;
	font-style: normal;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "acumin-variable", sans-serif;
}
h1 {
	font-size: 52px;
	line-height: 58px;
	font-variation-settings:"wght" 800;}
h2 {
	font-size: 26px;
	line-height: 32px;
	font-variation-settings:"wght" 700;
}
h3 {font-size: 22px;line-height: 28px;
	font-variation-settings:"wght" 700;}
h4 {font-size: 18px;line-height: 24px;
	font-variation-settings:"wght" 700;}
.button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding-top: 25px;
}
button.primary-button {
	font-size: 18px;
    transition: all ease .3s;
    padding: 10px 20px;
    background-color: #AF121B;
    color: #FFFFFF;
    border: 1px solid #AF121B;
	text-align: left;
}
button.primary-button:hover {
	background-color: #FFFFFF;
	color: #AF121B;
}
button.secondary-button {
	font-size: 18px;
    transition: all ease .3s;
    padding: 10px 20px;
    background-color: #262626;
    color: #FFFFFF;
    border: 1px solid #ffffff;
	text-align: left;
}
button.secondary-button:hover {
	background-color: #ffffff;
	color: #262626;
}
button.underline-button {
	font-size: 18px;
    min-width: max-content;
	width: 100%;
    transition: all ease .3s;
    padding: 10px 15px;
    border-bottom: 1px solid #262626;
    color: #262626;
	background-color: unset;
	margin-top: 10px;
}
button.underline-button:hover {
	background-color: #ffffff;
	color: #262626;
}

/*=== 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%;
}
.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;
}
.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;
}

.align-self-center {
	align-self: center;
}
.align-self-right {
	align-self: flex-end;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.left-icon {
	margin-right: 10px;
}
.right-icon {
	margin-left: 10px;
}
.clickable {
	cursor: pointer;
}

.mobile-only {
	display: none;
}

.max-width {
	max-width: 1920px;
	width: 90%;
	margin: 0 auto;
}
.hidden {
	display: none;
	transition: all ease .3s;
}
.success-message {
	color: #188d2b;
}
.fail-message {
	color: #8d1818;
}
ul.breadcrumb {
	padding: 30px 0;
	list-style: none;
}
ul.breadcrumb li {
	display: inline;
	font-size: 14px;
	line-height: 18px;
}
ul.breadcrumb li+li:before {
	padding: 8px;
	color: #E3BD00;
	content: "/\00a0";
}
ul.breadcrumb li a {
	text-decoration: none;
}
ul.breadcrumb li a:hover {
	text-decoration: underline;
}
.logo-container .logo {
	width: 100%;
	max-width: 275px;
	height: 100%;
    object-fit: contain;
    object-position: center;
}
a.logo-container {
	line-height: 0;
}
.video {
	aspect-ratio: 16/9;
	object-fit: contain;
    object-position: center;
}
.social-media-container {
	gap: 10px;
}
.social-media-container .social-media-tile {
	width: 40px;
	height: 40px;
	transition: ease .3s all;
	color: #ffffff;
	font-size: 21px;
}
.flair-container {
	gap: 0px 10px;
}
.flair-container .flair {
	border-radius: 5px;
	background-color: #262626;
	color: #ffffff;
	padding: 3px 10px;
	font-size: 14px;
	margin-bottom: 10px;
}
.sub-text {
	font-size: 14px;
	line-height: 18px;
	font-style: italic;
}
.custom-grey-container {
	background-color: #f0f0f0;
}
.custom-charcoal-container {
	background-color: #262626;
	color: #ffffff;
}
.custom-charcoal-container .flair-container .flair {
	background-color: #AF121B;
	color: #ffffff;
}
.custom-two-tone-container {
	background: linear-gradient(120deg, #F8F8F8 50%, #F2F2F2 50.1%);
}
.ghost-logo-container {
	background-image: url("/siteart/nationwide-haul-ghost-logo.png");
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 50%;
}
.full-width-img img {
	max-height: 350px;
	object-position: center;
	object-fit: cover;
}
.grid-system {
	display: grid;	
    justify-items: center;
    grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}
.grid-system .grid-system-item {
	box-shadow: 0 0 15px 0px #a5a5a5;
	transition: .3s ease all;
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: #ffffff;
}
.grid-system .grid-system-item:hover {
	box-shadow: 0 0 15px 0px #696969;
}
.text-banner {
	background-color: #262626;
	color: #ffffff;
	padding: 20px 5vw;
	gap: 10px 15px;
}
.text-banner > div {
	gap: 15px 10px;
}
.text-banner .upsell-divider {
	width: 2px;
    background-color: #262626;
    height: auto;
}
.text-banner .secondary-upsell {
	color: #AF121B;
}
.text-banner h3 {
	font-size: 20px;
	line-height: 24px;
	font-variation-settings:"wght" 500;
	text-align: center;
}
.text-banner .button-group {
	padding: 0;
}
.highlight {
	color: #AF121B;
}
.pdf-group {
	gap: 20px;
}
.pdf-group a {
	background-color: #ffffff;
	box-shadow: 0 0 15px 0px #a5a5a5;
	padding: 10px 15px 5px;
	width: clamp(150px, 100%, calc(25% - 15px));
}
.pdf-group a:hover {
	box-shadow: 0 0 15px 0px #696969;
}
.pdf-group i {
	color: #AF121B;
	font-size: 32px;
}
.pdf-group p {
	font-weight: bold;
}
.accordion {
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
}  
.panel {
	padding: 20px;
	background-color: #f0f0f0;
	display: none;
	overflow: hidden;
	justify-content: center;
}
.video {
	line-height: 0;
}
.submit-button {
    background: #af121b;
    color: #fff;
    padding: 8px;
    width: 320px;
}
.newsletterfield {
    width: 100%;
    border: solid 1px #a1a1a1;
    padding: 8px;
    box-sizing: border-box;
	margin-right: 10px;
}
.hpnewslettersect {
    padding: 40px 0px 5px 0px;
    background: #f1f1f1;
}
.newsform{display: flex; justify-content: center; width: 100%; padding: 20px 50px 50px 50px; flex-wrap: wrap;}
.newsform form{width: 60%; display: flex; justify-content: center; flex-wrap: wrap;}
/*=== HEADER ===*/
header.site-header {
	box-shadow: 0px -10px 15px 15px #e7e7e7;
	font-family: "acumin-variable", sans-serif;
	font-variation-settings:"wght" 400;
	font-style: normal;
}
header.site-header .top-header {
	background-color: #262626;
	color: #ffffff;
	justify-content: center;
	padding: 10px 0;
	gap: 35px;
	font-size: 14px;
}
header.site-header .nav-group {
	padding: 15px 5vw 10px;
}
header.site-header .inv-search-form > .flex-container {
	gap: 5px!important;
}
header.site-header form.inv-search-form {
	padding-top: 0!important;
}
header.site-header .inv-search-form input, header.site-header .inv-search-form select, header.site-header .inv-search-form button {
	border: unset!important;
	background-color: #e7e7e7!important;
	padding: 5px!important;
	border-radius: 0!important;
	color: #57595b!important;
	font-size: 16px!important;
	line-height: 18px!important;
	height: unset!important;
}
header.site-header .inv-search-form button {
	font-size: 14px!important;
	padding: 5px 10px!important;
}
header.site-header .inv-search-form.mobile-only {
	padding: 20px 0 20px!important;
}
.submit {
    font-size: 15px;
    width: 240px!important;
	background: #eb242a;
	border: none;
    height: 40px!important;
    font-weight: 700;
    text-transform: uppercase;
	cursor: pointer;
	margin: 0px!important;
	transition-duration: 0.5s;
	color: #fff;
}
.submit:hover {
   
    background: #000;
	color: #fff;
	border-radius: 5px;

}
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}
#formpage input.submit-button, #formpage input.submit-button:focus, #submit-btn button {
	background: #af121b;
    border: solid 0px #000;
    padding: 4px 75px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    border-radius: 0px;
    animation-timing-function: ease-in;
    font-family: "Sofia Sans", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    height: 40px;
    transition-duration: 0.5s;
}
#formpage input.submit-button:hover, #submit-btn button:hover{ border-radius: 0px; background:#fff;    border: 1px solid #AF121B; color: #AF121B; }
#submit-btn {
    padding: 0px;
    position: relative;
    text-align: right;
    background: transparent;
    font-family: "Sofia Sans", sans-serif;
    display: flex;
    justify-content: center;
}
.submit-button {
    padding: 3px 0px;
    position: relative;
    text-align: center;
	background: #af121b;
    font-family: "Sofia Sans", sans-serif;
    border: 0px;
	border-radius: 0px;
    cursor: pointer;
    width: 200px !important;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 34px !important;
	margin: 0px!important;
	text-transform: uppercase;
	font-weight: 600;	
	transition-duration: 0.5s;
	color: #fff;
}
.submit-button:hover{background:#fff;    border: 1px solid #AF121B; color: #AF121B;}
.captcha-button{width:100%; margin:0 auto; display: flex; justify-content: center;}
.include-captcha{display:none; width: 100%;}
#formpage input.submit-button{color:#fff!important;}
/*=== FOOTER ===*/
footer.site-footer {
	font-size: 14px;
	box-shadow: 0px 0px 15px 0px #e7e7e7;
	line-height: 24px;
	font-family: "acumin-variable", sans-serif;
	font-variation-settings:"wght" 400;
	font-style: normal;
}
footer.site-footer .footer-nav {
	gap: 25px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}
footer.site-footer .footer-content {
	margin: 5vw 0;
}
footer.site-footer .footer-content .top-footer {
	padding-bottom: 25px;
	gap: 15px;
}
footer.site-footer .footer-content .top-footer .social-media-container .social-media-tile:nth-child(1):hover,footer.site-footer .footer-content .top-footer .social-media-container .social-media-tile:nth-child(2):hover,footer.site-footer .footer-content .top-footer .social-media-container .social-media-tile:nth-child(3):hover,footer.site-footer .footer-content .top-footer .social-media-container .social-media-tile:nth-child(4):hover {
	background-color: #e7e7e7;
	color: #262626;
}
footer.site-footer .footer-content .top-footer .social-media-container a:nth-child(1) .social-media-tile {
	background-color: #AF121B;
}
footer.site-footer .footer-content .top-footer .social-media-container a:nth-child(2) .social-media-tile {
	background-color: #262626;
}
footer.site-footer .footer-content .top-footer .social-media-container a:nth-child(3) .social-media-tile {
	background-color: #474747;
}
footer.site-footer .footer-content .top-footer .social-media-container a:nth-child(4) .social-media-tile {
	background-color: #727272;
}
footer.site-footer .bottom-footer {
	color: #ffffff;
	background-color: #262626;
	padding: 10px 0;
}

/*=== PAGE STYLES ===*/

/*=== DEFAULT-PAGE ===*/
.default-page {
	font-size: 16px;
	line-height: 24px;
}
.default-page .hero-container {
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 600px, rgba(255, 255, 255, 0)),
    url(/siteart/blue-truck-reefer.jpg);
	background-position: center;
	background-size: cover;
	padding: 5vw 0;
	min-height: 450px;
	max-height: 550px;
	transition: .3s ease all;
}
.default-page .hero-container > .max-width {
	gap: 20px;
}
.default-page .hero-container .hero-button-container {
	gap: 10px;
}
.default-page .hero-container p {
	font-size: 18px;
}
.default-page .hero-container .social-media-container .social-media-tile {
	background-color: #262626;
}
.default-page .hero-container .social-media-container .social-media-tile:hover {
	background-color: #e7e7e7;
    color: #262626;
}
.default-page .offerings-section {
	padding: 5vw 0;
}
.default-page .offerings-section .offerings-container {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0 25px;
	justify-items: center;
}
.default-page .offerings-section .offerings-container .tile {
    box-shadow: 0 0 15px 0px #a5a5a5;
    text-align: center;
    width: 100%;
}
.default-page .offerings-section .offerings-container .tile img {
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
	max-height: 200px;
	border-radius: 0 0 25px 0;
}
.default-page .offerings-section .offerings-container .tile .tile-text {
	padding: 25px 35px 0;
}
.default-page .offerings-section .offerings-container .tile .button-group {
	padding: 35px 35px 35px;
}
.default-page .offerings-section .offerings-container .tile .button-group button {
	text-align: center;
}
.default-page .authorized-dealer-section .max-width {
	max-width: 75%;
	margin: auto;
	margin: 5vw auto;
}
.default-page .authorized-dealer-section .brand-container {
	display: flex;
	gap: 40px;
	justify-items: center;
    align-items: center!important;
	max-width: 1200px;
	margin: auto;
}
.default-page .authorized-dealer-section .brand-container a {
	margin: auto;
}

.default-page .authorized-dealer-section .brand-container img {
	max-width: 225px;
	width: 100%;
	max-height: 125px;
	object-fit: contain;
	margin-left: auto;
	margin-right: auto;
}
.default-page .quick-inventory-nav {
	padding: 5vw 0;
}
.default-page .quick-inventory-nav .inventory-category {
	gap: 20px 30px;
	/* display: grid;
	grid-template-columns: repeat(3, 1fr); */
}
.default-page .quick-inventory-nav .inventory-category a {
	width: calc(25% - 23px);
}
.default-page .quick-inventory-nav .inventory-category a button {
	width: 100%;
	text-align: center;
}
.default-page .why-section {
	background-color: #262626;
	color: #ffffff;
	justify-content: center;
	text-align: center;
	padding: 5vw 0;
}
.default-page .why-section .video {
	width: 50%;
}

/*=== SUB-PAGE ===*/
.sub-page:not(.inventory-page) {
	font-size: 16px;
	line-height: 24px;
}
.sub-page {
	padding: 0;
}
.sub-page .row {
	border-bottom: 1px solid #f0f0f0;
}
.sub-page ul.list {
	list-style:disc;
	padding-left: 20px;
}
.sub-page ol.list {
	list-style: decimal-leading-zero;
	padding-left: 25px;
}
.sub-page .text-container {
	padding: 5vw;
	height: 100%;
}
.sub-page .detail-brand-logo {
	max-height: 75px;
	object-fit: contain;
	object-position: left;
}
.sub-page .image-block-container .image-block {
	object-fit: cover;
	object-position: center;
	width: 100%;
    height: 100%;
	line-height: 0;
}
.sub-page .image-block-container {
	line-height: 0;
}

/*=== INVENTORY ===*/
.inventory-page {
	padding: 0 0 5vw 0;
}
.inventory-page .text-banner {
	margin-bottom: 5vw;
	background-color: #f0f0f0;
	color: #262626;
}

/*=== TCS-FUEL-CARD ===*/
.tcs-fuel-card-page .fuel-partners .fuel-brand-container {
	display: grid;
    justify-items: center;
    grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}
.tcs-fuel-card-page .fuel-partners .fuel-brand-container .fuel-partner-brand {
	box-shadow: 0 0 15px 0px #a5a5a5;
	transition: .3s ease all;
	background-color: #ffffff;
	width: 100%;
	text-align: center;
}
.tcs-fuel-card-page .fuel-partners .fuel-brand-container .fuel-partner-brand:hover {
	box-shadow: 0 0 15px 0px #696969;
}
.tcs-fuel-card-page .fuel-partners .fuel-brand-container .fuel-partner-brand img {
	aspect-ratio: 1/1;
	object-fit: contain;
	object-position: center;
}

/*=== TCS-FUEL-CARD ===*/
.blog-page .blog-excerpt .blog-image {
	height: 250px;
	margin-bottom: 15px;
}
.blog-page .blog-excerpt .blog-image img {
	object-fit: cover;
    object-position: center;
	width: 100%;
}

/*=== WARRANTY-PLANS ===*/
.warranty-plans-page .warranty-logo-container {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	align-items: center;
}
.warranty-plans-page .warranty-logo-container img {
	object-fit: contain;
	object-position: center;
}

/*=== NEW-ERA-DRUG-TESTING ===*/
.new-era-drug-testing-page .dot-consortium-programs li {
    padding: 15px 20px;
	margin: 25px 0;
	background-color: #FFFFFF;
	box-shadow: 0 0 15px 0px #a5a5a5;
}
.new-era-drug-testing-page .dot-consortium-programs li:hover {
	box-shadow: 0 0 15px 0px #696969;
}
.new-era-drug-testing-page .dot-consortium-programs .left-icon {
	margin-right: 10px;
    width: 25px;
    text-align: center;
	align-self: center;
}

/*=== FINANCING ===*/
.financing-page .finance-awarded {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.financing-page .finance-awarded .finance-item {
	box-shadow: 0 0 15px 0px #a5a5a5;
	transition: .3s ease all;
	width: 100%;
	padding: 10px;
	text-align: center;
	background-color: #ffffff;
}
.financing-page .finance-awarded .finance-item h3 {
	font-size: 18px;
}
.financing-page .finance-awarded .finance-item .terms {
	font-size: 24px;
	color: #AF121B;
}
.financing-page .finance-awarded .finance-item:hover {
	box-shadow: 0 0 15px 0px #696969;
}
.financing-page .grid-system {
	grid-template-columns: repeat(3, 1fr);
}

/*=== SEMI-TRAILER-LEASING ===*/
.semi-trailer-leasing-page .grid-system {
	grid-template-columns: repeat(3, 1fr);
}

/*=== SEMI-TRAILER-RENTAL ===*/
.semi-trailer-rental-page .grid-system {
	grid-template-columns: repeat(3, 1fr);
}
.semi-trailer-rental-page ul.list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 75px;
}

/*=== TRUCK-TRAILER-REPAIR ===*/
.truck-trailer-repair-page .red-banner.text-banner {
	background-color: #AF121B;
	color: #ffffff;
}
.truck-trailer-repair-page .clear-banner.text-banner {
	background-color: #ffffff;
}
.truck-trailer-repair-page .grid-system {
	grid-template-columns: repeat(2, 1fr);
}
.truck-trailer-repair-page .mosaic {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 5px;
	grid-auto-flow: row;
	grid-template-areas:
		"img1 img1 img2"
		"img3 img3 img2"
		"img5 img4 img4"
	;
	width: 100%;
}
.truck-trailer-repair-page .img1 { grid-area: img1; max-height: 350px;}
.truck-trailer-repair-page .img2 { grid-area: img2; max-height: 705px;}
.truck-trailer-repair-page .img3 { grid-area: img3; max-height: 350px;}
.truck-trailer-repair-page .img4 { grid-area: img4; max-height: 350px;}
.truck-trailer-repair-page .img5 { grid-area: img5; max-height: 350px;}
.truck-trailer-repair-page .mosaic img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
img.image-block {
	object-fit: cover;
    object-position: right;
    width: 100%;
    height: 100%;
    line-height: 0;}

/*=== RV-BUS-REPAIR ===*/
.rv-bus-repair-page .red-banner.text-banner {
	background-color: #AF121B;
	color: #ffffff;
}
.rv-bus-repair-page .clear-banner.text-banner {
	background-color: #ffffff;
}
.rv-bus-repair-page .grid-system {
	grid-template-columns: repeat(2, 1fr);
}
.rv-bus-repair-page .mosaic {  display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 5px;
	grid-auto-flow: row;
	grid-template-areas:
		"img1 img1 img3"
		"img2 img2 img3";
}
.rv-bus-repair-page .img1 { grid-area: img1; max-height: 350px; }
.rv-bus-repair-page .img2 { grid-area: img2; max-height: 350px; }
.rv-bus-repair-page .img3 { grid-area: img3; max-height: 705px; }
.rv-bus-repair-page .mosaic img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

/*=== INSURANCE ===*/
.insurance-page .grid-system {
	grid-template-columns: repeat(2, 1fr);
}

/*=== PITTS-TRAILERS ===*/
.pitts-trailers-page .grid-system {
	grid-template-columns: repeat(2, 1fr);
}

/*=== PALFINGER-FORKLIFTS ===*/
.palfinger-forklifts-page .palfinger-maintenance-graph {
	gap: 25px;
}
.palfinger-forklifts-page .palfinger-maintenance-graph img {
	width: 50%;
	height: 100%;
}

/*=== PARTNERS ===*/
.partners-page .grid-system .grid-system-item {
	text-align: left;
}

/*=== MUNICIPALITY-CLIENTS-PAGE ===*/
.municipality-clients-page .logo-slider {
	overflow: hidden;
	background-color: #ffffff;
	padding: 10px;
	box-shadow: 0 0 15px 0px #a5a5a5;
}
.municipality-clients-page .logo-slider .slick-slide {
	margin: 0 15px;
	height: 150px;
}
.municipality-clients-page .logo-slider img {
	width: 100%;
	max-width: 300px;
	object-fit: contain;
	height: 100%;
	max-height: 150px;
}
.municipality-clients-page .gov-programs .detail-brand-logo{
	background: #ffffff;
}

.Acknowledgment p {text-align: center;}

@media screen and (max-width: 1450px)  {
	/*=== INVENTORY ===*/
	.inventory-page .text-banner {
		flex-direction: column;
	}
	
	/*=== SEMI-TRAILER-RENTAL ===*/
	.semi-trailer-rental-page ul.list {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 1325px)  {
	/*=== FINANCING ===*/
	.financing-page .finance-awarded {
		grid-template-columns: repeat(1, 1fr);
	}
	.financing-page .grid-system {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== SEMI-TRAILER-LEASING ===*/
	.semi-trailer-leasing-page .grid-system {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/*=== SEMI-TRAILER-RENTAL ===*/
	.semi-trailer-rental-page .grid-system {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== INSURANCE ===*/
	.insurance-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}
	
	/*=== PITTS-TRAILERS ===*/
	.pitts-trailers-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}
	
	/*=== TRUCK-TRAILER-REPAIR ===*/
	.truck-trailer-repair-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}

	/*=== PARTNERS ===*/
	.partners-page .grid-system {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 1235px) {
	/*=== FOOTER ===*/
	footer.site-footer .footer-nav.justify-between {
		justify-content: flex-start;
	}
	footer.site-footer .footer-nav {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (max-width:1193px) {
	.default-page .authorized-dealer-section .brand-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 1035px) {
	/*=== DEFAULT-PAGE ===*/
	.default-page .quick-inventory-nav .inventory-category a {
		width: calc(33% - 20px);
	}
}

@media screen and (max-width: 875px) {
	.flex-horizontal {
		flex-direction: column
	}
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: flex;
	}

	.map {
		height: 300px;
	}
	.sub-page .text-container {
		padding: 35px 5vw;
		height: 100%;
	}

	/*=== FOOTER ===*/
	footer.site-footer .footer-nav {
		grid-template-columns: repeat(3, 1fr);
	}

	/*=== DEFAULT ===*/
	.default-page .hero-container, .default-page .offerings-section, .default-page .quick-inventory-nav, .default-page .why-section, .default-page .authorized-dealer-section .max-width, footer.site-footer .footer-content {
		padding: 35px 0;
	}
	.default-page .offerings-section .offerings-container {
		grid-template-columns: repeat(2, 1fr);
	}
	/*=== NEW-ERA-DRUG-TESTING ===*/
	.new-era-drug-testing-page .dot-consortium-programs .left-icon {
		margin: 0 auto 10px;
		font-size: 24px;
		width: 40px;
	}
	
	/*=== TCS-FUEL-CARD ===*/
	.tcs-fuel-card-page .fuel-partners .fuel-brand-container {
		grid-template-columns: repeat(3, 1fr);
	}
	
	/*=== SEMI-TRAILER-RENTAL ===*/
	.semi-trailer-rental-page ul.list {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/*=== PITTS-TRAILERS ===*/
	.pitts-trailers-page .grid-system {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/*=== TRUCK-TRAILER-REPAIR ===*/
	.truck-trailer-repair-page .grid-system {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== PARTNERS ===*/
	.partners-page .grid-system {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 775px) {
	.default-page .quick-inventory-nav .inventory-category a {
		width: calc(50% - 20px);
	}
	.newsform form{
		flex-wrap: wrap;
	}
	.newsletterfield{
		width: 100%;
		margin-right: 0px;
		margin-bottom: 10px;
	}
	.submit-button{
		width: 100%;
	}
	/*=== SEMI-TRAILER-RENTAL ===*/
	.semi-trailer-rental-page ul.list {
		grid-template-columns: repeat(1, 1fr);
	}
	.newsform form {
		width: 100%;}
.newsform {
	    padding: 20px 10px 50px 10px;
	box-sizing: border-box;
	}.newsform{flex-wrap: wrap;}
	#formpage input.submit-button, #formpage input.submit-button:focus, #submit-btn button{
	width: 100%;	
	}
	#submit-btn{
	    width: 100%;	
	}
}

@media screen and (max-width: 600px) {
	/*=== FOOTER ===*/
	footer.site-footer .footer-nav {
		grid-template-columns: repeat(2, 1fr);
	}
	footer.site-footer .logo-container .logo{
		max-width: 250px;
	}

	/*=== DEFAULT ===*/
	.default-page .offerings-section .offerings-container {
		grid-template-columns: repeat(1, 1fr);
	}
	.default-page .authorized-dealer-section .brand-container {
		grid-template-columns: repeat(1, 1fr);
	}
	.default-page .why-section .video {
		width: 100%;
	}
	.default-page .hero-container .hero-text {
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: 100%;
	}
	.default-page .hero-container > .max-width {
		flex-direction: column;
	}
	.default-page .hero-container .social-media-container {
		flex-direction: row;
	}
	
	/*=== TCS-FUEL-CARD ===*/
	.tcs-fuel-card-page .fuel-partners .fuel-brand-container {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.text-container iframe{height:215px; width:100%}
}

@media screen and (max-width: 550px) {
	/*=== HEADER ===*/	
	header.site-header .inv-search-form.mobile-only {
		padding: 20px 0 20px;
	}
	header.site-header .inv-search-form.mobile-only > div {
		flex-direction: column;
	}
}

@media screen and (max-width: 500px) {
	/*=== HEADER ===*/
	header.site-header .top-header .desktop-only-top-header {
		display: none;
	}
	header.site-header .logo-container {
		width: 75%;
	}
	
	/*=== FOOTER ===*/
	footer.site-footer .footer-content .top-footer {
		flex-direction: column;
		align-items: center;
	}
	
	/*=== DEFAULT ===*/
	.default-page .quick-inventory-nav .inventory-category a {
		width: calc(100%);
	}

	/*=== INVENTORY ===*/
	.text-banner .insurance-quote {
		flex-direction: column;
	}

	/*=== TCS-FUEL-CARD ===*/
	.tcs-fuel-card-page .fuel-partners .fuel-brand-container {
		grid-template-columns: repeat(1, 1fr);
	}
	
	/*=== SEMI-TRAILER-LEASING ===*/
	.semi-trailer-leasing-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}
	
	/*=== SEMI-TRAILER-RENTAL ===*/
	.semi-trailer-rental-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}

	/*=== PITTS-TRAILERS ===*/
	.pitts-trailers-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}
	
	/*=== TRUCK-TRAILER-REPAIR ===*/
	.truck-trailer-repair-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}

	/*=== PARTNERS ===*/
	.partners-page .grid-system {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 411px) {
	.sub-page .text-container h1 {font-size: 34px;line-height:41px;}
}

@media screen and (max-width: 350px) {
	/*=== FOOTER ===*/
	footer.site-footer .footer-nav {
		grid-template-columns: repeat(1, 1fr);
	}
}