/* HOME BANNER */
#hero-banner .slick-slide {
	height: 600px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}
#hero-banner .slick-slide > div {
	width: 100%;
}
#hero-banner .slick-slide.slick-active:before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(38, 38, 38, 0.8);
	z-index: 50;
}
.slick-slide.img-box {
	display: flex !important;
	justify-content: center;
	align-items: center;
}
#hero-banner .slick-slide .container {
	width: 100%;
}
.banner-text {
	z-index: 150;
}
.banner-text .large-text {
	color: #FFF;
	width: 500px;
	margin-bottom: 25px;
}
.banner-text p {
	text-transform: uppercase;
	margin-bottom: 5px;
	color: #FFF;
	font-size: 16px;
}
.banner-btns .btn:first-child {
	margin-right: 10px;
}
#main-banner {
	position: relative;
}
.btn-box {
	width: 100%;
	height: fit-content;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}
.btn-box > div {
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: flex-end;
}
.banner-nav {
	width: 25px;
	height: 80px;
	position: relative;
}
.banner-nav:before {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #D4261C;
	position: absolute;
	left: 0px;
	top: 35%;
	transform: translateY(-50%);
}
.banner-head {
	position: relative;
	width: fit-content;
}
.banner-head:after {
	content: '';
	width: 50px;
	height: 2px;
	background-color: #D4261C;
	position: absolute;
	right: -60px;
	top: 50%;
	transform: translateY(-50%);
}
.banner-nav .slick-prev {
	width: 25px;
	height: 25px;
	left: 0px;
	top: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-nav .slick-next {
	width: 25px;
	height: 25px;
	right: 0px;
	top: 0px !important;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-nav .slick-prev:before {
	content: '\f060';
	font-family: 'Font Awesome 6 Pro';
	font-size: 25px;
	color: #FFF;
	width: 25px;
	height: 25px;
}
.banner-nav .slick-next:before {
	content: '\f061';
	font-family: 'Font Awesome 6 Pro';
	font-size: 25px;
	color: #FFF;
	width: 25px;
	height: 25px;
}
/* HOMEPAGE FEATURED PRODUCTS */
.featured-products {
	width: 100%;
	margin: 50px 0px;
}
.featured-products > p {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 0px;
	text-transform: uppercase;
}
.featured-products > h1 {
	margin: 0 auto;
	text-align: center;
}
.prod-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 15px;
	grid-row-gap: 15px;
	margin-top: 25px;
}
.prod-grid > div:first-child {
	grid-area: 1 / 1 / 2 / 3;
}
.prod-grid > div:nth-child(2) {
	grid-area: 1 / 3 / 2 / 4;
}
.prod-grid > div:nth-child(3) {
	grid-area: 2 / 1 / 3 / 2;
}
.prod-grid > div:last-child {
	grid-area: 2 / 2 / 3 / 4;
}
.prod-grid > div {
	box-shadow: 0px 0px 3px #00000029;
	border-radius: 4px;
	background: #FFF;
}
.prod-grid > div > a {
	width: 100%;
	height: 260px;
	align-items: center;
}
.prod-grid > div:first-child,
.prod-grid > div:last-child {
	padding: 0px 75px;
}
.prod-grid > div:first-child > a > div,
.prod-grid > div:last-child > a > div {
	width: 50%;
	height: 100%;
}
.prod-grid > div:nth-child(2),
.prod-grid > div:nth-child(3) {
	padding: 0px 50px;
}
.prod-grid > div:nth-child(2) > a > div,
.prod-grid > div:nth-child(3) > a > div {
	width: 100%;
	height: fit-content;
}
.prod-grid > div:nth-child(2) .cat-image,
.prod-grid > div:nth-child(3) .cat-image{
	width: 100%;
	height: 100px !important;
	background-position: left center;
	position: relative;
	top: 15px;
}
.prod-grid > div:nth-child(2) > a > div:last-child,
.prod-grid > div:nth-child(3) > a > div:last-child {
	position: relative;
	bottom: 15px;
}
.prod-grid > div:first-child > a > div:last-child,
.prod-grid > div:last-child > a > div:last-child {
	padding-left: 50px;
}
.prod-grid .cat-image {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.prod-grid p {
	margin-bottom: 0px;
}
.featured-cat > div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	
}
.featured-cat > div:last-child > div > p:first-child {
	font-weight: bold;
	font-size: 25px;
}
.featured-cat > div:last-child > div > p:last-child {
	font-size: 14px;
	position: relative;
	width: fit-content;
} 
.featured-cat > div:last-child > div > p:last-child:after {
	content: '';
	width: 23px;
	height: 2px;
	background-color: #D4261C;
	position: absolute;
	right: -30px;
	top: 11px;
}
/* PAGE SECTIONS */
.page-section {
	margin-bottom: 50px;
}
.page-section .section-image {
	max-width: 530px;
	width: 50%;
	height: 450px;
	border-radius: 4px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.page-section .section-content {
	width: 50%;
	padding-left: 50px;
}
.page-section .section-content > div > p:first-child {
	margin-bottom: 10px;
}
.page-section .section-content > div > h1 {
	line-height: 35px;
	margin-bottom: 25px;
}
.page-section .section-content {
	align-content: center;	
}
/* DOCUMENT CALLOUT */
.doc-callout {
	width: 100%;
	margin-bottom: 50px;
}
.doc-callout .image-area {
	width: 100%;
	height: 300px;
	border-radius: 4px 4px 0px 0px;
	position: relative;
	padding: 0px 100px;
}
.doc-callout .image-area.no-sub-link,
.doc-callout .image-area.no-sub-link:before {
	border-radius: 4px !important;
}
.doc-callout .image-area:before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	border-radius: 4px 4px 0px 0px;
	background-color: rgba(38, 38, 38, 0.8);
	z-index: 50;
}
.doc-callout .image-area > div {
	z-index: 100;
}
.doc-callout .image-area > div:first-child > p:first-child {
	color: #FFF;
	margin-bottom: 10px;
	font-size: 16px;
}
.doc-callout .image-area > div:first-child > p:last-child {
	color: #FFF;
	margin-bottom: 0px;
	font-size: 35px;
	font-weight: bold;
	max-width: 350px;
	line-height: 1;
	text-transform: uppercase;
}
.doc-callout .link-list {
	height: 80px;
	border: 1px solid #C3C3C3;
	border-radius: 0px 0px 4px 4px;
	overflow: hidden;
	flex-wrap: nowrap;
}
.doc-callout .link-list > div:first-child {
	border-right:  1px solid #C3C3C3;
}
.doc-callout .link-list > div {
	height: 100%;
	width: 100%;
	padding: 0px 40px;
}
.doc-callout .link-list > div a p {
	margin-bottom: 0px;
}
.doc-callout .link-list > div > a.flexbox {
	align-items: center;
	height: 100%;
	width: 100%;
	position: relative;
}
.doc-callout .link-list > div > a.flexbox:after {
	content: '\f054';
	font-family: 'Font Awesome 6 Pro';
	font-size: 14px;
	color: #2B2B2B;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.doc-callout .link-list > div > a.flexbox:hover:after {
	right: -10px;
	color: #D4261C;
}
.doc-callout .link-list > div > a.flexbox:hover  > div > p:first-child {
	color: #D4261C;
}
.doc-callout .link-list > div > a.flexbox > p:first-child {
	width: 34px;
	height: 34px;
	background-color: #EFEFEF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.doc-callout .link-list > div > a.flexbox > p:first-child i {
	color: #D4261C;
	font-size: 14px;
}
.doc-callout .link-list > div > a.flexbox > div > p:first-child {
	font-weight: bold;
	font-size: 16px;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	color: #000000;
}
.doc-callout .link-list > div > a.flexbox > div > p:last-child {
	font-size: 14px;
	color: #706F70;
}
/* TESTIMONIAL BAR */
.testimonial-section {
	width: 100%;
	background-color: #D4261C;
	height: 300px;
	margin-bottom: 25px;
	align-items: center;
}
.testimonial-slider {
	width: 100%;
}
.testimonial-slider .slick-slide > div > p:first-child {
	padding-right: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	margin-bottom: 0px;
}
.testimonial-slider .slick-slide {
	height: 300px;
}
.testimonial-slider .slick-slide > div.flexbox {
	padding: 50px;
}
.testimonial-slider .slick-slide {
	display: flex !important;
	justify-content: center;
	align-items: center;
}
.testimonial-slider .slick-slide > div > p:first-child:after {
	 content: '“';
	 font-size: 160px;
	 color: #FFF;
	 margin-bottom: 0px;
	 position: absolute;
	 left: -50px;
	 top: -50px;
	 
 }
.testimonial-slider .slick-slide > div {
	flex-wrap: nowrap;
}
.testimonial-large-font p{
	font-size: 25px !important;
	line-height: 1.1;
	color: #FFF;
	margin-bottom: 15px;
}
.testimonial-large-font {
	margin-bottom: 15px;
}
.testimonial-slider .slick-slide > div > div:last-child > p:last-child {
	margin-bottom: 0px;
	color: #FFF;
	font-size: 14px;
}
/* PRODUCT LISTINGS -- CATEGORIES */
.product-list {
	margin-bottom: 50px;
	justify-content: flex-start;
	padding-left: 100px;
}
.prod-main-list h1 {
	margin-bottom: 10px !important;
}
.product-list a {
	width: 260px;
	height: 350px;
	box-shadow: 0px 0px 3px #00000029;
	border-radius: 4px;
	margin: 10px;
	position: relative;
}
.product-list a > div:first-child {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	border-radius: 4px;
	z-index: 100;
	padding: 20px;
}
.product-image {
	width: 100%; 
	height: 150px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 15px;
}
.product-list a > .product-overlay {
	border-radius: 4px;
	z-index: 200;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
	background-color: rgba(38, 38, 38, 0.8);
	align-items: center !important;
	display: flex !important;
	justify-content: center;
	z-index: 150;
	position: absolute;
	left: 0px;
	top: 0px;
	opacity: 0;
}
.product-list a:hover .product-overlay {
	opacity: 1;
}
.product-list a > .product-overlay p {
	width: 198px;
	text-align: center;
	margin-bottom: 0px;
}
.product-list a > div:first-child > p {
	line-height: 1.1 !important;
}
/*.product-list a > div:first-child > p:nth-child(2) {*/
.product-list .top-cat {
	color: #706F70;
	margin-bottom: 5px !important;
}
/*.product-list a > div:first-child > p:nth-child(3) {*/
.product-list .x-title {
	font-weight: bold;
	font-size: 16px;
        margin-bottom: 5px !important;
}
.product-list a > div:first-child > p:last-child {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #D4261C;
	font-size: 14px;
	margin-bottom: 0px;
}

/* PRODUCT LISTINGS -- MAIN */
.prod-main {
	flex-wrap: nowrap;
	height: 100%;
}
.prod-main-filters {
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid rgba(0, 0, 0, 0.5);
	width: 300px;
	height: 100%;
}
.prod-main-filters .filter-set > a:first-child {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	width: 100%;
}
.prod-main-filters .filter-list > div > a,
.sub-filter-set > a {
	font-size: 14px;
	color: #706F70;
	margin-bottom: 5px;
}
.filter-list > div {
	margin-bottom: 15px;
}
.parent-filter {
	position: relative;
	width: 100%;
	transition: all 0.3s ease 0s;
}
.sub-filter-set {
	padding-left: 15px;
}
.prod-main-list {
	width: 100%;
        max-width: 1200px;
}
.filter-flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	width: 100%;
}
.filter-flex.no-child > a {
	width: 100% !important; 
	justify-content: flex-start !important;
}
.filter-flex.no-child {
	justify-content: flex-start !important;
}
.filter-flex > a:first-child {
	width: fit-content;
	padding-right: 25px;
}
.filter-flex > a:last-child {
	width: 50px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.filter-flex > a:last-child i {
	font-size: 14px;
	transition: all 0.3s ease 0s;
}
.sub-filter-set {
	display: none;
}
.category-filter.show .sub-filter i {
	transform: rotate(-180deg);
}
.show .parent-filter {
	color: #D4261C;
}
.prod-paging > div {
	width: 50%;
}
.prod-paging {
	flex-wrap: nowrap;
	padding-left: 110px;
}
.prod-paging ul {
	list-style-type: none;
	display: flex;
	justify-content: flex-start;
	width: fit-content;
}
.prod-paging .pagination {
	width: fit-content;
}
.prod-paging ul li:not(:last-child) {
	margin-right: 10px;
}
/* SPONSORS */
.sponsor-list {
	padding: 25px 0px;
	border-top: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
	width: 100%;
	margin-top: 50px;
}
.sponsor-list .slick-slide {
	height: 80px;
	width: 200px;
}
.sponsor-image {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.sponsor-slider {
	height: 90px;
}
/* PAGE VIDEOS */
.video-section {
	width: 100%;
	padding: 50px 0px;
	position: relative;
	margin-bottom: 25px;
}
.video-section:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0px;
	width: 100vw;
	height: 100%;
	background-image: url(../images/layout/bg-lines.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.video-container > div {
	overflow: hidden;
	width: 900px;
	height: 500px;
	border-radius: 4px;
}
.video-container > iframe {
	width: 100% !important;
	height: 100% !important;
}
/* GENERAL SUBPAGE */
.content-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.content-flex > div:first-child {
	width: 40%;
}
.content-flex .subpage-main > div:first-child {
	width: 100% !important;
}
.content-flex > div:last-child {
	width: 60%;
}
.subpage-main.no-image > div {
	width: 100% !important;
	max-width: 100% !important;
	height: fit-content !important;
	padding-right: 0px !important;
}
.page-sub-head {
	font-size: 16px;
	margin-bottom: 10px;
	text-transform: uppercase;
	line-height: 1.1 !important;
}
.page-head {
	line-height: 1 !important;
	margin-bottom: 20px;
	max-width: 350px;
}
.subpage-main {
	width: 100%;
	flex-wrap: nowrap;
}
.subpage-main.no-image {
	padding-right: 25px;
}
.subpage-main > div:last-child {
	width: 60%;
	max-width: 800px;
	height: 550px;
	position: relative;
}
.subpage-main > div:last-child > div {
	width: 120%;
	height: 630px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	overflow: hidden;
	box-shadow: 0px 0px 3px #00000029;
	border-radius: 4px;
}
.subpage-main > div:last-child > div > div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-position-x: -10px;
}
.subpage-main > div:first-child {
	width: 40%;
	padding-right: 100px;
}
.subpage-main > div:first-child p {
	line-height: 1.1 !important;
}
.subpage-main > div:first-child p span {
	font-size: 16px;
}
/* FAQs page */
.faq-list {
	list-style-type: none;
	width: 100%;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	height: fit-content;
}
.faq  {
	padding: 15px;
}
.faq:not(:first-child) {
	border-top: 1px solid #eee;
}
.question .icon-bg {
	position: absolute;
	right: 15px;
	top: -2px;
	transition: all 0.3s ease 0s;
	width: 34px;
	height: 34px;
	background-color: #EFEFEF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.question .icon-bg i {
	font-size: 14px;
	color: #D4261C;
}
.show .question .icon-bg {
transform: rotate(-90deg);
}
.question {
	position: relative;
	margin: 0;
	padding-right: 70px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
}
.section-content .question {
	font-size: 22px;
}
.show .question:after {
	border-top-width: 0;
	border-bottom-width: 8px;
}
.answer {
	padding: 20px 0 0;
}
.answer p {
	margin: 0;
	line-height: 1.1 !important;
	width: 75%;
}
.answer-drop {
	display: none;
}
/* SUBPAGE CALLOUTS */
.subpage-callouts {
	padding: 75px 0px;
	margin: 25px 0px;
	position: relative;
	height: fit-content;
}
.subpage-callouts .doc-callout {
	margin-bottom: 0px;
}
.subpage-callouts:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0px;
	width: 100vw;
	height: 100%;
	background-image: url(../images/layout/bg-lines.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
/* PRODUCT DETAILS */
.details-main {
	width: 100%;
	flex-wrap: nowrap;
}
.details-main > div:last-child {
	width: calc(100% - 570px);
	padding-left: 100px;
}
.details-main > div:first-child {
	width: 570px;
}
.details-image-set .details-image-main {
	height: 420px;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 10px;
}
.details-image-set .details-image-main a {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.details-image-sub a {
	height: 105px;
	border-radius: 4px;
	background-color: #FFF;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.details-image-sub {
	gap: 10px;
	flex-wrap: nowrap;
}
.details-main-info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 420px;
}
.details-main-info > div {
	max-width: 450px;
}
.details-main-info > div > p:first-child {
	text-transform: uppercase;
	font-size: 16px;
	color: #706F70;
	margin-bottom: 15px;
	line-height: 1.1 !important;
}
.details-main-info > div > h1 {
	color: #2B2B2B !important;
	margin-bottom: 15px;
	line-height: 1.1 !important;
}
.details-main-info > div > p:nth-child(3) {
	color: #706F70;
	font-size: 25px;
}
.details-main-info > div > div {
	width: 100%;
	border-top: 1px solid #E0E0E0;
	padding-top: 25px;
	
}
.details-main-info > div > div > div p{
	font-size: 14px;
	color: #706F70;
	margin-bottom: 5px;
}
.details-main-info > div > div > div {
	margin-right: 15px;
}
.prod-qty {
	width: 140px;
	height: 50px;
	border-radius: 4px;
	border: 1px solid #706F70;
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
}
.prod-qty div {
	width: 30px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-left: 1px solid #706F70;
}
.prod-qty div a {
	width: 30px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.prod-qty div a:first-child {
	border-bottom: 1px solid #706F70;
}
.prod-qty input {
	padding: 15px 20px !important;
	border: none !important;
	height: 50px;
	width: 110px;
	background-color: transparent;
	font-size: 18px;
	color: #706F70;
	font-family: "proxima-nova" !important;
	font-weight: 300;
}
.details-main-info .flexbox {
	align-items: flex-end;
}
.details-main-info .btn {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}
.detail-filters {
	align-items: center;
	padding: 5px 0px;
	border-top: 2px solid #E0E0E0;
	border-bottom: 2px solid #E0E0E0;
	margin: 25px 0px;
}
.detail-filters .flexbox {
	height: 42px;
	align-items: center;
}
.detail-details .flexbox > .flexbox {
	margin-right: 50px;
	width: 250px;
}
.detail-filters .flexbox a {
	font-size: 16px;
	text-transform: uppercase;
	margin-right: 30px;
	position: relative;
}
.active-detail-filter {
	color: #D4261C;
}
.active-detail-filter:after {
	content: '';
	width: 100%;
	height: 3px;
	background-color: #D4261C;
	position: absolute;
	left: 0px;
	bottom: -16px;
}

.desc-box {
	max-width: 500px;
}
.product-cat-list {
	padding-left: 0px;
}
.prod-alert-text {
	padding-left: 110px;
}

.shop_categories .page-sub-head {
    text-align:center;
}
.shop_categories .page-sub-head {
    text-align:center;
}
.shop_categories .page-head {
    text-align:center;
    line-height: 1 !important;
    margin-bottom: 20px;
    max-width: 1450px;
}
.shop_categories .page-content {
    line-height: 1 !important;
    margin: 0 125px 25px 125px;
    max-width: 900px;
}
.hide {
    display: none;
}

.detail-filters .info-cats .tabs.active {
    color: #D4261C;
}
    
#product-details .details-content-section .flexbox p {
	width: 100%;
	margin-bottom: 5px;
	line-height: 1.1 !important;
}
#product-details .details-content-section .flexbox p:first-child {
	font-weight: bold;
	font-size: 16px;
}
#product-details .details-content-section .flexbox p:last-child {
	color: #706F70;
}
#product-details .details-content-section .flexbox {
	margin-bottom: 25px;
}


.detail-details .details-content-section {
	display: none;
}
.detail-details .details-content-section.active {
	display: block;
}
.right-col {
	width: 300px;
	padding-top: 25px;
}
.col-left.with-right-side {
	width: calc(100% - 300px);
	padding-right: 50px;
}
.containerContact {
	padding-right: 0px !Important;
}
#prod-filter-close,
#prod-filter-open {
	display: none;
}
.shop_categories .page-head {
	text-align: left;
}
.dynamic-above {
	margin-top: 50px;
}