@charset "utf-8";
/* CSS Document */
*{-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;}


*,
*::before,
*::after {
    transition: all 0.3s ease;
}
a:hover {cursor: pointer !important;}

/*=== SELECT STYLES ===*/
::selection, ::-moz-selection {
	background: var(--red);
	color: var(--white);
	text-shadow: none;
}

:root {
	/*=== Fonts ===*/
    --Akshar: "Akshar", sans-serif;
    --Inter: "Inter", sans-serif;

	/*=== Colors ===*/
	--white: #F9F8F1;
	--black: #001A1A;
	--blue: #002323;
	--orange: #E84C1C;
	--dk-orange: #5F2F18;
	--tan: #C1BDB3;
    --gray: #606A6C;
    
    /*=== Font Sizes ===*/
    --p: clamp(16px, 5vw, 20px);

	/*=== Spacing ===*/
	--lg-padding: clamp(75px, 5vw, 100px);
	--sm-padding: clamp(25px, 2.5%, 2.5%);
}

    .white{color: var(--white)}
    .black{color: var(--black)}
    .orange{color: var(--orange)}
    .tan{color: var(--tan)}
    .grey{color: var(--grey)}
    .gray{color: var(--gray)}

    .bg-tan {background-color: var(--tan);}
    .bg-orange {background-color: var(--orange);}
    .bg-black {background: var(--black) !important;}

body {
    position: relative;
	font-family: var(--Akshar), sans-serif !important;
    font-weight: 300;
	height: auto !important;
    background-color: var(--white);
/*    background-image:  url("/siteart/logo-background.svg");*/
}

.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(--Akshar);*/
    font-weight: 800;
}
p {
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 500;
}
.bold {
	font-family: var(--Akshar);
    font-weight: 500;
}

.thick {
	font-family: var(--Akshar);
    font-weight: 500 !important;
}

.center {text-align: center;}

.xl-heading, .lg-heading, .md-heading, .sm-heading {
	font-family: var(--Akshar);
	text-transform: uppercase;
}

.xl-heading-bold {
	font-family: var(--Akshar);
	text-transform: uppercase;
    font-weight: 500 !important;
}


.xs-heading {
	font-family: var(--Akshar);
    font-weight: 900;
	text-transform: uppercase;
	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);}

.sm-padding {padding: 20px 0;}

.caps {text-transform: uppercase;}
.nocap {text-transform: none;}

.width90 {width: 90%; max-width: 1600px; margin: auto;}

/*=== BODY STYLES 
============================================*/
.btn-orange {display:flex;justify-content:center;align-items:center;text-align:center;max-width:220px;border:3px solid var(--orange);background:linear-gradient(90deg,var(--orange),var(--dk-orange),var(--orange));background-size:200% 100%;background-position:left center;border-radius:100px;padding:10px 20px;text-transform:uppercase;color:var(--white);transition: 0.35s ease all;}
.btn-orange:hover {background-position:right center; border-color: var(--dk-orange); transition: 0.3s ease all;}

.splatter-bg {background: linear-gradient(rgba(255,255,255,0.90)), url("/siteart/splatter-background.png") !important; background-size: cover; background-position: bottom center;}

.splatter-white {background: linear-gradient(rgba(249, 248, 241, 0.9)), url("../siteart/splatter-top.png"), linear-gradient(var(--white)) !important; background-size: cover !important; background-position: 50% 50% !important;}

.splatter-black {background: linear-gradient(rgba(0, 16, 16, 0.9)), url("../siteart/splatter-top.png"), linear-gradient(var(--black)) !important; background-size: cover !important; background-position: 50% 50% !important;}
/*=== HEADER STYLES 
==============================*/
.top-runner {background-color: var(--tan); padding: 5px 0;}
.top-runner a:hover {color: var(--orange);}
.top-runner > div {display: flex; flex-direction: row; justify-content: space-between; align-items: center;}

.header-wrap {background-color: var(--black);}
.header-logo {max-width: 200px; height: auto; object-fit: contain; padding: 20px 0;}
.primary.nav {display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 50px;}

.mobile-menu-fb {display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 50px; width: 90% !important; margin: auto;}
.mobile-menu-right {display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; gap: 25px;}
a.menu-toggle {padding: 0 !important; margin: 0 !important;}
.btn-phone {color: var(--black); padding: 10px 15px; background-color: var(--orange); border-radius: 10px;}
.btn-phone:hover { background-color: var(--white); border-radius: 10px;}


/*=== FOOTER STYLES 
==============================*/
.footer-wrap {background: linear-gradient(rgba(0,16,16,0.9)), url("/siteart/white-splatter.png"), linear-gradient(rgba(0,16,16,0.5)) !important; background-size: cover; background-position: top center; padding: 100px 0; color: var(--white);}
.footer-wrap a:not(.btn-orange):hover {color: var(--orange);}
.footer-logo {max-width: 300px; object-fit: contain;}
.footer-wrap > div {display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 50px; flex-wrap: wrap;}
.footer-wrap > div > div > ul {padding: 0 25px;}
.footer-wrap > div > div > ul > li {margin-bottom: 15px;}
.footer-wrap > div > div:last-child {text-align: right;}
.footer-wrap > div > div:last-child i.fa-facebook-square {font-size: 32px;}

/*=== HOME PAGE 
==============================*/
#home-hero-section { background: linear-gradient(rgba(0, 26, 26, 0.75)), url("/siteart/splatter-left.png"), url("../siteart/dusty-wheel-loader.jpg"); background-position: center center; background-size: cover; overflow: hidden;}
.home-hero {display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 50px; padding: 200px 0 100px 0; color: var(--white);}
.home-hero > div {width: 100%;}
.home-hero > div:first-child {max-width: 500px; position: relative; z-index: 3;}
.home-hero > div:nth-child(2) {position: relative;}
.hero-video {width: 100%; height: auto; border-radius: 20px; box-shadow: 15px 15px 25px 5px var(--orange);}
.orange-splatter {position: absolute; top: 0; right: 0; width: clamp(300px, 30vw, 500px); max-width: 500px; height: auto; transform: translate(40%, -50%); z-index: 2;}

#two-img-callout { background: linear-gradient(rgba(193, 189, 179, 0.975)), url("/siteart/splatter-bottom.png"); background-size: cover; background-position: bottom center; border-bottom: 20px solid; border-image: linear-gradient(to left, var(--orange), var(--dk-orange)) 1;}
.two-img-grid {display:flex; justify-content: space-between; align-items:stretch;}
.blue-top {height: 100px; width: 100%; background: linear-gradient(to left, var(--black) 70%, var(--blue)) 100%;}
.callout-text {width:50%; max-width: 600px;display:flex;flex-direction:column;justify-content:center;padding: 50px 40px 50px 0;}
.dual-img {width:50%;display:flex; gap: 25px; padding: 25px;}
.dual-img > img {width:50%;height:600px;object-fit:cover; border-radius: 10px; box-shadow: 15px 15px 25px 5px rgba(0,0,0,0.25);}
.dual-img > img:nth-child(1) {margin-top: -75px; object-position: 25% 50%;}
.dual-img > img:nth-child(2) {margin-bottom: -75px;}


#home-quicklinks {padding: 150px 0 100px 0; background: linear-gradient(rgba(255,255,255,0.9)), url("../siteart/splatter-bottom.png");}
#home-quicklinks >div > div  {padding-bottom: 50px; text-align: right;}
.quicklinks {display:grid; grid-template-columns:repeat(4,1fr); gap: 25px; align-items: stretch;}
.img-tile {position:relative;border-radius:10px;overflow:hidden;text-align:left!important;border:3px solid transparent;transition:0.3s ease all!important;background-color:var(--black);box-shadow:5px 5px 15px 5px rgba(0,0,0,0.25); height: 100%;}
.img-tile img {display:block;width:100%;height:100%;object-fit:cover;}
.img-tile:hover {border: 3px solid var(--orange);border: 3px solid #0000;color: white;background: linear-gradient(black, black) padding-box, linear-gradient(var(--angle),var(--dk-orange) 0%,var(--dk-orange) 20%,var(--orange) 25%,var(--white) 45%,var(--orange) 55%,var(--dk-orange) 60%,var(--dk-orange) 100%) border-box; animation: 8s rotate linear infinite; box-shadow: 0px 0px 25px 5px rgba(232, 76, 28, 0.25); transition: 0.3s ease all !important; transform: translateY(-5px) scale(1.05);}
/*.img-tile img {width:100%;height:100%;object-fit:cover;}*/
.img-tile::before {content:"";position:absolute;inset:0;background:rgba(0,0,0,0.45);z-index:1;pointer-events:none;}
.img-overlay {position:absolute;bottom:0;left:0;right:0;padding:20px;color:#fff;z-index:2;}

@keyframes rotate {to { --angle: 360deg;}}
@property --angle {syntax: "<angle>";initial-value: 0deg;inherits: false;}

#blue-banner {background-color: var(--black);}
#blue-banner > div {display: flex; justify-content: center; align-items: center; gap: clamp(50px, 5vw, 100px); padding: 100px 0; flex-wrap: wrap;}
#blue-banner > div > div:nth-child(2) {max-width: 450px;}

#map-section {padding: 250px 0 100px 0; position: relative; background: url("/siteart/orange-splatter.png"), linear-gradient(var(--tan)); background-position: center center; background-size: contain; background-repeat: no-repeat;}
.map-text {padding: calc(400px - 13vw) 0px 100px 5vw; border-radius: 10px; max-width: clamp(500px, 70vw, 1600px);}
.map-text p, .map-text h2 {max-width: 50%;}
.map-frame {position: absolute; top: 100px; right: 5vw; border: 10px solid var(--black); border-radius: 20px; overflow: hidden; width: 800px; background: #FFF; max-width: calc(100% - 10vw);}
.map-frame iframe {height: 350px !important; width: 100%;}

#orange-banner {background: linear-gradient(to right, var(--orange), var(--dk-orange));}
#orange-banner > div {display: flex; justify-content: center; align-items: center; gap: clamp(50px, 5vw, 100px); padding: 100px 0; flex-wrap: wrap;}
#orange-banner > div > div:nth-child(1) p {max-width: 450px;}

/*=== ABOUT PAGE
==============================*/
.subpage-hero {padding: 100px 0; background-size: cover !important; background-position: center center !important;}

.subpage-hero.about {background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/rock-truck-deere.jpg"), linear-gradient(var(--black));}

.about-block{background: var(--white); padding: 100px 0;}
.about-inner{width: 90%; max-width:1600px;margin:0 auto;display:flex;gap:3rem;align-items:stretch;}
.about-media{flex:1 1 45%;}
.about-media img{width:100%;height:100%;object-fit:cover;border-radius:0.5rem; box-shadow: -15px 15px 25px 5px var(--orange);}
.about-content{flex:1 1 55%;display:flex;flex-direction:column;}
.about-content h2{font-size:clamp(1.75rem,3vw,2.5rem);line-height:1.2;margin:0;}
.about-content p{font-size:1rem;line-height:1.6;margin-bottom:1rem;color: var(--black);}
.about-content-white{flex:1 1 55%;display:flex;flex-direction:column;}
.about-content-white h2{font-size:clamp(1.75rem,3vw,2.5rem);line-height:1.2;margin:0;}
.about-content-white p{font-size:1rem;line-height:1.6;margin-bottom:1rem;color: var(--white);}
.feature-grid{margin-top:2rem;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem 2rem;}
.feature-item{display:flex;align-items:center;gap:0.75rem;text-decoration:none;color: var(--black);font-weight:600;}
.about-content-white .feature-item{display:flex;align-items:center;gap:0.75rem;text-decoration:none;color: var(--white);font-weight:600;}
.feature-item i{font-size: 32px;}
.about-content-white .feature-item i{font-size: 32px; color: var(--orange);}



/*=== CONTACT PAGE
==============================*/
.subpage-hero.contact {background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/excavator-deere.jpg"), linear-gradient(var(--black)); background-size: cover; background-position: center center;}

section.contact-form-section {padding: 100px 0; background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/dozer-dust.jpg"); background-attachment: fixed;}
#contact-form {display: flex; flex-direction: column; gap: 10px; font-size: var(--p); max-width: 100%; font-family: var(--Akshar); padding: 50px clamp(0px, 5vw, 50px); background-color: rgba(0,16,16,0.75); border-radius: 10px; backdrop-filter: blur(10px);}
#contact-form button {font-family: var(--Akshar) !important;}
#contact-form label {display: none;}
#contact-form p, #contact-form .note {color: var(--white);}
#contact-form input {padding: 20px; width: 100%; font-family: var(--Akshar); border-radius: 10px;}
#contact-form select {padding: 20px; width: 100%; font-family: var(--Akshar); border-radius: 10px;}
#contact-form .input-row {display: flex; flex-direction: row; gap: 10px;}
#contact-form .dualFields {width: 50%;}
#contact-form textarea {width: 100%; height: 200px; border: none; font-family: var(--Akshar); padding: 20px; font-size: var(--p); border-radius: 10px;}
#contact-form input.submit:hover {cursor: pointer ;}

/*control the Captcha */
.CaptchaPanel {margin:0 0 0 0 !important;padding:0 0 0 0 !important;text-align: center;line-height:normal !important;}
.CaptchaImagePanel {margin:0 0 0 0;padding:0 0 0 0;}
.CaptchaMessagePanel {padding:0 0 0 0 !important;margin:0 0 0 0 !important;font-weight:normal !important;font-size:12px;line-height:14px; color: var(--white);}
.CaptchaAnswerPanel {margin:0 0 0 0;padding:2px 0px 2px 0px !important;}
.CaptchaWhatsThisPanel {line-height:2;text-decoration: underline !important;margin:0 0 0 0;padding:8px 0 8px 0 !important; color: var(--white);}
.CaptchaWhatsThisPanel a {color:#fff;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;}

@media screen and (max-width: 700px) {
    #contact-form .input-row {flex-direction: column; width: 100%;}
    #contact-form .dualFields {width: 100%;}
}

/*=== SERVICE PAGE
==============================*/
.subpage-hero.service {background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/tractor-hood-open.jpg"), linear-gradient(var(--black));}

section.service-form-section {padding: 100px 0; background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/dusty-wheel-loader.jpg"); background-attachment: fixed;}

.text-banner {padding: 100px 0; display: flex; flex-direction: row; justify-content: flex-start; align-items: center; gap: 5vw;}
.text-banner > div:nth-child(1) {width: 30%;}
.text-banner > div:nth-child(2) {width: 70%;}

/*.service-form-section #contact-form label {display: block; color: var(--white);}*/

/*=== PARTS PAGE
==============================*/
.subpage-hero.parts {background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/transmission.jpg"), linear-gradient(var(--black));}

section.parts-form-section {padding: 100px 0; background: linear-gradient(rgba(0,26,26,0.75)), url("/siteart/excavator-deere.jpg"); background-attachment: fixed;}





/*=== MEDIA QUERIES
==============================*/
@media screen and (max-width: 1000px) {
    .primary.nav {display: none !important;}
    
    .home-hero {flex-direction: column;}
    
    .two-img-grid{flex-direction:column; gap: 100px;}
    .blue-top {display: none;}
    .callout-text,.dual-img{width:100%; max-width: none;}
    .dual-img > img {height:400px;}
    
    .quicklinks {grid-template-columns: repeat(2, 1fr);}
    
    .text-banner {flex-wrap: wrap;}
    .text-banner > div {width: 100% !important;}

    .about-inner{flex-direction:column;}.about-media img {max-height:420px;}
}
@media screen and (max-width: 500px) {
    .two-img-grid {padding: 100px 0;}
    .dual-img {padding: 0;}
    .dual-img > img:nth-child(1) {width: 100%; max-width: none; margin: none;}
    .dual-img > img:nth-child(2) {display: none;}
    
    .quicklinks {grid-template-columns: repeat(1, 1fr);}
    
    .feature-grid{grid-template-columns:1fr;}
}

























