* {
	-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;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
a {text-decoration:none;cursor: pointer;}
/* HTML5 display-role reset for older browsers */
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;
}
::-moz-selection {
    background: #000000;
    color: #ffffff;
    text-shadow: none;
}
::selection {
    background: #000000;
    color: #ffffff;
    text-shadow: none;
}
/*=== END RESET ===*/

/*=== Clearfix ===*/
.clear {clear: both;}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

/*=== ELEMENTS ===*/
img {max-width: 100%;}
html {
	height: auto!important;
}
body {
	font-family: "Rajdhani", sans-serif!important;
	font-weight: 500!important;
	font-style: normal;
	font-size: 16px;
}
strong {
	font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Rajdhani", sans-serif;
	font-weight: 700;
	font-style: normal;
}
h1 {font-size: 56px;line-height: 54px;}
h2 {font-size: 42px;line-height: 40px;font-weight: 600;}
h3 {font-size: 35px;line-height: 33px;}
h4 {font-size: 26px;line-height: 24px;}
h5 {font-size: 23px;line-height: 21px;}
h6 {font-size: 18px;line-height: 16px;}
.button-group {
	display: flex;
	flex-wrap: wrap;
	padding-top: 25px;
	gap: 10px 20px;
}
button.primary-button, button.secondary-button {
	font-style: normal;
	font-size: 16px;
    transition: all ease .3s;
    padding: 10px 17px;
	align-items: center;
	text-align: left;
	font-family: "Rajdhani", sans-serif;
	font-style: normal;
	font-weight: 600;
}
button.primary-button {
    background-color: #b21117;
    color: #ffffff;
    border: 1px solid #b21117;
	transition: .3s ease all;
}
button.primary-button:hover {
	filter: drop-shadow(2px 4px 6px #000000);
}
button.secondary-button {
    background-color: #e5e5e5;
    color: #000000;
    border: 1px solid #e5e5e5;
	transition: .3s ease all;
}
button.secondary-button:hover {
	filter: drop-shadow(2px 4px 6px #000000);
}

/*=== 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-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;
}

.left-icon {
	margin-right: 10px;
}
.right-icon {
	margin-left: 10px;
}
.clickable {
	cursor: pointer;
}

.mobile-only {
	display: none;
}

.max-width {
	max-width: 1920px;
	width: 90vw;
	margin: 0 auto;
}
.hidden {
	display: none;
	transition: all ease .3s;
}
.success-message {
	color: #188d2b;
}
.paragraph {
	padding-top: 15px;
}
a.decorate {
	text-decoration: underline;
	transition: .3s ease all;
}
a.decorate:hover {
	font-weight: 800;
}
ul.breadcrumb {
	padding: 10px 0 0;
	list-style: none;
}
ul.breadcrumb li {
	display: inline;
	font-size: 14px;
	line-height: 18px;
}
ul.breadcrumb li+li:before {
	padding: 8px;
	color: #FFF030;
	content: "/\00a0";
}
ul.breadcrumb li a {
	text-decoration: none;
}
ul.breadcrumb li a:hover {
	text-decoration: underline;
}
.logo-container {
	margin: 25px 5vw;
    max-height: 75px;
}
.logo-container .logo {
	max-height: 75px;
	height: 100%;
	width: 100%;
}
.layered-text {
	position:relative;
	width: 100%;
}
.layered-text *:first-child {
	position: absolute;
	z-index: 10;
	left: 10px;
	top: 50%;
	transform: translatey(-50%);
	color: #000000;
	font-size: 42px;
    line-height: 46px;
}
.layered-text *:last-child {
	position: relative;
	z-index: 5;
	color: #e5e5e5;
	font-size: 60px;
    line-height: 64px;
}
.map {
	line-height: 0;
}
.split-tone-bg {
	background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 66%, #f8f8f8 66%, #f8f8f8 100%);
	padding: clamp(50px, 5vw, 75px) 0;
}
.white-bg {
	background-color: #FFFFFF;
	padding: clamp(50px, 5vw, 75px) 0;
}
.half-text {
	width: 50%;
}

/*=== HEADER ===*/
header.site-header .top-nav {
	background-color: #b21117;
	color: #ffffff;
	padding: 10px 5vw;
}
header.site-header .top-nav .contact-icons {
	gap: 10px;
}
header.site-header .bottom-nav {
	background-color: #e5e5e5;
	color: #ffffff;
	padding: 20px 5vw;
}

/*=== FOOTER ===*/
footer.site-footer {
	background-color: #ffffff;
	font-size: 16px;
	border-top: 1px solid #e5e5e5;
}
footer.site-footer a {
	transition: .3s ease all;
}
footer.site-footer a:hover {
	font-weight: 800;
}

footer.site-footer .top-footer .footer-nav {
	gap: 15px 30px;
    background-color: #b21117;
    color: #ffffff;
    padding: clamp(50px, 5vw, 75px) 5vw;
}
footer.site-footer .top-footer .footer-nav .inv-footer-nav {
	gap: 0 30px;
	align-items: flex-end;
}
footer.site-footer .bottom-footer {
	padding: 5px 0;
}

/*=== PAGE STYLES ===*/

/*=== SERVICE-GRID ===*/
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 25px;
	border: 1px solid #e5e5e5;
	grid-gap: 1px;
	background-color: #e5e5e5;
}
.service-grid .service-item {
	position: relative;
	padding: 20px;
	text-align: center;
	background-color: #ffffff;
	font-weight: 800;
	font-size: 18px;
	height: 100%;
	align-content: center;
}
.service-grid .service-item img {
	position: relative;
	z-index: 5;
	height: 55px;
	width: 55px;
}
.service-grid .service-item p {
	position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: calc(100% - 40px);
}
.service-grid .highlighted-item {
	background-color: #b21117;
	color: #ffffff;
}
.service-grid a {
	transition: .3s ease all;
}
.service-grid a:hover {
	filter: drop-shadow(2px 4px 6px #000000);
}

/*=== SUB-PAGE ===*/
.sub-page .hero-container {
    padding: clamp(75px, 10vw, 125px) 0;
    color: #ffffff;
	text-align: left;
}
.sub-page .hero-container .hero-text-container {
	display: flex;
	flex-direction: column;
}
.sub-page .hero-container .hero-text-container h2 {
	padding-top: 15px;
}
.sub-page .hero-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sub-page .hero-container .half-text {
	margin-top: 25px;
}

/*=== DEFAULT-PAGE ===*/
.default-page .hero-container {
	background: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0.5) 100%), url("/siteart/tree-cutting.jpg");
    background-position: center;
    background-size: cover;
    padding: clamp(75px, 10vw, 125px) 0;
    color: #ffffff;
	text-align: center;
}
.default-page .hero-container .hero-text-container {
	max-width: 1920px;
	margin: auto;
}
.default-page .hero-container .hero-text-container h2 {
	padding-top: 15px;
}
.default-page .hero-container .hero-search input {
	padding: 10px 20px;
	color: #000000;
	border-radius: 0;
}
.default-page .hero-container .hero-search {
	max-width: clamp(450px, 33vw, 750px);
	margin: auto;
	padding-top: 40px;
}
.default-page .inventory-section {
	padding: clamp(50px, 5vw, 75px) 0 clamp(50px, 5vw, 75px) 5vw;
}
.default-page .inventory-section .category-slider {
	overflow: hidden;
	padding-top: 25px;
}
.default-page .inventory-section .category-slider .slick-track {
	opacity: 1!important;
}
.default-page .inventory-section .category-slider .category-container {
	margin: 0 30px 0 0;
	border: 1px solid #e5e5e5;
	background-color: #FFFFFF;
	position: relative;
	height: 100%;
}
.default-page .inventory-section .category-slider .slick-list {
	padding-left: 10px;
} 
.default-page .inventory-section .category-slider .category-container img {
	clip-path: polygon(0 0, calc(100% - 75px) 0%, 100% 75px, 100% 100%, 75px 100%, 0 calc(100% - 75px));
	min-height: 225px;
	max-height: 225px;
	height: 100%;
    object-fit: cover;
	padding: 20px 0;
	position: relative;
    left: -10px;
}
.default-page .inventory-section .category-slider .category-container .dec-triangle {
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	height: 75px;
	width: 75px;
	background-color: #b21117;
	position: absolute;
	right: -10px;
}
.default-page .inventory-section .category-slider .category-container h5 {
	position: relative;
    left: -10px;
    padding-bottom: 20px;
}
.default-page .about-section {
	background: linear-gradient(to right, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0.75) 100%), url("/siteart/chainsaw.jpg");
	background-position: center;
	background-size: cover;
	color: #FFFFFF;
	padding: clamp(50px, 5vw, 75px) 0;
}
.default-page .about-section .layered-text {
	text-align: center;
}
.default-page .about-section .layered-text *:first-child {
	color: #FFFFFF;
	left: 50%;
    transform: translate(-50%, -52%);
	width: 100%;
}
.default-page .about-section .layered-text *:last-child {
	color: #565656;
}
.default-page .about-section .about-text {
	gap: 0 20px;
}
.default-page .disclaimer  {
	background-color: #f8f8f8;
	padding: 15px 5vw;
	text-align: center;
	font-size: 14px;
}

/*=== SERVICES-PAGE ===*/
.services-page .hero-container  {
	background: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0.5) 100%), url("/siteart/lift-and-tree.jpg");
    background-position: center;
    background-size: cover;
}
.services-page .service-grid .service-item.highlighted-item {
	grid-column: 2 / 4;
}
.services-page .contact-form {
	padding-top: 20px;
}

/*=== SERVICES-PAGE ===*/
.contact-page .hero-container  {
	background: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0.5) 100%), url("/siteart/bucket-truck-with-cones.jpg");
    background-position: center;
    background-size: cover;
}
.contact-page .contact-method-banner  {
	padding: 50px 0;
	gap: 10px 25px;
	
}
.contact-page .contact-method-banner .contact-item {
	text-align: center;
	box-shadow: 0 0 20px -15px #000;
    align-content: center;
	padding: 15px;
}
.contact-page .contact-method-banner .contact-item a {
	transition: .3s ease all;
}
.contact-page .contact-method-banner .contact-item a:hover {
	font-weight: 800;
}

/*=== INVENTORY-PAGE ===*/
.inventory-page .hero-container {
	background: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0.5) 100%), url("/siteart/bucket-truck-with-chipper.jpg");
    background-position: center;
    background-size: cover;
}
.inventory-page .hero-container .hero-text-container h2 {font-size: 56px;line-height: 54px;font-weight: 700;padding-top: 0;}
.inventory-page .hero-container .hero-text-container h3 {font-size: 42px;line-height: 40px;font-weight: 600;padding-top: 15px;}

@media screen and (max-width: 850px) {
	.contact-page .contact-method-banner {
		flex-direction: column;
		align-items: center;
	}
	.contact-page .contact-method-banner .contact-item {
		max-width: 425px;
		width: 100%;
	}
}

@media screen and (max-width: 650px) {
	.flex-horizontal {
		flex-direction: column
	}
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: flex;
	}
	
	.half-text {
		width: 100%;
	}

	/*=== SERVICE-GRID ===*/
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/*=== DEFAULT-PAGE ===*/
	.default-page .hero-container .hero-search input {
		text-align: center;
	}
	.default-page .hero-container .hero-search button.primary-button {
		text-align: center;
	}

	/*=== SERVICES-PAGE ===*/
	.services-page .service-grid .service-item.highlighted-item {
		grid-column: 1 / 3;
	}
}

@media screen and (max-width: 425px) {
	h1 {font-size: 48px;line-height: 46px;}
	h2 {font-size: 40px;line-height: 38px;font-weight: 600;}
	h3 {font-size: 33px;line-height: 31px;}
	h4 {font-size: 24px;line-height: 22px;}
	h5 {font-size: 21px;line-height: 19px;}
	h6 {font-size: 16px;line-height: 14px;}
	.layered-text *:first-child {
		font-size: 32px;
		line-height: 36px;
	}
	.layered-text *:last-child {
		font-size: 45px;
		line-height: 49px;
	}
	.button-group a {
		width: 100%;
	}
	button.primary-button, button.secondary-button {
		width: 100%;
		text-align: center;
	}

	/*=== HEADER ===*/
	header.site-header .header-wrapper {
		flex-direction: column;
	}
	header.site-header .top-nav {
		display: none;
	}
	header.site-header .logo-container {
		margin-bottom: 10px;
	}

	/*=== FOOTER ===*/
	footer.site-footer .top-footer {
		flex-direction: column-reverse;
	}

	/*=== DEFAULT-PAGE ===*/
	.default-page .hero-container .hero-text-container h1 {
		font-size: 50px;
		line-height: 48px;
	}
	.default-page .inventory-section button.primary-button, .default-page .inventory-section button.secondary-button {
		width: unset;
	}

	/*=== SERVICE-PAGE ===*/
	.service-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	/*=== SERVICES-PAGE ===*/
	.services-page .service-grid .service-item.highlighted-item {
		grid-column: 1 / 2;
	}

	/*=== INVENTORY-PAGE ===*/
	.inventory-page .hero-container {
		background: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0.5) 100%), url("/siteart/bucket-truck-with-chipper.jpg");
		background-position: center;
		background-size: cover;
	}
	.inventory-page .hero-container h2 {font-size: 48px;line-height: 46px;}
	.inventory-page .hero-container h3 {font-size: 40px;line-height: 38px;font-weight: 600;}
}