* {
	-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: #2C2F77;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #2C2F77;
    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: "Barlow", sans-serif;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Barlow", sans-serif;
	font-weight: 700;
	font-style: normal;
}
h1 {font-size: 48px;line-height: 50px;}
h2 {font-size: 26px;line-height: 28px;}
h3 {font-size: 35px;line-height: 37px;}
h4 {font-size: 26px;line-height: 28px;}
.button-group {
	
	gap: 20px;
	padding-top: 25px;
	flex-wrap: wrap;
}
button.primary-button {
	font-size: 18px;
    transition: all ease .3s;
    padding: 7px 17px;
    background-color: #2C2F77;
    color: #ffffff;
    border: 2px solid #2C2F77;
}
.inventory-btn {margin:0!important;}

button.primary-button:hover {
	background-color: #ffffff;
	color: #2C2F77;
}
button.secondary-button {
	font-size: 18px;
    transition: all ease .3s;
    padding: 7px 17px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
	margin: 5px auto;s
}
button.secondary-button:hover {
	background-color: #000000;
	color: #ffffff;
}
button.boarderless-button {
	font-size: 16px;
	background-color: unset;
	border: unset;
	color: #ffffff;
	padding: 5px 0;
}
button.boarderless-button i {
	transition: .3s ease all;
}
button.boarderless-button:hover i {
	padding-left: 10px;
}

/*=== 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;
}
.flex-reverse {
	flex-direction: column-reverse;
}
.set-width {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
}
.tb-padding {
    padding: 0 25px;
}
.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;
}
.max-width-sm {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
.hidden {
	display: none;
	transition: all ease .3s;
}
.success-message {
	color: #188d2b;
}
ul.breadcrumb {
	list-style: none;
}
ul.breadcrumb li {
	display: inline;
	font-size: 14px;
	line-height: 18px;
}
ul.breadcrumb li+li:before {
	padding: 8px;
	color: #CDC190;
	content: "/\00a0";
}
ul.breadcrumb li a {
	text-decoration: underline;
	text-decoration-color: #f5f5f5;
	transition: .3s ease all;
}
ul.breadcrumb li a:hover {
	text-decoration-color: #000000;
}
.logo-container .logo {
	width: 100%;
	max-width: 175px;
	height: 100%;
    object-fit: contain;
    object-position: center;
	position: relative;
	z-index: 2;
}
a.logo-container {
	line-height: 0;
}
.style-font {
	font-family: "Kalam", cursive;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	line-height: 24px;
}
p.paragraph {
	padding-top: 10px;
}
ul.list {
	list-style-type: disc;
	list-style-position: inside;
	padding-top: 10px;
}
.split-tone-bg {
	padding: 75px 0;
	background-image: url("/siteart/split-tone-bg.svg");
	background-size: cover;
	background-repeat: no-repeat;
}
.service-department-contact .department-details {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url(/siteart/mountain-lake.jpg);
    background-size: cover;
    color: #ffffff;
    min-height: 350px;
    text-align: center;
	align-items: center;
}
.sales-parts-department-contact .department-details {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url(/siteart/forest-at-night.jpg);
    background-size: cover;
    color: #ffffff;
    min-height: 350px;
    text-align: center;
	align-items: center;
}
.department-details .details-text {
	gap: 15px 35px;
	height: 100%;
	align-content: center;
	justify-content: center;
	padding: 25px 25px 25px 25px;
}
.department-details-container {
    background-color: #ffffff;
	height: 100%;
}
.department-details-container .department-details h3 {
	font-size: 24px;
	line-height: 26px;
}
.department-details-container .department-details h4 {
	font-size: 20px;
	line-height: 22px;
}
.department-details-container .department-details.flex-horizontal {
	flex-direction: row;
}


.promo-sm {
	display: flex; justify-content: center; background-color:#f5f5f5; padding:15px;
}

/*=== BRAND-GRID ===*/
.brand-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 35px;
	padding: 25px 0 75px;
}
.brand-container .brand-heading {
	position: absolute;
    color: #ffffff;
    left: 50%;
    top: -55px;
	font-size: 28px;
    line-height: 30px;
	transform: translate(-50%, 0);
	width: 100%;
	text-shadow: 4px 6px black;
}
.brand-container .brand {
	box-shadow: 0 0 20px -10px #000000;
	background-color: #ffffff;
	padding: 20px;
	text-align: center;
	line-height: 0px;
	transition: .3s ease all;
	position: relative;
	height: 100%;
}
.brand-container .brand:hover {
	box-shadow: 0 0 10px #424242;
}
.brand-container .brand img {
	opacity: 1;
	transition: .3s ease all;
}
.brand-container .brand:not(:last-child):hover img {
	opacity: .1;
}
.brand-container .brand:not(:last-child):hover::before {
	content: "Click to View!";
	position: absolute;
	top: 50%; right: 50%;
 	transform: translate(50%,-50%);
	font-size: 22px;
	line-height: 24px;
    font-weight: bold;
}
.brand-container .brand:last-child {
	background-color: #CDC190;
	color: #000000;
	font-size: 18px;
	line-height: 18px;
	min-height: 115px;
}
.brand-container .brand img {
	object-fit: contain;
	object-position: center;
	max-height: 75px;
}



/*=== EMPLOYEE-GRID ===*/
.employee-grid {
	display: grid;
    grid-template-columns: repeat(4 , minmax(auto, 1fr));
    gap: 20px 35px;
    position: relative;
    top: -35px;
	padding-bottom: 5vw;
}
.employee-grid .employee {
	box-shadow: 0 0 20px -10px #000000;
    transition: .3s ease all;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
	padding: 20px;
}
.employee-grid .employee:hover {
	box-shadow: 0 0 20px -5px #000000;
}
.employee-grid .employee img {
	height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
	border: 1px solid #f5f5f5;
}
.employee-grid .employee .name-plate {
    padding: 20px 15px;
    text-align: center;
	font-size: 16px;
}
.employee-grid .employee .name-plate h4 {
    font-size: 22px;
    line-height: 24px;
}
.employee-grid .employee.join-our-team {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/forest.jpg");
	background-size: cover;
	color: #ffffff;
	min-height: 350px;
	text-align: center;
}
.employee-grid .employee.join-our-team.full-width {
	grid-column: 1 / 5;
}
.employee-grid .employee.join-our-team.three-qtr-width {
	grid-column: 2 / 5;
}
.employee-grid .employee.join-our-team.half-width {
	grid-column: 3 / 5;
}
.employee-grid .employee.join-our-team.one-qtr-width {
	grid-column: 2 / 5;
}

/*=== HEADER ===*/
header.site-header {
	position: relative;
	border-bottom: 1px solid #f5f5f5;
}
header.site-header .top-nav {
	background: linear-gradient(to left, #2C2F77 0%, #2C2F77 95%, #CDC190 95%);
	color: #ffffff;
	padding: 10px 0;
	font-size: 14px;
}
header.site-header .top-nav .contact-icon {
	display: none;
}
header.site-header .top-nav > div {
	gap: 15px;
}
header.site-header .logo-container {
	position: absolute;
}
header.site-header .nav-group {
	padding: 10px 0;
}
/* POPUP */

#popup .popup-window{
	padding: 30px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	max-width: 400px;
	background: #fff;
	box-shadow: 0 4px 4px 0 rgba(0,0,0,0.33);
	z-index: 10005;
	
	text-align: center;
	width: 90%;
    box-sizing: border-box;
}
#popup{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0, 0.33);
	z-index: 10000;
}
#popup i {
    position: absolute;
    top: 10px;      
    left: 10px;   
    cursor: pointer;
    padding: 8px;
    background: #000;
    color: #fff;
    font-size: 20px;
    border-radius: 4px;
    z-index: 10;
}

.popuptext {
    width: 500px;
    max-width: 90%;
    height: auto;
    position: relative;
    margin: 1% auto;
}

.popuptext img {
    width: 100%;
    display: block;
}
/*=== FOOTER ===*/
footer.site-footer {
	font-size: 14px;
	line-height: 22px;
}
footer.site-footer .top-footer {
	padding: 25px 0;
}
footer.site-footer .link-group {
	background-color: #2C2F77;
	color: #ffffff;
	padding: 35px 5vw;
	gap: 20px 5vw;
}
footer.site-footer .footer-divider {
	width: 5vw;
	background-color: #CDC190;
}
footer.site-footer .logo-container {
	padding: 25px 5vw;
    background-color: #f5f5f5;
}
footer.site-footer .bottom-footer{
	color: #000000;
	background-color: #ffffff;
	padding: 5px 0;
}
/*=== PAGE STYLES ===*/

/*=== SUB-PAGE ===*/

/*=== BLOG-PAGE ===*/

.blog-container{
    padding: 2vw 0;
}
.blog {
    box-shadow: 0 0 20px -10px #000000;
    transition: .3s ease all;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    padding: 20px;
}
.blog-details {
	padding: 20px 15px;
    text-align: left;
	align-content: center;
	width: 66%;
}
.blog img {
    height: 300px;
    width: 60%;
    object-fit: cover;
    object-position: center;
    border: 1px solid #f5f5f5;
	flex: 1;
}





.sub-container {
    background-color: #f5f5f5;
}
.img-grid {
	display: grid;
    grid-template-columns: repeat(4, minmax(auto, 1fr));
    gap: 20px 35px;
    padding-top: 2vw;
    padding-bottom: 2vw;
}
.blog-hero {
	padding: 50px 0 50px;
	background-color: #f5f5f5;
}
.blog-hero .wrap.max-width {
    display: flex;
    align-items: center;
	gap: 50px;
}
.blog-hero-imgs {
    display: flex;
    gap: 10px;
}
.blog-hero-imgs img {
    max-width: 350px;
}

.blog-hero-imgs-custom img {
    max-width: 500px;
}

.blog-content ul {
	margin-left: 3vw;
}
.blog-content ul li {
	list-style: disc;
}
.blog-img img {
    max-width: 400px;
	margin-top: 25px;
	width: 100%;
}

.blog-heading {
	margin-bottom: 5px;
	margin-top: 25px;
}
.blog-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	margin-top: 15px;
	line-height: inherit;
}
.blog-content hr {
	border: 1px solid #e1e1e1;
	width: 100%;
	margin-top: 25px;
}

.blog-content a 
{color: #2C2F77; font-weight:600;}

.blog-content a:hover
{color: #000; font-weight:900;}

.buggy-blog-img img 
{max-width: 1000px; margin-top: 25px; margin-bottom: 25px; width: 100%;}

.buggy-blog-left-text 
{width:70%;float:left;  clear:both;  }

.buggy-blog-right-img 
{width:30%;float:right;}

.buggy-blog-right-img img
{width:100%; padding:5px; }

.blog-width {width:100%;}

.buggy-blog-left-img 
{width:30%;float:left;}

.buggy-blog-left-img img
{width:100%; padding: 5px;}

.buggy-blog-right-text
{width:70%;float:right;   }

.sm-padding
{padding: 8% 25px 0 25px;} 





/*=== SALES-TEAM ===*/
.sales-team-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/sales-deal.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 75px 0 100px;
}

/*=== PARTS-TEAM ===*/
.parts-team-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/parts-bin.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 75px 0 100px;
}

/*=== SERVICE-TEAM ===*/
.service-team-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/service-parts.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 75px 0 100px;
}

/*=== SALES-BANNER ===*/
.sales-banner-container {
	height: 100%;
	background: linear-gradient(to right, #2e3079, rgba(0,0,0,0.5)), url("/siteart/fifth-wheel-camper.jpg");
	background-color: #2e3079;
	background-position: right center;
	background-size: 50%;
	background-repeat: no-repeat;
	box-shadow: 0 0 10px #424242;
	margin-bottom: 50px;
}
.sales-banner-container .text-container {
	gap: 10px 20px;
	padding: 40px 20px;
}
.sales-banner-container p {
	color: #fff;
	font-size: 35px;
	line-height: 37px;
	font-weight: 700;
	align-content: center;
}
.sales-banner-container .button-group {
	padding: 0;
}
.sales-banner-container .button-group .secondary-button {
	border: 2px solid #ffffff;
    background-color: unset;
	color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    transition: .3s ease all;
}
.sales-banner-container .button-group .secondary-button:hover {
	background-color: rgba(0, 0, 0, 0.35);
}

/*=== RENTAL-BANNER ===*/
.rental-banner-container {
	position: relative;
	background-color: #2e3079;
	box-shadow: 0 0 10px #424242;
	margin-bottom: 50px;
	overflow: hidden;
	z-index: 1;
}
.rental-banner-container::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-image: -webkit-linear-gradient(left, #2e3079, rgba(0, 0, 0, 0.5)), url("/siteart/fifth-wheel-camper.jpg");
	background-image: -o-linear-gradient(left, #2e3079, rgba(0, 0, 0, 0.5)), url("/siteart/fifth-wheel-camper.jpg");
	background-image: linear-gradient(to right, #2e3079, rgba(0, 0, 0, 0.5)), url("/siteart/fifth-wheel-camper.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}
.rental-banner-container > * {
	position: relative;
	z-index: 1;
}
.rental-banner-container .text-container {
	gap: 10px 20px;
	padding: 40px 20px;
}
.rental-banner-container p {
	color: #fff;
	font-size: 35px;
	line-height: 37px;
	font-weight: 700;
	align-content: center;
}
.rental-banner-container .button-group {
	padding: 0;
}
.rental-banner-container .button-group .secondary-button {
	border: 2px solid #ffffff;
    background-color: unset;
	color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    transition: .3s ease all;
}
.rental-banner-container .button-group .secondary-button:hover {
	background-color: rgba(0, 0, 0, 0.35);
}

/*=== PROMOTION-BANNER ===*/
.promotion-banner-container {
	position: relative;
	background-color: #CEC291;
	box-shadow: 0 0 10px #424242;
	overflow: hidden;
	z-index: 1;
}
.promotion-banner-container img{
	max-width: 750px; 
	padding:10px 0;
	width: 100%;
	height: auto;
}
.promotion-banner-container::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: #CEC291;
	/*background-image: -webkit-linear-gradient(left, #f1f1f1, #CEC291), url("/siteart/fifth-wheel-camper.jpg");
	background-image: -o-linear-gradient(left, #f1f1f1, #CEC291), url("/siteart/fifth-wheel-camper.jpg");
	background-image: linear-gradient(to right, #f1f1f1, #CEC291), url("/siteart/fifth-wheel-camper.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;*/
	z-index: 0;
}
.promotion-banner-container > * {
	position: relative;
	z-index: 1;
}
.promotion-banner-container .promo-cta {
	gap: 10px 20px;
	padding: 0 20px;
}
.promotion-banner-container .text-container {
	gap: 10px 20px;
	padding: 40px 20px;
}
.promotion-banner-container h3 {
	color:#2D2F77;
	font-size: 40px;
	line-height: 42px;
	font-weight: 700;
	align-content: center;
}
.promotion-banner-container h4 {
	color: #000;
	font-size: 25px;
	line-height: 37px;
	font-weight: 700;
	align-content: center;
}
.promotion-banner-container .button-group {
	padding: 0;
}
.promotion-banner-container .button-group .secondary-button {
	border: 2px solid #000;
    background-color: unset;
	color: #000;
    padding: 10px 20px;
    text-align: center;
    transition: .3s ease all;
}
.promotion-banner-container .button-group .secondary-button:hover {
	background-color: rgba(0, 0, 0, 0.35);
}

/*=== SUB-PAGE ===*/
/* .sub-page */
.sub-page:not(.inventory-page) {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
}
.sub-page .hero {
	padding: 50px 0 75px;
	background-color: #f5f5f5;
}
.sub-page .hero .hero-text {
	flex-direction: column-reverse;
}
.sub-page .hero .style-font {
	padding: 20px 0 0;
}
.sub-page .hero h1 {
	padding-bottom: 10px;
	text-align: center;
}
.sub-page .hero p {
	padding-top: 30px;
}
.sub-page .hero .button-group {
	justify-content: center;
}
.sub-page .page-jump-banner {
	padding: 10px 0;
	background-color: #ffffff;
	border-bottom: 1px solid #f5f5f5;
}
.sub-page .page-jump-banner a {
	padding: 10px 5vw;
}
.sub-page .page-jump-banner button.boarderless-button {
	color: #000000;
}
.sub-page .page-jump-banner a:not(:last-child) {
	border-right: 2px solid #f5f5f5;
}

/*=== DEFAULT-PAGE ===*/
.default-page {
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 24px;
}
.default-page .hero-container {
	background-image: linear-gradient(to left, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/hiking.jpg");
	background-position: center 60%;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 100px 0 125px;
	background-color: black;
}
.default-page .hero-container .hero-text {
	flex-direction: column-reverse
}
.default-page .sales-banner-container {
	position: relative;
	top: -25px;
}
.default-page .brand-container {
	position: relative;
    top: -25px;
    padding: 0;
    height: 100%;
}
.default-page .about .about-container {
	gap: 30px;
}
.default-page .about .about-text {
	padding: 5vw 0;
}
.default-page .about .blob-container {
	width: 33%;
}
.default-page .about .blob-container .blob-svg {
	position: absolute;
	width: 0;
	height: 0;
}
.default-page .about .blob-container .blob {
	width: 100%;
	height: 100%;
	background-image: url("/siteart/campsite.jpg");
	background-position: right center;
	background-size: cover;
	-webkit-clip-path: url(#my-clip-blob);
	clip-path: url(#my-clip-blob);
}
.default-page .lawn-garden-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/chainsaw.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 50px 0 125px;
	background-color: black;
}
.default-page .lawn-garden-container .outline-grid {
	display: grid;
	gap: 10px;
	align-content: center;
	grid-template-columns: repeat(3, 1fr);
}
.default-page .lawn-garden-container .outline-grid .category {
	border: 2px solid #ffffff;
    background-color: unset;
    padding: 10px 20px;
    text-align: center;
    transition: .3s ease all;
}
.default-page .lawn-garden-container .outline-grid .category:hover {
    background-color: rgba(0, 0, 0, 0.35);
}
.default-page .reviews-container {
	padding: 5vw 0;
	overflow: hidden;
	display: flex;
    flex-direction: column;
}
.default-page .reviews-container .quote {
	padding: 0 15px;
}
.default-page .reviews-container .quote .open-quote, .default-page .reviews-container .quote .close-quote {
	background-image: url("/siteart/quote.png");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 75px;
	height: 55px;
}
.default-page .reviews-container .quote .close-quote {
	transform: rotate(180deg);
	transform-origin: center;
}
.default-page .reviews-container .quote .quote-text .quote-name {
	font-size: 18px;
	padding-bottom: 20px;
}
.default-page .reviews-container .slick-dots {
	display: inline-flex;
	font-size: 0;
	margin: 0;
	list-style-type: none;
	gap: 5px;
	justify-content: center;
}
.default-page .reviews-container .slick-dots button {
	display: block;
	width: 25px;
	height: 6px;
	padding: 0;
	font-size: 0;
	line-height: 0;
	border: none;
	background-color: #2C2F77;
	text-indent: -9999px;
	transition: .3s ease all;
}
.default-page .reviews-container .slick-dots li.slick-active button {
	background-color: #CDC190;
}

/*=== HITCHES AND WIRING ===*/
.hitches-wiring-page .contact-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/wooded-roads.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 75px 0 100px;
}
.hitches-wiring-page .form-container {
	position: relative;
	top: -35px;
	padding: 25px;
	margin-bottom: 75px;
	background-color: #ffffff;
	box-shadow: 0 0 20px -10px #000000;
}
.hitches-wiring-page .brand:not(:last-child):hover::before {
	content: "Get a Quote!";
}
.hitches-wiring-department-contact .department-details {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url(/siteart/forest-mud.jpg);
    background-size: cover;
    color: #ffffff;
    min-height: 350px;
    text-align: center;
	align-items: center;
}
/*=== CONTACT ===*/
.contact-page .contact-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/wooded-roads.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 75px 0 100px;
}
.contact-page .contact-container .paragraph {
	padding: 35px 0 0;
}
.contact-page .form-container {
	position: relative;
	top: -35px;
	padding: 25px;
	margin-bottom: 75px;
	background-color: #ffffff;
	box-shadow: 0 0 20px -10px #000000;
}
.contact-page .map-container {
	line-height: 0;
}
.contact-page .contact-locations #location-hours {
	flex-direction: column-reverse;
}

/*=== INVENTORY ===*/
.inventory-page {
	padding: 75px 0;
}

/*=== SERVICE ===*/
.service-page .service-container {
	display: grid;
    grid-template-columns: repeat(3 , 1fr);
    gap: 20px 35px;
	padding: 25px 0 75px;
}
.service-page .service-container h4 {
	text-align: left;
}
.service-page .service {
	box-shadow: 0 0 20px -10px #000000;
	background-color: #ffffff;
	padding: 20px;
	text-align: center;
	transition: .3s ease all;
}
.service-page .service:hover {
	box-shadow: 0 0 10px #424242;
}
.service-page .service i {
	font-size: 28px;
	padding-bottom: 10px;
	color: #2e3079;
}


/*BLOGS*/
.rvda-convention-page .contact-container {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .5) 100%), url("/siteart/wooded-roads.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 75px 0 100px;
}





@media screen and (max-width: 1475px) {
	.employee-grid, .img-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;

	}
	.employee-grid .employee.join-our-team.full-width {
		grid-column: 2 / 4;
	}
	.employee-grid .employee.join-our-team.three-qtr-width {
		grid-column: 3 / 4;
		text-align: center;
	}
	.employee-grid .employee.join-our-team.half-width {
		grid-column: 1 / 4;
	}
	.employee-grid .employee.join-our-team.one-qtr-width {
		grid-column: 2 / 4;
	}

	/*=== SERVICE ===*/
	.service-page .service-container {
		grid-template-columns: repeat(2 , 1fr);
	}

	/*=== CONTACT ===*/
	.contact-page .contact-locations {
		flex-direction: column;
	}
	
	
	.blog-hero .wrap.max-width {
		flex-direction: column-reverse;
	}
	.blog-heading h1 {
		font-size: 35px;
		line-height: 37px;
	}
	.blog-hero {}
}

@media screen and (max-width: 1150px) {
	/*=== BRAND GRID ===*/
	.brand-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	/*=== SALES-BANNER ===*/
	.sales-banner-container {
		background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("/siteart/fifth-wheel-camper.jpg");
		background-size: cover;
        background-position: center;
	}
	.sales-banner-container .text-container {
		justify-content: center;
		flex-wrap: wrap;
	}
	.sales-banner-container p.set-width {
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: 100%;
		text-align: center;
	}

	/*=== DEFAULT ===*/
	.default-page .lawn-garden-container > .flex-horizontal {
		flex-direction: column;
	}
	.default-page .lawn-garden-container .outline-grid {
		padding-top: 25px;
	}
	.default-page .about .blob-container {
		width: 50%;
	}

	/*=== SERVICE ===*/
	.service-page .service-container {
		gap: 10px;
	}
}

@media screen and (max-width: 1096px){
	.blog-hero-imgs {flex-wrap: wrap; width: inherit;}
	
} 

@media screen and (max-width: 1050px) {
	.employee-grid, .img-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.employee-grid .employee.join-our-team.full-width {
		grid-column: 1 / 3;
	}
	.employee-grid .employee.join-our-team.three-qtr-width {
		grid-column: 2 / 3;
	}
	.employee-grid .employee.join-our-team.half-width {
		grid-column: 1 / 3;
	}
	.employee-grid .employee.join-our-team.one-qtr-width {
		grid-column: 2 / 3;
	}

	/*=== SUB-PAGE ===*/
	.sub-page .page-jump-banner {
		flex-direction: column;
	}
	.sub-page .page-jump-banner a:not(:last-child) {
		border-right: unset;
		border-bottom: 2px solid #f5f5f5;
		margin: 0 5vw;
	}
}

@media screen and (max-width: 800px){
.buggy-blog-left-text 
{width:100%;float:none;  }

.buggy-blog-right-img 
{width:100%; float:none;}

.buggy-blog-left-img 
{width: 100%; float:none;}

.buggy-blog-right-text
{float:none;  width: 100%; }
	
	.sm-padding {padding: 2% 5px 2% 5px;}



	
}

@media screen and (max-width: 875px) {
	.flex-horizontal {
		flex-direction: column
	}
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: flex;
	}

	/*=== FOOTER ===*/
	footer.site-footer .footer-group {
		flex-direction: column;
	}
	footer.site-footer .footer-group .logo-group {
		overflow: hidden;
	}
	footer.site-footer .footer-group .logo-container {
		width: 95%;
	}
	footer.site-footer .bottom-footer {
		text-align: center;
	}

	.department-details-container.flex-horizontal {
		flex-direction: column-reverse;
	}

	/*=== DEFAULT ===*/
	.default-page .lawn-garden-container .outline-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.default-page .about .about-container.flex-horizontal {
		flex-direction: column-reverse;
	}
	.default-page .about .about-container {
		gap: 0;
	}
	.default-page .about .blob-container {
		width: 100%;
		height: 350px;
	}
	.default-page .reviews-container .quote .open-quote {
		position: absolute;
		top: 0;
		left: 0;
	}
	.default-page .reviews-container .quote .close-quote {
		position: absolute;
		right: 0;
		bottom: 0;
	}

	/*=== SERVICE ===*/
	.service-page .service-container {
		grid-template-columns: repeat(1 , 1fr);
	}
	
	
	.blog-hero-imgs {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 700px) {
	.employee-grid, .img-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	.employee-grid .employee.join-our-team.full-width {
		grid-column: 1 / 2;
	}
	.employee-grid .employee.join-our-team.three-qtr-width {
		grid-column: 1 / 2;
	}
	.employee-grid .employee.join-our-team.half-width {
		grid-column: 1 / 2;
	}
	.employee-grid .employee.join-our-team.one-qtr-width {
		grid-column: 1 / 2;
	}
}

@media screen and (max-width: 640px) {
	.blog img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid #f5f5f5;
		flex: 1;}
	.blog{flex-direction: column;}
	.blog-details {padding: 5px; width:100%;}
	
}

@media screen and (max-width: 600px) {
	.promo-lg {
		display: none;
	}
	.promo-sm {
		display: contents;
	}
	
	/*=== HEADER ===*/
	header.site-header .top-nav .contact-text {
		display: none;
	}
	header.site-header .top-nav .contact-icon {
		display: flex;
	}
	.popuptext {
		width: 90%;
		top:100px;
		
	}
	#popup i {
		left: 3.5%;
		top: 4%;
	}
}

@media screen and (max-width: 525px) {
	.blog-hero-imgs-custom img {max-width: 350px;}
}


@media screen and (max-width: 465px) {
	/*=== BRAND GRID ===*/
	.brand-container .brand-heading {
		top: -70px;
		text-align: center;
	}
	.default-page .brand-container {
		grid-template-columns: repeat(1, 1fr);
	}

	.brand-container {
		grid-template-columns: repeat(1, 1fr);
	}

	
	/*=== DEFAULT ===*/
	.default-page .lawn-garden-container .outline-grid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.blog-hero-imgs-custom img {max-width: 250px;}
	.blog-hero-imgs img {
		max-width: 250px;
	}
	.blog-content ul {
		margin-left: 8vw;
	}
}

@media screen and (max-width: 314px) {
    .blog-heading h1 {
        font-size: 22px;
        line-height: 37px;
    }
}

@media screen and (max-width: 200px) {
    .blog-heading h1 {
        font-size: 14px;
        line-height: 37px;
    }
}