﻿/***** BEGIN RESET *****/

*{
    margin:0;
    padding: 0;
}




table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- VARIABLES --------*/
:root {
    --black: #000000;
    --white: #ffffff;
    --yellow: #FFD200;
    --main-header:"Figtree", sans-serif;
    --paragraph: "Manrope", sans-serif;
  }

/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 125px 75px;
}

button{
    border: none;
    background-color: var(--yellow);

    transition:.25s;
}

button:hover{
    background-color: var(--black);

    i{
        color: var(--yellow);
    }

    a{
        color: var(--white);
    }
}

button a{
    font-family: var(--main-header);
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    padding: 15px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition:.25s;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

button i{
    font-size: 14px;
    transform: rotate(325deg);
}

.secondary-btn{
    border: none;
    background-color: var(--black);
    a{
        color: var(--white);
    }
    i{
        color: var(--yellow);
    }
}

.secondary-btn:hover{
    background-color: var(--yellow);

    a{
        color: var(--black) !important;
    }

    i{
        color: var(--black);
    }
}

.secondary-btn:hover a{
    color: #fff;
}

.third-btn{
    background-color: transparent;

    a{
        color: var(--black);
        padding: 0px
    }

    i{
        color: var(--yellow);
    }
}

.third-btn:hover{
    background-color: transparent;
    

    a{
        color: var(--black);
        gap: 20px;
    }
}

.drk-background{
    background-color: black;
    color: white;
}

.lgt-background{
    background-color: gray;
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
}

/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 75px;
}

.col-2{
    width: 50%;
}

.col-2-lrg{
    width: 60%;
}

.col-2-sml{
    width: 40%;
}

.col-3 {
    width: 33.33%;
}

.col-4{
    width: 25%;
}





/*-------- BODY STYLES --------*/

body {
    font-family: var(--paragraph);
}

p{
    line-height: 27px;
}

h1{
    font-size: 90px;
    font-family: var(--main-header);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;


    span{
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
    }
}

h2{
    font-size: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: var(--main-header);
    font-weight: 600;

        span{
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 800;
    }
}

h3{
    font-family: var(--main-header);
    font-size: 36px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*          HEADER           */
.logo {
	max-width: 230px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 5px 40px;
	display: flex;
    align-items: center;
	justify-content: space-between;
    border-bottom: 1px solid #E8E8E8;
}

.top-links{
	gap: 10px;
    list-style-type: none;
    display: inline-flex;
}

.top-links a{
	color: #000;
}

.top-right{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    span{
        font-size: 12px;
    }

    a{
        display: flex;
        gap: 5px;
        align-items: baseline;
        color: var(--black);
    }
}

.last-btn{
    margin-left: 20px;
    
    

    a{
        display: flex;
        align-items: baseline;
        gap: 10px;
        background-color: var(--yellow);
    }

    i{
        transform: rotate(325deg);
        font-size: 14px;
    }
}

.bottom-links{
    align-items: baseline;
}

.bottom-links a{
	color: var(--black);
    font-family: var(--main-header);
    font-weight: 700;
    font-size: 18px;
    padding: 15px 20px;
    cursor: pointer;
}



.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 40px;
	gap: 25px;
	background-color: var(--white);
}


/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 175px 75px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(/siteart/boom-lifts-cover.webp);
    background-position: center;
    background-size: cover;
    color: var(--white);

    h1 span{
        color: var(--yellow);
    }

    .third-btn a{
        color: var(--white);
    }
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 125px 75px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-size: cover;
    background-position: center;
}

.bread{
    display: flex;
    gap: 15px;
    font-size: 20px;
    margin-top: 25px;

    a{
        color: var(--white);
        font-family: var(--main-header);
        font-weight: 700;
    }
}

.last-bread{
    font-weight: 400 !important;
}

.home-2{
    text-align: center;
      background-image: repeating-linear-gradient(to right, #EBEBEB 0 1px, transparent 1px 30px), repeating-linear-gradient(to bottom, #EBEBEB 0 1px, transparent 1px 30px);
          background-image: repeating-linear-gradient(to right, #F3F3F3 0 1px, transparent 1px 30px), repeating-linear-gradient(to bottom, #F3F3F3 0 1px, transparent 1px 30px);
      background-size: 100% 100%;


    h2{
        align-items: center;
    }               

    .button-container{ 
        justify-content: center;
    }
}

.home-3{
    padding: 0px !important;
    
}

.home-4{
    padding-right: 0px;
    padding-bottom: 0px;
    background-color: var(--yellow);
    align-items: center;
    gap: 75px;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .button-container{
        margin-bottom: 50px;
    }
}

.home-5{
    padding-left: 0px;
    padding-bottom: 0px;
    background-color: var(--black);
    color: var(--white);

    h2 span{
        color: var(--yellow);
    }

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .flexy{
        gap: 75px;
    }

    .third-btn a{
        color: var(--white);
    }
}

.home-5-title{
    padding-left: 75px;
}

.home-5-bullets{

    font-weight: 600;
    font-size: 18px;

    p{
        line-height: 40px;
        display: flex;
        align-items: baseline;
    }


    i{
        color:var(--yellow);
        padding-right: 25px;
    }
}

.home-5-img{
    margin-top: 75px;
}

.home-5-department{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0px 75px 50px;
    gap: 75px;
}

.home-6{
    background-color: var(--yellow);
    padding-bottom: 200px;
    background-image: 
    repeating-linear-gradient(to right, rgba(126, 126, 126, 0.15) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(to bottom, rgba(126, 126, 126, 0.15) 0 1px, transparent 1px 30px);
    background-size: 100% 100%;

      .third-btn i{
        color: var(--black) !important;
      }
}

.home-7{
    margin-top: -200px;
    img{
        width: 100%;
    }
}


/* slideshow */

.slideshowcontain{
    gap:0px;
}

.slideshow {
    width: 100%;
    height: 600px;
    position: relative;
    border: 0;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    counter-reset: slide;
}

.slide-input {
    position: absolute;
    opacity: 0;
    top: -25px;
    top: min(-12px, -1.33476vw);
    counter-increment: slide
}

.slide-input:checked+.slide {
    transform: translateX(0px);
    transition: transform 0.5s ease-in-out
}

.slide-input:checked+.slide .slide-content {
    width: 100%;
    display: block
}

.slide{
    transform: translateX(-100%);
    position: absolute;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out
}


.slide-image{
    width: 50%;
    height: 100%;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    overflow: hidden;
    padding: 50px 50px;
    display: none;
    animation-name: fade-in;
    animation-duration: 1s;
    animation-iteration-count: 1;
    opacity: 1;
    width: 50% !important;
    box-sizing: border-box;
}

.slide-html {
    display: none
}


.slide-nav {
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    padding: 50px;
    justify-content: flex-end;
    gap: 25px;
    font-weight: 600;
    font-family: var(--main-header);
    font-size: 18px;
    width: 15%;

    i{
           transform: rotate(325deg);
           color: var(--yellow);
           font-size: 14px;

    }
}

.slide-button {
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 10px;

}

.slide-button:hover {
    cursor: pointer;
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    50% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0px);
        opacity: 1
    }
}





/*--------FORM STYLES--------------------*/
.include-captcha{display:none;}

#formpage{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.form-field-flex{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.form-field-flex input{
    border: 1px solid #8B8B8B25 !important;
    width: 50%;
    padding: 10px 10px;
    border-radius: 0px;
    font-family: var(--paragraph);
}

.select-field select{
    border: 1px solid #8B8B8B25 !important;
    width: 100%;
    box-sizing: border-box ;
    padding: 10px 10px;
    border-radius: 0px;
    font-family: var(--paragraph);
    color: #00000097;
}

.select-field option:nth-child(1){
    display: none;
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 0px;
    padding: 10px 10px;
    font-family: var(--paragraph);
}

input.submit-button{
    background-color: #000;
    border: none;
    background-color: var(--yellow);
    padding: 10px 15px;
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: 10px 15px;
    color: var(--black);
    font-family: var(--main-header);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.button button:hover{
    background-color: transparent;
    color: var(--white);

    i{
        color: var(--yellow);
    }
}

/*-------- CONTACT STYLES --------*/
.contact-us-cover{
    background-image:linear-gradient(90deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("/siteart/excavator-aerial.webp");
}
.google-maps{
    
}

.CaptchaPanel{
    text-align: left !important;
    padding: 0px !important;
    margin: 0px !important;
}

.CaptchaImage{
    width: unset !important; 
    height: unset !important;
}

.CaptchaWhatsThisPanel{
    a{
        color: var(--white) !important;
    }
    
}

/*-------- CONTACT STYLES --------*/
.about-us-cover{
    background-image:linear-gradient(90deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("/siteart/construction-site.jpeg");
}

.about-us-2{
    padding-left: 0px;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.about-us-3{
    background-image: repeating-linear-gradient(to right, #F3F3F330 0 1px, transparent 1px 30px), repeating-linear-gradient(to bottom, #F3F3F330 0 1px, transparent 1px 30px);
    background-size: 100% 100%;
    background-color: var(--black);
    color: var(--white);

   h2 span{
        color: var(--yellow);
    }

    .third-btn a{
        color: var(--white);
    }

    .home-5-title{
        padding-left: unset;
    }
}



/*--- PAGE LOADER  ---------------------*/
.loaderContain {
    z-index: 999999999999;
    position: relative;
}

.loaderContain #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.loaderContain #loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    bottom: 0;
    background: var(--yellow);
    z-index: 1000;
    animation-name: loader;
    animation-duration: 1s;
    animation-fill-mode: forwards;

}

#loader-wrapper {
    animation: fadeOut 0.5s ease 1s forwards; /* delay matches loader animation */
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes loader {
    0% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    50% {
        -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
        transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    
}


/*-----------------  Parts Department  ------------------*/

.parts-cover{
    background-image:linear-gradient(90deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("/siteart/parts.jpeg");
}


.parts-1{
    .col-2-sml{
        width: 25%;
    }

    .col-2-lrg{
        width: 75%;
    }
}

.sidebar-list{
    list-style-type: none;
    line-height: 50px;

    i{
        transform: rotate(325deg);
        color: var(--yellow);
    }

    a{
    color: var(--black);
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--main-header);
    font-weight: 600;
    font-size: 18px;
    }
}

.parts-request-form{
    margin-top: 75px;

    h3{
        font-size: 18px;
        font-weight: 600;
        margin-top: 15px;
    }
}


/*-----------------  Parts Department  ------------------*/

.service-cover{
    background-image:linear-gradient(90deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("/siteart/service.jpeg");
}



/*-------- FOOTER STYLES ----------------*/
footer{
    background-color: var(--black);
    color: var(--white);
}

.social-media{
    display: inline-flex;
    list-style-type: none;
    gap: 10px;
    margin-top: 50px;;

    a{
        color: var(--white);
    }
}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 100px 50px;
}

.footer-logo{
    width: 250px;
}

.left-footer{

}

.right-footer{
    justify-content: flex-end;
    gap: 75px !important;

    ul{
        list-style-type: none;
        line-height: 36px;
        margin-top: 15px;
    }

    a{
        color: var(--white);
    }
}

.footer-links{
    
    span{
        font-weight: 600;
        font-size: 18px;
    }
}


.footer-location{
    margin-top: 25px;

    a{
        display: flex;
        gap: 10px;
        align-items: baseline;
    }

    i{
        color: var(--yellow);
    }
}


.bottom-footer{
    text-align: right;
    padding: 10px 40px;
    color: var(--white);
    display: flex;
    justify-content: space-between;

    a{
        color: var(--white);
    }

    .tagline{
        font-family: var(--main-header);
        font-weight: 800;
        text-transform: uppercase;
        font-size: 14px;
    }
}

.nav-footer{
    font-size: 12px;
}

.thankyou-cover{
    background-color: var(--black);
    padding: 250px 50px;
    text-align: center;

    h1{
        align-items: center;
    }

    .button-container{
        justify-content: center;


    }

    .third-btn a{
        color: var(--white);
    }
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
font-family: var(--paragraph);

i{
    transform: unset;
}
}

.faceted-search-content .selected-facets-container .selected-facet{
    background-color: var(--yellow) !important;
    border-radius: 0px !important;
    padding: 7px 15px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
}

.faceted-search-content .selected-facets-container .selected-facet:hover{
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.faceted-search-content .faceted-section-box .faceted-search{
    background-color: var(--black) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}


.body-wrapper section{
    padding: inherit;
}

.body-wrapper p.disclaimer{
    font-size: 12px;
}

.faceted-search, .faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn{
    border-radius: 0px !important;
    background-color: var(--black) !important;
    font-weight: 600 !important;
}

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label{
    display: flex;
    gap: 5px;
}

/*  INVENTORY BUTTONS  */
a.view-listing-details-link.des-view-listingDetails, a.email-seller.des-email-seller.collapsible-contact-list-item,a.video-chat.des-video-chat.collapsible-contact-list-item{
    border-radius: 0px;
}

a.view-listing-details-link.des-view-listingDetails{
        background-color: var(--yellow) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: var(--black);
    color: var(--white);
    font-weight: 600 !important;
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: var(--white) !important;
    border: 1px solid #00000075;
    color: var(--black);
    font-weight: 600 !important;
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1110px) {
    .right-footer{
        gap: 50px !important;
    }

}

@media only screen and (max-width: 1060px){

    .home-4{
        flex-direction: column-reverse;
        padding: 125px 50px;

        .col-2{
            width: 100%;
            box-sizing: border-box;
        }

        .button-container{
            margin-bottom: 0px;
        }

        .second-2{
            height: 350px;
        }

    }

    .home-5-img{
        flex-direction: column;
        gap: 25px !important;

        .col-2-sm,.col-2-lrg{
            width: 100%;
            box-sizing: border-box;
        }

        .col-2-lrg{
            height: 350px;
        }

        .home-5-department{
            flex-direction: row;
                        width: 100%;
            box-sizing: border-box;
        }
    }

    .top-footer{
        flex-direction: column;
        gap: 50px;
    }

    .right-footer{
        justify-content: space-between;
        width: inherit
    }

    .left-footer{
        width: inherit;
    }

    .forms{
        width: 100%;
    }

}

@media only screen and (max-width: 1000px) {
    .slideshowcontain{
        flex-direction: column-reverse;
    }

    .slideshow {
        height: 475px;
    }

    .slide-nav{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 25px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .home-2{
        .no-break{
            display: none;
        }
    }
}

 

@media only screen and (min-width:750px) and (max-width: 945px) {
    .home-5, .home-6{
        .button-container{
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    } 

}

/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    h1{
        font-size: 72px;
    }

    h2{
        font-size: 42px;
    }

    h3{
        font-size: 28px;
    }
    
    nav.mobile .logo {
        width: 175px;
    }

    .home-6{
    h2{
        font-size: 42px;
    }
    }
}


@media only screen and (max-width: 750px) {

    h1{
        font-size: 62px;
    }

    h2{
        font-size: 32px;
    }

    h3{
        font-size: 22px;
    }

    .flexy{
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg{
        width: inherit !important;
    }
    
    .no-break{
        display: none;
    }

    .home-cover{
        padding: 125px 50px;
    }

    .cover{
        padding: 100px 50px;
    }

    .slideshowcontain {
        flex-direction: column-reverse !important;
        gap: 0px !important;
    }

    .slide-content{
        padding: 25px;
    }

    .slide-nav{
        padding: 15px;
        gap: 15px;
    }

    section{
        padding: 75px 50px;
    }

    .home-4{
        padding-right: 50px;
    }

        .home-5-department{
            flex-direction: column !important;
            width: 100%;
            box-sizing: border-box;
            gap: 50px;
        }

    .home-4{
        flex-direction: column-reverse !important;
        padding: 75px 50px;

        .second-2{
            width: 100% !important;
            box-sizing: border-box !important;
        }
    }

    .about-us-2{
        padding-left: 50px;
    }
}

@media only screen and (max-width: 658px){
    .slideshowcontain {
        flex-direction: column !important;
        
    }

    .slide-nav{
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .slideshow{
        height: 655px;
    }

    .slide{
        flex-direction: column;
    }

    .slide-image{
        width: 100%;
        height: 300px;

        img{
            object-fit: cover;
            object-position: center;
        }
    }

    .slide-content{
        width: 100% !important;
        padding: 50px 25px 0px 25px;
    }
	
	.directions-sublink{
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    h1{
        font-size: 48px;
    }

    h2{
        font-size: 28px;
    }

    h3{
        font-size: 18px;
    }

 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .home-5-title{
        padding: 0px 50px;
    }

    .home-6{
        padding-bottom: 150px;
    }

    .home-7{
        margin-top: -150px;;
    }

    .loaderContain{
        display: none;
    }
	
	.top-nav {
		font-size: 15px;
	}


}

@media only screen and (max-width: 420px){

        h1{
        font-size: 38px;

        span{
            font-size: 16px;
        }
    }

    h2{
        span{
            font-size: 16px;
        }
    }

    .bottom-footer{
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .top-footer{
        padding: 50px 25px;
        gap: 25px;
    }

    .right-footer{
        ul{
            margin-top: 0px !important;
        }
    }

    .social-media{
        margin-top: 25px;
    }

    .footer-location{
        margin-top: 5px;
    }

    .home-cover{
        padding: 100px 25px;
    }

      .cover{
        padding: 75px 25px;
    }

        section{
        padding: 50px 25px;
    }

    .home-4{
       padding: 50px 25px; 
    }

    .button-container{
        flex-wrap: wrap;
    }

}

@media only screen and (max-width: 375px) {

    .footer-logo{
        width: 80%;

        img{
            width: 100%;
        }

    }

    .home-6{
        padding-bottom: 100px;
    }

    .home-7{
        margin-top: -100px;
    }

    .bread{
        font-size: 16px;
        margin-top: 15px;
        gap: 10px;
    }
	
	.top-right > div:last-child {
		display: none;
	}

}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



