*{-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 ===*/
/*=== 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;
}

:root {
	/*=== Fonts ===*/
	--Roboto: "Roboto Condensed", sans-serif;

	/*=== Colors ===*/
	--white: #ffffff;
	--black: #000000;
	--green: #4A823A;
	--grey: #757575;
	--light-grey: #c2c2c2;

	/*=== Spacing ===*/
	--lg-padding: clamp(75px, 5vw, 100px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}

body {
	font-family: var(--Roboto);
	height: auto !important;
}
.page-shadow {
	max-width: 1800px!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(--Roboto);
}
.xl-heading, .lg-heading, .md-heading, .sm-heading, .xs-heading {
	font-family: var(--Roboto);
	text-transform: uppercase;
	font-weight: 700;
}
.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(18px, 5vw, 18px);line-height: clamp(18px, 5vw, 18px);}

/*=== BUTTONS ===*/
.button-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	padding-top: 30px;
}
button.primary-button {
	font-family: var(--Roboto);
	font-weight: 700;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 12px 15px;
	background-color: var(--green);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
}
button.primary-button:hover {
	opacity: 0.6;
}
button.secondary-button, ul.breadcrumbs li a  {
	font-family: var(--Roboto);
	font-weight: 700;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 12px 15px;
	background-color: unset;
	box-shadow: inset 0px 0px 0px 1px var(--white);
	color: var(--white);
	opacity: 1;
	transition: all ease 0.3s;
}
button.secondary-button:hover, ul.breadcrumbs li a:hover {
	opacity: 0.6;
}
button.colored-outline-button {
	font-family: var(--Roboto);
	font-weight: 700;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 12px 15px;
	box-shadow: inset 0px 0px 0px 1px var(--green);
	background-color: transparent;
	color: var(--black);
	opacity: 1;
	transition: all ease 0.3s;
}
button.colored-outline-button:hover {
	opacity: 0.6;
}

/*=== 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, blockquote.paragraph {
	line-height: 28px;
	padding-top: 20px;
}
ul.list {
	list-style-type: none;
	list-style-position: inside;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	font-weight: 700;
	justify-content: center;
}
ul.list li:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f14a";
	color: var(--green);
	padding-right: 10px;
}
ul.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 16px;
	line-height: 24px;
	align-content: center;
}
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;
}
.bg-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 350px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}

/*=== Financing Calculator ===*/
.finance-calc {
	height: 575px;
}

/*=== Large Banner ===*/
.lg-banner-section {
	padding: var(--lg-padding) 0;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/siteart/location.webp') center no-repeat;
	background-size: cover;
}
.lg-banner-section .text-banner-group {
	margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
	padding: 0 var(--sm-padding);
}

/*=== Logo Background ===*/
.logo-bg {
	position: relative;
	z-index: 0;
}
.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 Logo ===*/
.sm-logo {
	max-width: 200px;
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}

/*=== HEADER ===*/
header.site-header {
	background-color: var(--white);
	font-family: var(--Roboto);
	color: var(--black);
	padding: 25px 0;
	border-bottom: 1px solid var(--light-grey);
}
header.site-header .mobile-top-nav {
	display: none;
}

/*=== FOOTER ===*/
footer.site-footer {
	font-size: 18px;
	line-height: 28px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
}
footer.site-footer .floating-logo {
	display: flex;
    justify-content: center;
    position: relative;
    transform: translateY(-50%);
}
footer.site-footer nav ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0px 0 var(--lg-padding);
	font-weight: 700;
	gap: 0 50px;
	margin: auto;
	text-align: center;
}
footer.site-footer .bottom-footer {
	background-color: var(--green);
	color: var(--white);
	padding: 10px;
	font-size: 16px;
}

/*=== PAGE STYLES ===*/
/*=== About Section ===*/

/*=== SUB PAGE ===*/
#sub-page:not(.inventory-page), .default-page{
	font-family: var(--Roboto);
	font-size: 18px;
	line-height: 24px;
	overflow: hidden;
}
#sub-page .hero-section {
	background: var(--green);
	background-size: cover;
	padding: var(--sm-padding) 0;
	color: var(--white);
}
#sub-page .split-section {
	gap: 50px;
}
#sub-page .split-section .half-text {
	padding: var(--lg-padding) var(--sm-padding) calc(var(--lg-padding) * 2);
}

/*=== Default Page ===*/
.default-page .hero-section {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%,  rgba(0, 0, 0, 0.5) 100%), url('/siteart/used-tractors.webp') center no-repeat;
	background-size: cover;
	padding: var(--lg-padding) 0;
	color: var(--white);
}
.default-page .category-section {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	text-align: center;
}
.default-page .category-section > div{
	padding: 50px 25px;
	border-bottom: 1px solid var(--light-grey);
}
.default-page .category-section h3 {
	color: var(--grey);
	padding-top: 25px;
}
.default-page .category-section img {
	max-width: 150px;
	width: 100%;
}
.default-page .brand-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: var(--white);
	background-color: var(--black);
}
.default-page .brand-section .brand {
	text-align: center;
	height: 350px;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	gap: 10px;
	padding: 25px;
	background-size: cover!important;
	background-position: center!important;
}
.default-page .brand-section .brand ul {
	flex-wrap: wrap;
	display: flex;
	gap: 5px 15px;
	justify-content: center;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease, max-height 0.3s ease;
}
.default-page .brand-section .brand:hover ul {
	opacity: 1;
	max-height: 500px;
}
.default-page .brand-section .brand ul li:not(:last-child) {
	border-right: 1px solid var(--white);
	padding-right: 15px;
}
.default-page .about-section {
	padding: var(--lg-padding) 0;
	text-align: center;
	gap: var(--lg-padding);
}
.default-page .lg-banner-section {
	padding: calc(var(--lg-padding) + 50px) 0;
}

/*=== Service Page ===*/
.service-page ul.list {
	justify-content: flex-start;
	padding: 30px 0 10px;
}

/*=== About Page ===*/
.about-page .split-section .list {
	justify-content: flex-start;
	padding: 30px 0 10px;
}
.about-page .staff-section {
	padding: var(--lg-padding) var(--sm-padding) calc(var(--lg-padding) * 2);
}
.about-page .staff-section .staff-grid {
	padding: 25px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}
.about-page .staff-section .staff-grid img {
	width: 100%;
    max-width: 200px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 5px 0px var(--grey);
}
.about-page .staff-section .staff-grid h4 {
	padding: 25px 0 10px;
}
.about-page .staff-section .staff-grid .position {
	padding: 0 0 10px;
	text-transform: uppercase;
	font-style: italic;
}

/*=== Contact Page ===*/
.contact-page .split-section .list {
	justify-content: flex-start;
	padding: 30px 0 10px;
}

/*=== Leasing Financing Page ===*/
.leasing-financing-page .payment-calc-section {
	padding: 0 0 var(--lg-padding);
}
#sub-page .split-section .half-text.leasing-text {
	padding: var(--lg-padding) var(--sm-padding) 0;
}

@media screen and (max-width: 1053px) {
	/*=== Finance Calc ===*/
	.finance-calc {
		height: 875px;
	}
}

@media screen and (max-width: 1025px) {
	/*=== Default ===*/
	.default-page .brand-section {
		grid-template-columns: repeat(3, 1fr);
	}
	.default-page .category-section {
		grid-template-columns: repeat(4, 1fr);
	}

	/*=== Footer ===*/
	footer.site-footer nav ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px 25px;
	}
}

@media screen and (max-width: 875px) {
	.flex-horizontal{flex-direction:column}.desktop-only{display:none}.mobile-only{display:flex}
	
	/*=== Finance Calc ===*/
	.finance-calc {
		height: 900px;
	}

	/*=== About Page ===*/
	.about-page .staff-section .staff-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 750px) {
	/*=== Sub Page ===*/
	#sub-page .hero-section > .flex-container{
		flex-direction: column;
		gap: 25px;
		text-align: left;
	}
	#sub-page .split-section .half-text {
		text-align: left;
	}
	#sub-page .hero-section .breadcrumbs {
		justify-content:flex-start;
	}

	/*=== Default ===*/
	.default-page .category-section {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.default-page .brand-section {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 600px) {
	/*=== Default ===*/
	.default-page .brand-section {
		grid-template-columns: repeat(1, 1fr);
	}

	/*=== About Page ===*/
	.about-page .staff-section .staff-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 675px) {
	/*=== Finance Calc ===*/
	.finance-calc {
		height: 975px;
	}

	/*=== Footer ===*/
	footer.site-footer nav ul {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== Default ===*/
	.default-page .category-section {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 500px) {
	/*=== Header ===*/
	header.site-header .desktop-top-nav {
		display: none;
	}
	header.site-header .mobile-top-nav {
		display: flex;;
	}
	
	/*=== Finance Calc ===*/
	.finance-calc {
		height: 1100px;
	}
}

@media screen and (max-width: 375px) {
	/*=== Finance Calc ===*/
	.finance-calc {
		height: 1275px;
	}
}