*{-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}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}img{max-width:100%;}
/*=== END RESET ===*/

/*=== CLEARFIX ===*/
.clear{clear:both}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{zoom:1}

/*=== GLOBAL ===*/
.flex-container{display:flex}.flex-vertical{flex-direction:column}.flex-horizontal{flex-direction:row}.flex-width{flex-grow:1;flex-shrink:1;flex-basis:100%}.flex-height{height:100%}.flex-wrap{flex-wrap:wrap}.set-width{flex-grow:0;flex-shrink:0;flex-basis:auto}.justify-center{justify-content:center}.justify-right{justify-content:flex-end}.justify-left{justify-content:flex-start}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.align-center{align-items:center}.align-top{align-items:flex-start}.align-bottom{align-items:flex-end}.align-stretch{align-items:stretch}.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}.mobile-only{display: none}.max-width{margin:0 var(--sm-padding)}.map{min-height:350px;line-height:0;}

/*=== SELECT STYLES ===*/
::selection, ::-moz-selection {
	background: var(--dark-red);
	color: var(--white);
	text-shadow: none;
}

/*=== FONTS AND HEADERS ===*/
@font-face {
	font-family: GothamBook;
	src: url(/siteart/fonts/Gotham-Book.otf) format('opentype'),
		url(/siteart/fonts/Gotham-Book.ttf) format('truetype');
}
@font-face {
	font-family: GothamMedium;
	src: url(/siteart/fonts/Gotham-Medium.otf) format('opentype'),
		url(/siteart/fonts/Gotham-Medium.ttf) format('truetype');
}
@font-face {
	font-family: GothamBold;
	src: url(/siteart/fonts/Gotham-Bold.otf) format('opentype'),
		url(/siteart/fonts/Gotham-Bold.ttf) format('truetype');
}

:root {
	/*=== Fonts ===*/
	--GothamBook: "GothamBook", sans-serif;
	--GothamMedium: "GothamMedium", sans-serif;
	--GothamBold: "GothamBold", sans-serif;

	/*=== Colors ===*/
	--white: #ffffff;
	--black: #231f20;
	--red: #c8102e;
	--tan: #dfd1a7;
	--grey: #f2f2f2;

	/*=== Spacing ===*/
	--lg-padding: clamp(75px, 5vw, 100px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}

body {
	font-family: var(--GothamBook);
	height: auto !important;
}
.page-shadow {
	max-width: 1920px!important;
    width: 100%!important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px!important;
    background-color: rgb(255, 255, 255)!important;
    margin: 0 auto!important;
	overflow-x: hidden;
}
strong, b {
	font-family: var(--GothamBold);
}
.xl-heading, .lg-heading, .md-heading, .sm-heading {
	font-family: var(--GothamBold);
	text-transform: uppercase;
}
.xs-heading {
	font-family: var(--GothamMedium);
	text-transform: capitalize;
	padding-top: 5px;
}
.xl-heading {font-size: clamp(56px, 5vw, 64px);line-height: clamp(56px, 5vw, 64px);}
.lg-heading {font-size: clamp(34px, 5vw, 42px);line-height: clamp(34px, 5vw, 42px);}
.md-heading {font-size: clamp(27px, 5vw, 35px);line-height: clamp(27px, 5vw, 35px);}
.sm-heading {font-size: clamp(18px, 5vw, 26px);line-height: clamp(18px, 5vw, 26px);}
.xs-heading {font-size: clamp(16px, 5vw, 18px);line-height: clamp(16px, 5vw, 18px);}

/*=== BUTTONS ===*/
.button-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 30px;
}

.service-form button.primary-button {max-width: 100px;}
#closePopup2 {background: #fff!important; padding: 10px 15px!important; transition: all ease 0.3s;}
#closePopup2:hover {opacity: 0.6;}

button.primary-button {
	font-family: var(--GothamBook);
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	background-color: var(--red);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
}
button.primary-button:hover {
	opacity: 0.6;
}
button.secondary-button {
	font-family: var(--GothamBook);
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	background-color: var(--black);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
}
button.secondary-button:hover {
	opacity: 0.6;
}
button.outline-button, ul.breadcrumbs li a {
	font-family: var(--GothamBook);
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	padding: 15px 20px;
	border-radius: 5px;
	box-shadow: inset 0px 0px 0px 1px var(--white);
	background-color: transparent;
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
}
button.outline-button:hover, ul.breadcrumbs li a:hover {
	opacity: 0.6;
}
.link-text {
	text-decoration: underline;
}

/*=== LOGO ===*/
.logo-container .logo {
	position: relative;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: auto;
	width: 100%;
	max-width: 200px;
	height: 100%;
    object-fit: contain;
    object-position: center;
}
a.logo-container {
	line-height: 0;
}

/*=== CUSTOM STYLES ===*/
p.paragraph {
	line-height: 28px;
	padding-bottom: 10px;
}
ul.list {
	list-style-type: disc;
	list-style-position: inside;
	padding-top: 10px;
}
ul.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 16px;
	line-height: 24px;
	padding-bottom: 150px;
}
ul.breadcrumbs li {
	display: inline-block;
	flex-basis: auto;
	padding: 13px 0;
}
ul.breadcrumbs li:not(:last-child)::after {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-left: 10px;
	font-size: 15px;
}

/*=== Swiper ===*/
.swiper {
	width: 100%;
	height: 100%;
	border-radius: 0 0 5px 5px;
}
.swiper-slide {
	text-align: center;
	font-size: 16px;
	background: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--red);
}
.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: var(--black);
	fill: none;
	stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--red, var(--red))!important;
}

/*=== Split Section ===*/
.split-section {
	display: flex;
	gap: 15px;
}
.split-section img.ad-image {
	aspect-ratio: 9 / 7;
    object-position: center;
    object-fit: cover;
    border-radius: 5px;
    line-height: 0;
}
.split-section .featured-image {
	width: 100%;
	background-position: center;
    background-size: cover;
    min-height: 350px;
	border-radius: 0 5px 5px 0;
}
.split-section .text-group {
	padding: var(--lg-padding) var(--sm-padding);
}

/*=== Small Banner ===*/
.sm-banner-section {
	display: flex;
    flex-direction: column;
    align-items: flex-end;
	text-align: right;
	background-position: center;
	background-size: cover;
	padding: var(--lg-padding);
	position: relative;
	overflow: hidden;
	background-color: var(--black);
	color: var(--white);
}
.sm-banner-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to right, rgba(35, 31, 32, 0), rgba(35, 31, 32, 1));
}
.sm-banner-section > * {
	position: relative;
	z-index: 2;
}
.sm-banner-section .button-group {
	justify-content: flex-end;
}

/*=== Large Banner ===*/
.lg-banner-section {
	padding: var(--lg-padding);
	margin: var(--lg-padding) 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(to right, var(--tan) 0%, var(--tan) 50%, var(--white) 50%, var(--white) 100%);
	color: var(--white);
	color: var(--black);
}
.lg-banner-section > .flex-container {
	gap: 15px var(--lg-padding);
}
.lg-banner-section img {
	max-width: 400px;
	width: 100%;
	margin: auto;
}
.lg-banner-section .text-banner-group {
	margin: auto;
}

/*=== Logo Background ===*/
.logo-bg {
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.logo-bg::after {
	    content: '';
    position: absolute;
	width: 371px;
	height: 618px;
	background: url(/siteart/Norheim-Logo-Icon-Only-BW.webp) no-repeat;
	background-position: center;
	background-size: 371px 618px;
    transform: rotate(10deg);
    pointer-events: none;
    z-index: -1;
    filter: grayscale(100%);
    opacity: 0.07;
    top: 65px;
    right: -75px;
    bottom: auto;
    left: auto;
}

/*=== BRAND-GRID ===*/
.brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	position: relative;
}
.brand-grid .brand-heading {
	position: absolute;
    color: var(--black);
    left: 50%;
    top: 0px;
	transform: translate(-50%, 0);
	width: 100%;
}
.brand-grid .brand {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 0 20px var(--grey);
	background-color: #ffffff;
	padding: 20px;
	text-align: center;
	line-height: 0px;
	transition: .3s ease all;
	position: relative;
	align-items: center;
    justify-content: center;
	border-radius: 5px;
	min-height: 125px;
}
.brand-grid a.brand:hover {
	box-shadow: 0 0 20px var(--grey);
}
.brand-grid .brand img {
	opacity: 1;
	transition: .3s ease all;
}
.brand-grid a.brand:not(:last-child):hover img {
	opacity: .1;
}
.brand-grid .brand:last-child {
	background-color: var(--red);
	color: var(--white);
	font-size: 18px;
	line-height: 18px;
	min-height: 115px;
}
.brand-grid .brand img {
	height: 100%;
	max-height: 75px;
    width: 100%;
	max-width: 150px;
    object-position: center;
    object-fit: contain;
}

/*=== Category Section ===*/
.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	padding: var(--lg-padding) 0 0;
	position: relative;
}
.category-grid .category-container {
	display: flex;
	box-shadow: 0 0 20px var(--grey);
	background-color: #ffffff;
	padding: 20px;
	text-align: center;
	line-height: 0px;
	transition: .3s ease all;
	position: relative;
	height: 100%;
	height: 125px;
	align-items: center;
    justify-content: center;
	background: url(/siteart/stardust.webp) no-repeat;
	background-color: #fff;
	background-position: center;
	background-size: cover;
	border-radius: 5px;
}
.category-grid .category-container:hover {
	box-shadow: 0 0 20px var(--grey);
	background-color: var(--tan);
}
.category-grid .category-container img {
	opacity: 1;
	transition: .3s ease all;
}
.category-grid .category-container:hover img {
	opacity: .1;
}
.category-grid .category-container strong {
	position: absolute;
	top: 50%; right: 50%;
	transform: translate(50%,-50%);
	opacity: 0;
	transition: .3s ease all;
}
.category-grid .category-container:hover strong {
	opacity: 1;
}
.category-grid .category-container img {
	height: 100%;
	max-height: 100px;
    width: 100%;
	max-width: 175px;
    object-position: center;
    object-fit: contain;
}

/*=== FLAIRS ===*/
.flair-group {
	padding-bottom: 30px;
}
.flair-group .xs-heading {
	padding-bottom: 10px;
}
.flair-group ul.flair-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 16px;
	line-height: 24px;
}
.flair-group ul.flair-list li {
	background-color: var(--grey);
	border-radius: 5px;
	padding: 5px 10px;
}

/*=== SUB PAGE HERO ===*/
#sub-page .header-section {
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
	color: var(--white);
	border-radius: 0 0 5px 5px;
	background-color: var(--black);
}
#sub-page .header-section .header-text {
	background: linear-gradient(to right, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0.5));
	padding: var(--sm-padding);
}
#sub-page .more-info-section {
	width: 100%;
	max-width: 1000px;
}

/*=== HEADER ===*/
header.site-header {
	background-color: var(--black);
	font-family: var(--GothamBold);
	color: var(--white);
	padding: 10px 0 0;
	position: relative;
}

/*=== FOOTER ===*/
footer.site-footer {
	font-size: 16px;
	line-height: 28px;
	padding: 0;
	margin-top: 60px;
	background-color: var(--black);
	color: var(--white);
}
footer.site-footer .footer-logo {
	background-color: var(--grey);
	position: relative;
	width: 275px;
	padding: 15px 30px;
	line-height: 0;
	transform: translateY(-60px);
	margin: auto;
	border-radius: 5px;
}
footer.site-footer .middle-footer {
	text-align: center;
	padding-bottom: var(--lg-padding);
	justify-content: center;
    gap: var(--sm-padding);
}
footer.site-footer .middle-footer .paragraph {
	padding-top: 10px;
}
footer.site-footer .bottom-footer {
	padding-bottom: var(--sm-padding);
}

/*=== PAGE STYLES ===*/
/*=== SUB PAGE ===*/
#sub-page:not(.inventory-page), .default-page{
	font-family: var(--GothamBook);
	font-size: 16px;
	line-height: 24px;
}

/*=== Default Page ===*/
.default-page .brand-section {
	padding: var(--lg-padding) 0;
}

/*=== Products Page ===*/
.products-page .category-section {
	padding: var(--lg-padding) var(--sm-padding);
}
.products-page .category-section:not(:last-of-type) {
	border-bottom: 2px solid var(--grey);
}
.products-page .category-section .sidebar-heading {
	padding-right: 30px;
	width: 100%;
	max-width: 300px;
	position: relative;
}
.products-page .category-section .sidebar-heading::after {
	content: "";
    position: absolute;
    top: 0;
    left: 25px;
    bottom: 0;
    height: 100%;
    width: 0;
	z-index: 0;
    border-right: 1px solid var(--black);
}
.products-page .category-section .sidebar-heading h2 {
	background-color: var(--white);
    width: 100%;
    z-index: 1;
    position: sticky;
	top: 30px;
    padding: 25px 0;
}
.products-page .category-section .product-heading {
	padding: 30px 0;
}
.products-page .category-section .product-light-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding: 0 0 30px;
}
.products-page .category-section .product-light-box img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
	border-radius: 5px;
}
.products-page .category-section .feature-list {
	background-color: var(--grey);
    padding: 20px;
	border-radius: 5px;
	margin: 30px 0;
}
.products-page .category-section .feature-list li {
	position: relative;
	margin-left: 20px;
}
.products-page .category-section .feature-list li::before {
	content: '';
    background: url(/siteart/Norheim-Logo-Icon-Only-BW.webp) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: -20px;
    height: 20px;
    width: 10px;
}
.products-page .category-section .details-heading {
	padding-bottom: 15px;
}
.products-page .category-section .dual-details {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.products-page .category-section .dual-details > div {
	max-width: 500px;
    width: 100%;
}

/*=== Image Grid ===*/
.image-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	padding-bottom: var(--lg-padding);
}
.image-grid img {
	overflow: hidden;
	object-fit: cover;
	object-position: center;
	max-height: 350px;
	border-radius: 5px;
	width: 100%;
}


.form-header-group.header-large {background-color: #c8102e!important;}
.form-header-group .form-header {color:#fff!important;}
.supernova {background:#f5f5f5!important;}



@media screen and (max-width: 1350px) {
	/*=== Header ===*/
	header.site-header .desktop-only{display:none}
	header.site-header .mobile-only{display:flex}
	header.site-header .logo-container{padding: 35px 0 10px;}
	header.site-header .top-nav{    justify-content: center;}
	header.site-header nav.primary > ul{    justify-content: center;}
	header.site-header nav.primary{
		padding: 0;
	}

	/*=== BRAND-GRID ===*/
	.brand-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 1050px) {
	/*=== Products Page ===*/
	.products-page .category-section {
		flex-direction: column;
	}
}

@media screen and (max-width: 950px) {
	/*=== Category Section ===*/
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== Image Grid ===*/
	.image-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== Small Banner ===*/
	.sm-banner-section {
  		padding: var(--lg-padding) var(--sm-padding);
	}

	/*=== Large Banner ===*/
	.lg-banner-section {
		  padding: var(--lg-padding) var(--sm-padding);
	}
	.lg-banner-section > .flex-container {
		flex-direction: column;
		gap: 50px;
    	text-align: center;
	}
	.lg-banner-section > .flex-container .button-group {
		justify-content: center;
	}
}

@media screen and (max-width: 875px) {
	.flex-horizontal{flex-direction:column}

	/*=== BRAND-GRID ===*/
	.brand-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.products-page .category-section .product-light-box {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 650px) {
	.flex-horizontal{flex-direction:column}

	/*=== Split Section ===*/
	.split-section {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.split-section .text-group {
		padding: var(--lg-padding) var(--sm-padding) 0;
	}
}

@media screen and (max-width: 500px) {
	/*=== Category Section ===*/
	.category-grid {
        grid-template-columns: repeat(1, 1fr);
    }

	/*=== BRAND-GRID ===*/
	.brand-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}