@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Story+Script&display=swap');
/* @import url("https://use.typekit.net/hmh3jbp.css"); */


.font-body,
.font-body-Lato,
.font-body-Lato .products .filter-item label.form-check-label,
.font-body-Lato .contact-details,
.font-body-Lato .gallery-img-text,
.font-body-Lato .form label,
.font-body-Lato .businessinfo label {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}

.font-body-Lato .header .nav-link,
.font-body-Lato .header .dropdown-item,
.font-body-Lato .footer .nav-link,
.font-body-Lato .footer .dropdown-item,
.font-body-Lato .gallery .gallery-img-wrap,
.font-body-Lato .btn,
.font-body-Lato .eCommerce label,
.font-body-Lato .product-results,
.font-body-Lato .btn-link,
.font-body-Lato .employees .employees-title,
.font-body-Lato .page-item.active .page-link,
.font-body-Lato .modal-success .modal-title {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
}


.btn-primary,
.btn-secondary {
	border-radius: 4px;
	background-color: var(--color-theme-border) !important;
	border-color: var(--color-theme-border) !important;
}

.btn-primary:hover,
.btn-secondary:hover {
	border-radius: 4px;
	background-color: var(--color-theme-secondary) !important;
}




 /* Header */
 .cw-header {
    padding: 1em 0;
    background-color: #fff !important;
  }

  .header .navbar, .header .navbar.bg-primary {
    border-top: .5px solid #cdcdcd !important;
  }

  .cw-header .container {
    max-width: 1500px;
  }

  .cw-header a {
    color: inherit;
  }

  .cw-header a:hover {
    color: #161745;
  }

  .cw-header i {
    font-size: 1.5rem;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .cw-header h2 {
    font-size: 1rem;
    font-weight: 600;
  }

  .cw-header img {
    width: 120px;
  }

  @media (min-width: 576px) {
  }

  @media (min-width: 768px) {
    .cw-header h2 {
      font-size: 1.2rem;
    }
  }

  @media (min-width: 992px) {
    .cw-header h2 {
      font-size: 0.9rem;
    }
  }

  @media (min-width: 1200px) {
    .cw-header h2 {
      font-size: 1.2rem;
    }
  }



/*hero*/



.cw-home-about {
    margin-top: 10rem !important;
    margin-bottom: 10rem;
  }

  .cw-home-about-p {
    font-size: 2rem;
    line-height: 1.2;
  }

  .cw-contact-col {
    padding-left: 20px;
  }

  .cw-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .cw-contact-item i {
    font-size: 18px;
    width: 24px; /* keeps icons aligned vertically */
    text-align: center;
  }

  .cw-contact-item a {
    text-decoration: none;
    color: inherit;
  }

  .cw-contact-item a:hover {
    text-decoration: underline;
  }

  .page-home .cw-home-about .business-hours .bh-title {
    display: none !important;
  }

  .cw-hours {
    margin-top: 20px;
  }

  @media (min-width: 280px) {
	.cw-home-about-p {
		font-size: 1rem;
	  }

	  .cw-home-about {
		margin-top: 3rem !important;
		margin-bottom: 1rem;
	}
  }


  @media (min-width: 992px) {
	.cw-home-about-p {
		font-size: 2rem;
	  }

	  .cw-home-about {
		margin-top: 6rem !important;
		margin-bottom: 1rem;
	}
  }



  /* Bodystyle */

	.cw-bg-buttons {
		padding: 3rem 1.5rem; 
	  }
	  
	  .cw-bg-buttons .cw-container {
		max-width: 1400px; 
		margin: 0 auto;
	  }
	  

	  .cw-card-row {
		display: flex;
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	  }
	  

	  .cw-imgcard {
		position: relative;
		flex: 1;
		overflow: hidden;
		border-radius: 18px;
		transition: flex .55s cubic-bezier(.4,0,.2,1);
		display: flex;
		align-items: flex-end;
		padding: 2rem;
		color: #fff;
		text-decoration: none;
		aspect-ratio: 1.2 / 1; 
	  }
	  
	  .cw-img-wrap {
		position: absolute;
		inset: 0;
	  }
	  
	  .cw-img-wrap img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform .7s ease;
	  }
	  
	  .cw-imgcard::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.85) 100%);
		z-index: 1;
		transition: opacity .3s ease;
	  }
	  
	  .cw-imgcard-text {
		position: relative;
		z-index: 2;
		max-width: 420px;
	  }
	  
	  .cw-label {
		font-size: .75rem;
		background: rgba(255,255,255,.15);
		padding: .3rem .6rem;
		border-radius: 4px;
		display: inline-block;
		margin-bottom: .75rem;
	  }
	  
	  .cw-imgcard-text h2 {
		font-weight: 600;
		margin-bottom: .5rem;
	  }
	  
	  .cw-imgcard-text p {
		font-size: .9rem;
		opacity: .85;
		margin-bottom: 0;
	  }
	  
	  @media (min-width: 992px) {
	  
		.cw-card-row:hover .cw-imgcard {
		  flex: .85;
		}
	  
		.cw-card-row .cw-imgcard:hover {
		  flex: 1.6;
		}
	  
		.cw-card-row .cw-imgcard:hover img {
		  transform: scale(1.08);
		}
	  }
	  
	  @media (max-width: 991.98px) {
		.cw-card-row {
		  flex-direction: column;
		}
	  
		.cw-imgcard {
		  aspect-ratio: 1.3 / 1;
		}
	  }




/*Test Drive*/

.cw-testdrive-module {
	background-color: #e9e9e9;
	border-radius: 16px;
	overflow: hidden;
  }
  
  .cw-testdrive-content {
	padding: 3rem;
  }
  
  .cw-testdrive-title {
	font-weight: 700;
	margin-bottom: 1rem;
  }
  
  .cw-testdrive-text {
	margin-bottom: 2rem;
	max-width: 480px;
  }
  
  .cw-testdrive-btn {
	background-color: #000;
	color: #fff;
	padding: 0.6rem 1.5rem;
	border-radius: 6px;
  }
  
  .cw-testdrive-btn:hover {
	background-color: #222;
	color: #fff;
  }
  
  .cw-testdrive-image-wrapper {
	height: 100%;
  }
  
  .cw-testdrive-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  @media (max-width: 991.98px) {
	.cw-testdrive-content {
	  padding: 2rem;
	}
  }




   /*  Blurb Module
=================================================================================================*/
  /**  **/
  .cw-box-links {
    background: #E9E9E9;
    padding: 50px 0;
    margin: 4rem 0 6rem;
  }

  /** Style1 **/
  .cw-box-links h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    padding-bottom: 10px;
    font-weight: bold;
  }

  .cw-box-links .cw-box-links-wrapper {
    border: 1px solid #ededed;
    padding: 25px;
    margin-bottom: 0;
    background-color: #fff;
    border-radius: 10px;
  }

  .cw-box-links .cw-box-links-wrapper h3 {
    font-size: 1em;
    margin-bottom: 5px;
    font-weight: 400;
  }

  .cw-box-links .cw-box-links-wrapper h4 {
    font-size: 1.5rem;
    font-weight: 700;
  }

  @media (min-width: 576px) {
    .cw-box-links h2 {
      font-size: 2.25rem;
    }

    .cw-box-links .cw-box-links-wrapper {
      padding: 2rem;
    }
  }
  @media (min-width: 1500px) {
    .cw-box-links .container {
      max-width: 1500px;
    }

    .cw-box-links .cw-box-links-wrapper {
      padding: 2.5rem;
    }
  }







  

/* Heading style */
section:not(.page-home) .title h1 {
	font-size: 3rem;
    font-weight: 600 !important;
    font-style: normal;
    text-transform: capitalize !important;
    text-align: center;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 992px) {
	section:not(.page-home) .title h1 {
		font-size: 3rem;
	}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}




.card__multi__style4 .item__card {
	flex: 1;
	border: 1px solid var(--inventoryslideshow-border);
	background-color: #EAEAEB !important;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.item__cta {
	display: none;
}

.inventoryslideshow {
	padding-top: 0 !important;
	border-radius: 0px !important;
}

.inventoryslideshow-title-heading {
	display: none !important;
}

.productslideshow-title-heading {
	display: none !important;
}

.productslideshow {
	padding-top: 0 !important;
}

.inventoryslideshow~.container.mb-4 {
	margin: 0 !important;
}

.productslideshow-title {
	margin-bottom: 0 !important;
}

.inventory .card {
	color: var(--inventory-text);
	background: #eaeaeb;
	border-color: var(--inventory-border);
}


/* .page-inventory-details .header .navbar {
}

section:not(.page-inventory-details) .header .navbar {
	position: relative;
	z-index: 1030;
	background: 0 0 !important;
} */

.page-home .form {
	background-image: linear-gradient(45deg, #251316, transparent), url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/4CF36673569F87DA6FB070FCA797603B.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.page-home .form label {
	color: #fff;
}

@media (max-width: 991px) {
	body .inventory .srp-sidebar {
		z-index: 1040;
	}
}

/* FAQ Section Styling */


.cw-faq-title {
	font-weight: 800;
	letter-spacing: 1px;
	color: #1d1d1d;
	text-align: center;
}

.cw-faq-subtitle {
	color: #666;
	font-size: 1rem;
}

/* Accordion Item */
.cw-faq-item {
	border-radius: 0.3rem;
	margin-bottom: 1rem;
	background-color: #fff;
}

/* Accordion Button */
.cw-faq-question {
	background-color: #e9ecef;
	border-top: 2px solid #D9E23E;
	font-weight: bold;
	color: #000;
	border-radius: 0;
	box-shadow: none;
	transition: background-color 0.3s ease;
}

.cw-faq-question:not(.collapsed) {
	background-color: #D9E23E;
	color: #fff;
}

/* Accordion Body */
.cw-faq-answer {
	color: #444;
	font-size: 0.95rem;
	padding: 1rem 1.25rem;
	background-color: #fdfdfd;
}

.accordion-button:focus {
	border-color: #bd3c25 !important;
}


.cw-counter {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)), url(https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/905A4275177D855DBB97509511BBC281.jpg);
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
	padding: 4em 0;

}

.cw-counter .cw-counter-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin: 10px;
	padding: 1rem;
}

.cw-counter .fa {
	color: var(--color-theme-border);
}

.cw-counter .fa-check-circle:before {
	content: '\f058';
}

.cw-counter .fa-group:before,
.cw-counter .fa-users:before {
	content: '\f0c0';
}

.cw-counter .fa-briefcase:before {
	content: '\f0b1';
}

.cw-counter .counter.percent {
	position: relative;
}

.cw-counter .counter {
	font-size: 50px;
	margin-top: 10px;
	font-weight: 900 !important;
	color: var(--color-theme-border);
}

.cw-counter .counter.percent:after {
	content: '%';
}

.cw-counter .counter.plus:after {
	content: '+';
}

.cw-counter .cw-counter span {
	text-transform: uppercase;
}

@media (min-width: 600px) {
	.cw-counter .cw-counter-container {
		margin: 0 30px;
	}

	.cw-counter {
		display: flex;
		justify-content: center;
	}
}

/*testimonials page*/

.cw-reviews .cw-review {
	padding: 20px;
	margin: 30px 0;
	background-color: #EAEAEB;
}

.cw-reviews .cw-review .cw-stars {
	color: var(--color-theme-border);
	font-size: 1.5rem;
}

.cw-reviews .cw-review .cw-name {
	font-weight: bold;
	margin-top: 10px;
}


/*footer*/



.cw-footer,
.text-primary {
	color: #fff !important;
}

/*  ===================================================================================== */
.footer-info-business,
.footer-nav-links {
	display: none;
}

.footer {
	padding-top: 0px !important;
}

/* Footer ======================================================================= */

.cw-footer-cta {
	background-color: var(--color-theme-highlight);
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	padding: 5rem 0;
	z-index: 1;
	padding: 5rem 0;
	color: #fff;
	margin-top: 3rem;
}

.cw-footer-cta::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-image: url("https://cdn.powersports.com/cdn-cgi/image/h=1440,w=1920/905A4275177D855DBB97509511BBC281.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	align-items: center;
	border-radius: 20px;
	overflow: hidden;
	opacity: 30%;
	z-index: -1;
}

.cw-footer {
	background-color: #000000;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
	padding: 0 0 0 0;
	margin-top: 0rem;
}

.cw-footer a:hover {
	color: rgb(226, 226, 226) !important;
}

.popular-vehicles-sections {
	background-color: transparent !important;
}

.inventorydetails .button_sn_item[b-h85p0r54yf] {
	font-weight: 400;
}

.inventory .vehicle-card ul.features-list .feature .feature-label {
	font-weight: 400;
}