﻿/***** BEGIN 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;  
} 

/*-------- COLORS --------

*/

/***** 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;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}
.pagewrap{overflow: hidden;}
/*--- HEADER STYLES ---------------------*/
/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
	
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d1132c;
  height: 0px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
	height: 4px;
}




.overlay:target:before {
    display: none;
}
.overlay:before {
    content:"";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 99999;
}
.overlay .popup {
    background: #F7F7F7;
    border: 4px solid #B30000;
    width: 100%;
    max-width: 600px;
    position: absolute;
    top: 6vw;
    left: 0;
    right: 0;
    float: none;
    padding: 1%;
    margin: 0 auto;
    z-index: 99999999;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    letter-spacing: .25px;
    line-height: 1.25;
	font-family: "Poppins", serif;
	box-sizing: border-box;
}
.popup .close {
    position: absolute;
    background: rgba(0,0,0,0.45);
    top: 8px;
    right: 14px;
    border-radius: 50%;
    transition: all 0.2s;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    z-index: 9999999;
    /* these three lines make it a perfect circle */
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.popup .close:hover {
  background: #000;
}
.popup .content {
  max-height: 60%;
  overflow: auto;
}
.popup-link {
    font-weight: 700;
    color: #000!important;
}
.popup-link:hover {
    color: #FFFFFF!important;
}
.overlay:target .popup {
    top: -180%;
    left: -100%;
}
/* ============================================================
       NEW DESIGN STYLES
       ============================================================ */

    .ribbon {
      background: #8B0000;
      color: #f5d78e;
      text-align: center;
      padding: 11px 40px;
      font-family: 'Playfair Display', serif;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      position: relative;
    }
    .ribbon::before, .ribbon::after {
      content: '✦';
      position: absolute;
      top: 50%; transform: translateY(-50%);
      font-size: 9px;
    }
    .ribbon::before { left: 16px; }
    .ribbon::after  { right: 16px; }

    .popup-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: #c8dfc8;
      display: flex; align-items: center; justify-content: center;
    }
    .popup-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .img-placeholder {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: #4a7a4a; font-size: 13px; letter-spacing: 1px;
    }
    .img-placeholder svg { opacity: .45; }
    .img-placeholder span { opacity: .65; }

    .popup-body { padding: 24px 28px 22px; }

    .popup-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 4.5vw, 28px);
      font-weight: 900;
      color: #1a2a1a;
      line-height: 1.15;
      margin-bottom: 6px;
		text-align: left;
    }
    .popup-title span { color: #8B0000; }

    .popup-location {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #777;
      margin-bottom: 18px;
      font-family: 'Lato', sans-serif;
    }
    .popup-location svg { flex-shrink: 0; }

    .popup-divider {
      border: none;
      border-top: 1px solid #e0e0d0;
      margin: 0 0 16px;
    }

    .section-label {
      font-size: 15px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #8B0000;
      font-weight: 700;
      margin-bottom: 10px;
      font-family: 'Lato', sans-serif;
		text-align: left;
    }

    .hours-grid {
      display: grid;
      gap: 6px;
      margin-bottom: 18px;
    }
    .hour-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      padding: 7px 12px;
      background: #efece4;
      border-left: 3px solid #b8860b;
      border-radius: 2px;
      font-family: 'Lato', sans-serif;
    }
    .hour-row .day  { font-weight: 700; color: #1a2a1a; }
    .hour-row .time { color: #555; font-weight: 300; font-size: 12.5px; }

    .perks {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 20px;
    }
    .perk {
      background: #1a2a1a;
      color: #f5d78e;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 13px;
      border-radius: 2px;
      font-family: 'Lato', sans-serif;
    }

    .popup-cta {
      text-align: center;
      padding: 13px;
      background: #8B0000;
      color: #f5d78e;
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      border-radius: 2px;
      letter-spacing: .5px;
    }
/* ============================================================
      end popup STYLES
       ============================================================ */

.announcement-slider {
	    background: #A41C30;
}
.top-header {
    padding:20px 20px;
    box-sizing: border-box;
    text-align: center;
    width:100%;
}
.top-header p {
    font-family: "Kreon", serif;
    font-size:22px;
    font-weight: 500;
    color:#fff;
    transition: .2s ease-in;
}
.top-header p a {
    font-weight: 700;
    color:#fff;
}
.top-header p a:hover {
    color:#f0f1f3;
    text-decoration: underline;
}







.headertop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: #a41c30 solid 5px;
	width: 92%;
	padding-top: 10px;
	margin: 0px 4%;
}
.logosect img{
	width: 100%;
}

.logosect{
	width: 450px;
	display: flex;
	justify-content: flex-end;
	
}
.headerbottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px 4%;
}
.headerright {
    width: 30%;
    display: flex;
    justify-content: space-around;
	align-items: center;
}
.headerinfo {
    font-family: 'Kreon';
    text-transform: uppercase;
    color: #000;
	font-weight: 900;
}
.headerinfo i{
    color: #d1132c;
	font-size: 18px;
}
.headphonetext {
    font-family: 'Kreon';
    text-transform: uppercase;
    color: #d1132c;
    font-size: 24px;
    font-weight: 900;
	transition-duration: 0.5s;
}
.headphonetext:hover {
    color: #000;  
}
.headmaptext{
	padding-left: 5px;
	color: #000;
	font-size: 18px;
	transition-duration: 0.5s;
}
.headmaptext:hover{
	color: #d1132c;
	padding-left: 8px
}
.holidayhourbanner {
    background: #c21121;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}
.herosection{
	background: url("/siteart/apple-valley-jayco-hero.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 775px;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: flex-end;
	background-color: #000;
}
.heroleft {
    width: 50%;
    padding: 2% 6%;
}
.herotext {
    font-family: "Poppins", serif;
    color: #fff;
    line-height: 58px;
    font-size: 68px;
    text-shadow: 3px -1px 14px #000000;
}
.herotext span {
    font-family: 'Kreon';
    width: 100%;
    display: block;
    text-transform: uppercase;
    color: #ff0000;
    text-shadow: 4px 0px 2px #000000;
    font-size: 44px;
    line-height: 44px;
    font-weight: 900;
}
.herobtnsect {
    display: flex;
    align-items: center;
}
.herobtn {
    border: solid 4px #fff;
    background: #0000008c;
    font-family: 'Kreon';
    color: #fff;
    text-transform: uppercase;
    width: 350px;
    text-align: center;
    margin: 28px 24px 28px 0px;
    padding: 10px 0px;
    box-sizing: border-box;
    border-radius: 18px;
    font-size: 18px;
	transition-duration: 0.5s;
}
.herobtn:hover {
    border: solid 4px #000;
    background: #000;
    width: 360px;
}
.hp-cta-sect {
    display: flex;
    justify-content: space-between;
    padding: 100px 4%;
}
.cta-img{
	width: 100%;
}
.cta-img img{
	width: 100%;
}
.hp-cta{
	width: 20%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.cta-link {
    font-family: 'Kreon';
    font-size: 20px;
    padding: 25px 0px 5px 0px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: solid 4px #ff0000;
    width: 70%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
	transition-duration: 0.5s;
}
.cta-link:hover {
    padding: 20px 0px 10px 0px;
	letter-spacing: 0.5px;
}
iframe.scrolling {
    width: 100%;
	height: 90px;
}
.hp-scroll-sect {
    background: #000;
    padding: 30px 4%;
}
.flexend {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.hp-scrolltitle-sect {
    width: 28%;
    justify-content: center;
    display: flex;
    padding: 15px;
    background: #000;
    border-bottom-left-radius: 90px;
    border-bottom-right-radius: 90px;
    box-sizing: border-box;
}
.hp-scroll-title {
    width: 80%;
    text-align: center;
    border-top: solid #ff0000 4px;
	flex-wrap: wrap;
    justify-content: center;
	display: flex;
}
.white{
	color: #fff;
}
.headertext {
    padding: 10px 0px;
    font-family: "Poppins", serif;
    font-size: 30px;
    font-weight: 700;
}
.medheadertext {
    padding: 10px 0px;
    font-family: "Poppins", serif;
    font-size: 26px;
    font-weight: 700;
}
.whitebtn {
    border: solid 3px #fff;
    border-radius: 30px;
    padding: 8px;
    width: 280px;
    display: block;
    color: #fff;
    font-family: 'Kreon';
    text-transform: uppercase;
    font-weight: 900;
	transition-duration: 0.5s;
}
.whitebtn:hover {
    background: #fff;
	color: #000;
	width: 290px;
}

.hp-review-sect {
    display: flex;
    align-items: stretch;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: space-between;
	padding: 100px 4%;
    box-sizing: border-box;
}
.hp-review-title {
    width: 18%;
    border-top: solid 4px #ff0000;
    border-bottom: #ff0000 solid 4px;
}
.reviewslider {
    width: 65%;
}
.reviewslide {
    height: 380px;
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    margin: 10px 20px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: -1px 2px 8px 2px #d7d7d7;
    border: solid 3px #efefef;
    border-radius: 42px;
}
.hp-review-title {
    width: 28%;
    border-top: solid 4px #ff0000;
    border-bottom: #ff0000 solid 4px;
    display: flex;
    align-items: center;
    padding: 0px 58px;
    box-sizing: border-box;
}
.paratext {
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 32px;
}
.smboldtext {
    font-family: "Poppins", serif;
	font-size: 14px;
	font-weight: 700;
	font-style: italic;
	padding-top: 10px;
}
.hp-about-sect{
	flex-wrap: wrap;
	justify-content: center;
	background: url("/siteart/rv-bkgd-about.jpg");
	background-color: #000;
	display: flex;
	background-repeat: no-repeat;
	background-attachment: fixed; 
	background-size: cover;
}
.hpabouttext {
    background: #000000b0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10% 18%;
}
.hpabouttext p{
    padding-bottom: 30px;
}
.footer {
    display: flex;
    padding: 60px 4%;
    border-bottom: #ef0000 solid 15px;
}
.footersect {
    width: 24%;
}
.lgfootersect {
    width: 28%;
	text-align: center;
}
.lgfootersect p {
    font-family: "Poppins", serif;
    font-size: 11px;
    margin-top: -14px;
    font-weight: 700;
    text-transform: uppercase;
}
.lgfooterimg{
    width: 350px;
	max-width: 100%;
}
.smfooterimg{
    width: 200px;
}
.footerheader {
    text-transform: uppercase;
    color: #000;
    font-family: 'Kreon';
    font-size: 18px;
    padding-bottom: 10px;
}
.footerlinks {
    width: 100%;
    display: block;
    font-family: "Poppins", serif;
    color: #000;
    font-size: 14px;
	padding: 5px 0px;
	transition-duration: 0.5s;
}
.footerlinks:hover {
    font-weight: 700;
}
.footerlinks i{
    color: #ef0000;
	padding-right: 5px;
}
.pageheadsect{
	display: flex;
	padding: 40px 5%;
	justify-content: flex-start;
	flex-wrap: wrap
}
.pagetopline{
	height: 8px;
	width: 300px;
	background: #ef0000;
	border-radius: 5px;
}
.pagebottomline{
	height: 8px;
	width: 75%;
	background: #ef0000;
	margin-left: 25%;
	border-radius: 5px;
}
.pageheader{
    font-family: "Poppins", serif;
    color: #000;
    text-transform: uppercase;
    font-size: 45px;
	padding: 20px 5%;
	width: 100%;
}
.pagepadding {
    padding: 0px 10% 50px 10%;
    box-sizing: border-box;
    width: 100%;
}
.financebox {
    width: 24%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.financeicon i {
    border: #ef0000 solid 3px;
    color: #ef0000;
    border-radius: 40px;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.financeicon {
   width: 100%;
	text-align: center;
	margin-bottom: 10px;
	display:flex;
	justify-content: center;
}
.financetext {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
}
.formheadertext {
    font-family: 'Kreon';
    font-weight: 700;
    font-size: 24px;
    padding: 15px 10px 5px 10px;
    color: #ef0000;
    width: 100%;
    display: block;
}
form label {
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 16px;
    padding: 10px 0px;
    color: #000;
	
}
.halfformfields {
    width: 48%;
	margin: 10px 1%;
}
.halfformfields input{
    width: 100%;
	font-family: 'Poppins';
	height: 40px;
	padding: 0px 10px;
	box-sizing: border-box;
}
.halfformfields select{
    width: 100%;
	font-family: 'Poppins';
	height: 40px;
	padding: 0px 10px;
	box-sizing: border-box;
}
.fullformfields {
    width: 98%;
	margin: 10px 1%;
}
.fullformfields input{
    width: 100%;
	font-family: 'Poppins';
	height: 40px;
	padding: 0px 10px;
	box-sizing: border-box;
}
.fullformfields textarea{
    width: 100%;
	font-family: 'Poppins';
	height: 40px;
	padding: 5px 10px;
	box-sizing: border-box;
}
.fullmessage textarea{
    width: 100%;
	font-family: 'Poppins';
	height: 150px;
	padding: 5px 10px;
	box-sizing: border-box;
}
.fullmessage{
    width: 98%;
	padding: 10px 1%;
}
.fullcenter{
	width: 100%;
	text-align: center;
	justify-content: center;
}
.cpformflex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.catalogsect {
    display: flex;
    padding: 20px 0px;
    justify-content: flex-start;
	flex-wrap: wrap;
}
.catalogcover {
    padding: 0px 30px;
}
.flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.ourservices {
    width: 25%;
    padding: 15px 0px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.ourservices i{
    color: #ef0000;
	font-size: 22px;
	padding-right: 10px;
}
.ourservices span{
    color: #000;
	font-family: 'Poppins';
	font-weight: 500;
}
.mobileiconsect {
    display: none;
}
.submit {
    font-size: 15px;
    width: 240px!important;
    background: #e00404;
    border: none;
    height: 40px!important;
    font-weight: 700;
    text-transform: uppercase;
	cursor: pointer;
	margin: 0px!important;
	transition-duration: 0.5s;
}
.submit:hover {
   
    background: #333;

}
.padsect{
	padding: 40px 0px;
}
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}
#formpage input.submit-button, #formpage input.submit-button:focus, #submit-btn button {
    background: #e00404;
    border: none;
    padding: 4px 65px;
    font-weight: 700;
    cursor: pointer;
    color: #fff !important;
    border-radius: none !important;
    animation-timing-function: ease-in;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    height: 35px;
	transition-duration: 0.5s;
}
#formpage input.submit-button:hover, #submit-btn button:hover{ background:#000; color:#fff; cursor:pointer;}
#submit-btn {
    padding: 0px;
    position: relative;
    text-align: right;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
}
.submit-button {
    padding: 3px 0px;
    position: relative;
    text-align: center;
    background: #e00404;
    font-family: Arial, Helvetica, sans-serif;
    border: none !important;
    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;	
	color: #fff;
	transition-duration: 0.5s;
}
.submit-button:hover{background: #000;}
.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;}
.blkbtn {
    border: solid 3px #000000;
    width: 330px;
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-family: 'Kreon';
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
	margin-bottom: 20px;
	transition-duration: 0.5s;
}
.blkbtn:hover {
    background: #000;
	color: #fff;
}
.red{
	color: #e00404;
}
.black{
	color: #000;
}
.CaptchaMessagePanel{
	font-family: 'Poppins';
	font-size: 14px;
	font-weight: 400 !important;
}
.CaptchaWhatsThisPanel a{
	font-family: 'Poppins';
	font-size: 14px;
	font-weight: 400 !important;
	color: #000!important;
}
.fullbox{
	width: 100%;
	padding: 5px 0px 15px 0px;
	box-sizing: border-box;
}
.halfsect{
	width: 48%;
}
/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/

.list-top-section .list-listings-count{
	color: #a41c30!important;
}

.list-content{
	font-family: 'Poppins'!important;

}
.faceted-search-content .selected-facets-container .selected-facet, .view-listing-details-link{
	background: #a41c30!important;
}
.list-top-section .list-title .list-title-text{
		font-family: 'Poppins'!important;

}
.list-content .price-container .price{
	color: #a41c30!important;
	
}
.listing-prices__retail-price, .listing-prices__discount-formatted-price, .listing-prices__alternate-retail-price, .listing-prices__exclusive-wholesale-price{
	color: #a41c30!important;
	
}
.list-content .list-error-container .info button:not(.login-button){
	background: #a41c30!important;
}
/*---------- RESPONSIVE STYLES ----------*/



@media only screen and (max-width: 1460px) {
	.ourservices {
		width: 32%;}
	.heroleft {
		width: 72%;}
}
@media only screen and (max-width: 1390px) {
.hp-review-title {
    width: 24%;	
	padding: 0px 15px;
	}
.reviewslider {
    width: 72%;
}
	.headertext{
		line-height: 30px;
	}
}
@media only screen and (max-width: 1240px) {
.lgfooterimg img {
    width: 100%;
}
.footersect {
    width: 20%;
    padding-right: 5%;
}	
.headerright {
	width: 35%;}
	.herosection {
		height: 500px;
	}
	.herotext span {
	font-size: 30px;
    line-height: 40px;
	}
	.herotext{
	line-height: 38px;
    font-size: 40px;	
	}
	.heroleft{
		padding: 0% 4%;
	}
	.hp-scrolltitle-sect {
		width: 54%;}
}
@media only screen and (max-width: 1170px) {
	
.hp-cta {width: 27%;}	
}
@media only screen and (max-width: 1130px) {
	.pageheader{    
	font-size: 34px;
    padding: 12px 2%;
	line-height: 34px;
	}	
	.pagebottomline {
		margin-left: 15%;
		width: 85%;
	}
	.financebox {
    width: 48%;
    padding: 25px 0px;
	box-sizing: border-box;
	}
	.padsect {
    padding: 12px 0px;
}
	.financetext{
		text-align: center;
	}
	
}

@media only screen and (max-width: 1095px) {
.ourservices {
        width: 50%;
    }	
	
}
@media only screen and (max-width: 1024px) {
	.headerbottom{display: none;}
	.mobileiconsect {
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 15px;
	box-sizing: border-box;	
}
	.mobileicon {
    height: 50px;
    width: 50px;
    margin: 0px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #a41c30;
    font-size: 20px;
    color: #fff;
    border-radius: 15px;
}
	    .heroleft {
        width: 100%;
        box-sizing: border-box;
    }
	    .hp-cta {
        width: 32%;
    }
}
@media only screen and (max-width: 950px) {
.halfsect {
    width: 100%;
	padding-bottom: 20px;
}	
	.hpabouttext {
	    padding: 6% 4%;
	}
	.herosection{
		background-attachment: local;
	}
}
@media only screen and (max-width: 860px) {
	.footer{flex-wrap: wrap;}
	.footersect {
        width: 45%;
        padding-right: 5%;
    }
	.lgfootersect {
    width: 50%;
	padding-top: 25px;
	}
	.headertext{
	font-size: 24px;
	line-height: 24px;
	}
	.catalogcover img {
    width: 200px;
}
	.hp-cta-sect{
		flex-wrap: wrap;
		padding: 50px 4%;
	}
	.cta-link{
	    width: 100%;	
	}
	.hp-cta {
        width: 100%;
		padding: 25px 10px
    }
	.cta-img img {
    width: 280px;
}
	.cta-img{
		text-align: center;
	}
	.hp-review-title {
        width: 100%;
        padding: 28px 15px;
    }
	    .reviewslider {
        width: 100%;
    }
	.reviewslide{
		height: auto;
		padding: 22px;
		margin: 10px 5px;
	}
	
	.lgfooterimg {
		width: 100%;
	}
}

@media only screen and (max-width: 750px) {
	.halfformfields {
		width: 100%;
	}
	.formheadertext {
	  padding: 5px 2px 5px 2px;
	  font-size: 20px;
	}
	form label {
		font-size: 14px;
	}
	.pagetopline{
	    width: 30%;	
	}
	.medheadertext {
		font-size: 20px;
    line-height: 22px;
	}
	.cta-img{
		padding-bottom: 20px;
	}
	.hp-scrolltitle-sect {
        width: 78%;
    }
	.hp-review-sect{
	padding: 40px 4%;	
	}
	.overlay .popup {
        max-width: 95%;
        padding: 1%;
        top: 5vw;
    }
    
    .popup .close {
        right: 15px;
        font-size: 28px;
    }

}

}
@media only screen and (max-width: 570px) {
	.ourservices {
        width: 100%;
        padding: 5px;
    }
}
@media only screen and (max-width: 500px) {
	.mobileicon {
    height: 45px;
    width: 45px;
	font-size: 20px;
	}
	.blkbtn {
    width: 98%;
    box-sizing: border-box;
	}
	.blkbtn:hover {
    width: 100%;
    box-sizing: border-box;
	}
	.pageheadsect {
		padding: 18px 2%;
	}
	.financebox {
    width: 100%;
	padding: 5px 0px 25px 0px;
	}
	.pagepadding {
		padding: 0px 5% 30px 5%
	}
		.herosection {
	align-items: center;
	}
	.herotext{
		margin-bottom: 28px;
		text-align: center;
	}
	.holidayhourbanner{
		    font-size: 15px; line-height: 20px;
	}
	.herobtn{
		width: 98%;
		box-sizing: border-box;
		margin: 5px 8px 5px 0px;
    padding: 15px 0px;	
		font-size: 16px;
	}
	.herobtn:hover{
		width: 100%;
		box-sizing: border-box;
	}
	.herobtnsect{
		flex-wrap: wrap;
		margin-bottom: 15px;
	}
	    .cta-img img {
        width: 100%;
    }
	.hp-scroll-title {
		width: 90%;
	}
	.hp-scrolltitle-sect {
        width: 100%;
		    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    }
	.hp-scroll-sect {	
    padding: 20px 4% 0px 4%;
	}
	.smfooterimg {
    width: 90%;
}
}
@media only screen and (max-width: 400px) {
	.footersect {
        width: 95%;
        padding-right: 5%;
    }
	.lgfootersect {
	width: 100%;
	}
	.pageheader{font-size: 30px; line-height: 28px;}
	.fullbox {
	padding: 0px 0px 8px 0px;
	}
	.blkbtn{
		font-size: 15px;
	}
	.paratext {
	font-size: 14px;
    line-height: 28px;	
	}
	.ourservices span{
	    font-size: 15px;	
	}
	.headertop {
		margin: 0%;
		width: 100%;
		box-sizing: border-box;
	}
}

@media only screen and (max-width: 350px) {
.herotext {
        line-height: 34px;
        font-size: 36px;
    }
	.herotext span {
        font-size: 22px;
        line-height: 35px;
    }
}
@media only screen and (max-width: 250px) {
	
    .mobileicon {
        height: 38px;
        width: 38px;
        font-size: 16px;
    }	
	.catalogcover img {
    width: 100%;
}
	    .herosection {
        height: 400px;
    }
}

