﻿/***** 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;
    --tan: #FFFBF5;
    --drktan: #DFCFB4;
    --orange: #E28E20;
    --navy: #20323E;
    --drknavy: #0C1A23;
    --main-header:"Poppins", sans-serif;
    --paragraph: "Manrope", sans-serif;
  }

/*-------- UNIVERSAL STYLES --------*/
.maxi{
    max-width: 1300px;
    margin: 0 auto;
}



section{
    padding: 100px 75px;
}

.space{
    padding: 100px 75px;
}

button{
    border: none;
    transition:.25s;
    white-space: nowrap;

    a{
        font-size: 16px;
        color: var(--black);
        background-color: var(--drktan);
        padding: 10px 20px;
        transition:.25s;
        font-family: var(--main-header);
        font-weight: 500;
    }
}

button:hover{
   background-color: var(--tan);
    color: black;
}


button:hover a{
    color: black;
	background-color: var(--tan);
}

.drk-btn{
    a{
        color: var(--black) !important;
    }
}

.secondary-btn{
    border: none;
    background-color: transparent;
    transition:.25s;
   
    a{
        display: flex;
        align-items: center;
        background-color: transparent;
        gap: 10px;
        padding: 0px;
    }

    i{
        color: var(--orange);
        font-size: 14px;
    }
}

.secondary-btn:hover{
    background-color: transparent;
    color: black;
}

.secondary-btn:hover{
	 a{
    color: var(--black);
		 background-color: transparent;
		 gap: 25px;
}

}


.drk-background{
    background-color: var(--navy);
    color: white;
}

.lgt-background{
    background-color: var(--tan);
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
}

.image-container{

    img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

}

/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 25px;
}

.flexy2{
    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%;
}


/*-------------SLIDER----------------------*/

.slider{
    margin-top: 75px;


      .slick-slide {
      margin: 0 15px;
  }

  /* the parent */
  .slick-list {
      margin: 0 -27px;
  }

  .slick-button {
    color: #fff;
    padding: 5px 15px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    cursor: pointer;
    bottom: -75px;
}

.slick-prev {
    right: 160px;
}

.slick-next {
    right: 40px;
} 

    
}

.slider-item{
    position: relative;
    height: 475px;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    a{
        position: absolute;
        left: 0px;
        bottom: 0px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        color: var(--white);
        font-size: 21px;
        width: 100%;
        box-sizing: border-box;
        padding: 25px;
        font-weight: 500;
    }

    i{
        color: var(--orange);
        font-size: 16px;
    }
}

.overlay{
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.94) 11%, rgba(0, 0, 0, 0.65) 39%, rgba(0, 0, 0, 0.39) 69%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}


/*-------- BODY STYLES --------*/

body {
    font-family: var(--paragraph);
}

h1,h2{
    font-family: var(--main-header);
    font-weight: 300;
}

h1{
    font-size: 100px;
    line-height: 120px;
}

h2{
    font-size: 42px;
    line-height: 50px;
}

h3{
    font-size: 21px;
font-weight: 400;
font-family: var(--main-header);  
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*          HEADER           */
.logo {
	max-width: 225px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	color: var(--white);
	padding: 10px 40px;
	display: flex;
	justify-content: space-between;

    i{
        font-size: 12px;
    }

    li,a{
        display: flex;
        gap: 5px;
        align-items: center;
        font-family: var(--main-header);
    }

    a{
        color: var(--white);
        font-family: var(--main-header);
    }
}

.top-links{
	gap: 25px;
    a{
        color: var(--white);
    }

    i{
        color: var(--orange);
    }
}



.bottom-links{
	gap: 25px;
}

.bottom-links a{
	color: #FFFFFF;
    font-size: 18px !important;
}



.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 40px;
	gap: 25px;
	
}


.internal-header{
    .top-nav{
        background-color: var(--black);
    }

    .bottom-links a{
        color: var(--black);
    }

    .bottom-nav{
        box-shadow: 3px 4px 14px -5px rgba(0,0,0,0.10);
    }
}



/* Search Header */
/*---INVENTORY SEARCH IN HEADER---*/


#search {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--black);
	z-index: 999999999999;
	  position: absolute;
	display: flex;
	  align-items: center;
	  justify-content: center;
	height: 45px;
  }
  
  form.search-header {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
  }
  
  .search-bg {
	-webkit-animation: slide-down .3s ease-out;
	-moz-animation: slide-down .3s ease-out;
  }
  .search-btn {
	border: none !important;
	background: transparent !important;

    i{
        color: var(--white);
    }

  }
  .search-btn img {
	width: 35px !important;
  }

  #search-header input {
	caret-color: #000;
  }
  .searchTerm::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: var(--white);
	opacity: 1; /* Firefox */
  }
  .searchTerm:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #000;
  }
  .searchTerm::-ms-input-placeholder { /* Microsoft Edge */
	color: #000;
  }
  .search-wrap {
	  margin: 0 auto;
	width: 97%;
  }

  .search-header input[type="text"]:not([class^="Mui"]) {
	width: 90% !important;
	border: none !important;
	font-size: 16px !important;
	color: var(--white) !important;
	font-family: var(--span-header);
	font-weight: 500 !important;
	  -webkit-user-select: initial;
	  -khtml-user-select: initial;
	  -moz-user-select: initial;
	  -ms-user-select: initial;
	  user-select: initial;
	  height: auto !important;
	  line-height: 70px !important;
	  background: var(--red);
  }

   .search-header input[type="text"]{
    color: var(--white) !important;
  }
  .search-nav {
	opacity: .7;
	transition: ease all 0.2s !important;
  }
  .search-nav:hover {
	opacity: 1;
  }
  
  .search-header input:focus {
	  outline: none;
      color: var(--white);
  }



/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 300px 75px 225px 75px;
    background:linear-gradient(180deg,rgba(0, 0, 0, 0.94) 11%, rgba(0, 0, 0, 0.65) 39%, rgba(0, 0, 0, 0.39) 69%, rgba(0, 0, 0, 0) 100%), url(/siteart/construction-site.jpeg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: -192px;
}

.cover{
    background-color: #000;
    background:linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url(/siteart/construction-cover.jpeg);
    background-size: cover;
    background-position: center;
    color:#fff;
    padding: 130px 75px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    a{
        color: var(--white);
        display: flex;
        gap: 5px;
        align-items: center;
    }
    i{
        font-size: 14px;
    }
}

.thankyou-cover{
    a{
        color: var(--white);
        display: flex;
        gap: 5px;
        align-items: center;
    }
    i{
        font-size: 14px;
    }
}

.parts-cover{
       background:linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url(/siteart/dozer-cover.jpeg);
     background-size: cover;
    background-position: center;
}

.about-cover{
    background:linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url(/siteart/excavators.jpeg);
    background-size: cover;
    background-position: center;
}

.home-1{
    padding: 0px;
}

.category-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    img{
        width: 75px;
    }
}

.category-item{
    padding: 35px 25px;
    border-top: 1px solid #D8D8D8;
    border-right: 1px solid #D8D8D8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-item:nth-child(4n){
    border-right: none;
    background-color: var(--drktan);
}

.category-title{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.home-2{
    position: relative;
    align-items: center;
    z-index: 1;

    .col-2{
        width: 40%;
    }

    .image-container{
        height: calc(100% + 50px);
        width: calc(53% - 25px);
        position: absolute;
        top: 100px;
        right: 75px;

        img{

        }
    }
}

.home-3{
    padding-right: 0px;
    padding-top: 240px;
    padding-bottom: 100px;
    overflow: hidden;

    .col-2-lrg{
        padding-right: 75px;
    }
}

.home-4{
    align-items: center;
    ul{
        list-style-type: none;
    }

    li{
        display: flex;
        align-items: baseline;
        gap: 10px;
        line-height: 30px;
    }

    i{
        font-size: 14px;
        color: var(--orange);
    }
}

.home-5{
    .category-grid{
        grid-template-columns: 1fr 1fr;
        background-color: var(--tan);
        color: var(--black);
    }

    .category-item{
        gap: 25px;
    }

    .category-title{
        margin-bottom: 0px;
    }

    span{
        font-size: 28px;
        font-family: var(--main-header);
        font-weight: 200;
        font-style: italic;
    }
}


.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;;
}

.contact-item{
    background-color: var(--tan);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;

    h3{
        color: var(--black);
        margin-bottom: 10px;
    }

    .button-container{
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}

.contact-item:nth-child(1n){
    border-right: 1px solid #D8D8D8;
}

.contact-title{

    a{
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 25px;
        color: var(--black);
        font-family: var(--main-header);
    }

    i{
        color: var(--orange);
        font-size: 14px;
    }

}



/*--------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;
    font-family: 'Figtree', sans-serif;
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    padding: 10px 10px;
    height: 100px;
    font-family: 'Figtree', sans-serif;
}

input.submit-button{
    background-color: var(--drktan);
    border: none;
    color: var(--black) !important;
    padding: 10px 15px;
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: var(--main-header);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    background-color: var(--drktan);;
    padding: 10px 15px;
    color: var(--black);
    font-family: var(--main-header);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.no-pad{
    padding: 0px;
}

/*-------- CONTACT STYLES --------*/

.sales-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    border-top: 1px solid #D8D8D8;
}

.sales-item{
    border-right: 1px solid #D8D8D8;
    padding: 25px 25px 50px;
}

.sales-item:nth-child(3n){
    border-right: none;
}



/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--main-header);

    p{
        font-family: var(--paragraph);
    }

}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 75px;
    background-color: var(--navy);
    color: var(--white);
    flex-wrap: wrap;
}

.footer-logo{
    width: 250px;
}

.left-footer{
    span{
        font-size: 52px;
        font-weight: 600;
    }

}

.right-footer{
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    
    span{
        font-family: var(--main-header);
        font-weight: 500;
        font-size: 21px;
    }

    ul{
        list-style-type: none;
    }

    li{
        width: 100%;
        line-height: 40px;
        white-space: nowrap;
    }

    i{
        color: var(--drktan);
        font-size: 14px;
        padding-right: 10px;
    }

    a{
        color: var(--white);
    }

}



.bottom-footer{
    text-align: left;
    padding: 10px 40px;
    background-color: var(--drknavy);
    color: var(--white);
    font-size: 12px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
}

.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;
    color: var(--white) !important;
}

.faceted-search-content .selected-facets-container .selected-facet{
        border-radius: 0px !important;
    background-color: var(--drktan) !important;
    color: var(--black) !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: #DFCFB490;
    color: var(--black)
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
        background-color: var(--drktan);
    color: var(--black)
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
        background-color: var(--black);
    
}

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1500px) {

    .home-5{
        gap: 25px;
    }



}

@media only screen and (max-width: 1425px) {
    .contact-title{
        a{
            font-size: 14px;
        }
    }
}

@media only screen and (max-width: 1300px) {
    h1{
        font-size: 82px;
        line-height: 100px;
    }

        .home-5{
            flex-direction: column;
            gap: 50px;

            .col-2{
                width: inherit;
            }
        }

    .home-2{

        .image-container{
            width: calc(50% - 25px);
        }
}


}


@media only screen and (max-width: 1145px){
	.bottom-links{
    gap: 15px;

    a{
        font-size: 16px;
    }
}
}



@media only screen and (max-width: 1000px) {
        h1{
        font-size: 78px;
        line-height: 90px;
    }



.category-grid{
    grid-template-columns: 1fr 1fr;
}

.category-item:nth-child(2n){
    border-right: none;
}

    .home-2{

        .image-container{
            height: calc(85% + 50px);
            width: calc(47% - 25px);
        }
}

.home-3{
    padding-top: 150px;
}


}





/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }

    h1{
        font-size: 72px;
        line-height: 90px;
    }

    h2{
        font-size: 32px;
        line-height: 40px;
    }

    .flexy2{
        gap: 50px;
    }

        .home-2{

        .image-container{
            height: calc(80% + 50px);
            width: calc(47% - 25px);
        }
}

.home-3{
    padding-top: 115px;
}

}

@media only screen and (max-width: 850px){
    .right-footer{
        gap: 50px;
    }

    .home-cover{
        .no-break{
            display: none;
        }
    }
}

@media only screen and (max-width: 750px) {
    h1{
        font-size: 52px;
        line-height: 60px;
    }

    h2{
        font-size: 28px;
        line-height: 34px;
    }

    h3{
        font-size: 18px;
    }

    .flexy, .flexy2{
        flex-direction: column !important;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg{
        width: inherit !important;
    }
    
    .no-break{
        display: none;
    }

        .home-cover{
        padding: 250px 50px 125px 50px;
        margin-top: -140px;
    }

    .home-4{
        flex-direction: column-reverse !important;
    }

    .home-5{
        gap: 75px;
    }

        .contact-grid{
        grid-template-columns: 1fr;
    }

    .contact-item:nth-child(1n){
        border-bottom: 1px solid #D8D8D8;
    }

    .home-2{
        gap: 50px;
        .image-container{
            position: unset;
        }
    }

    .home-3{
        padding-top: 50px;
    }

        section, .space{
        padding: 75px 50px;
    }

    .top-footer{
        padding: 75px 50px;
    }

        .bottom-footer{
        padding: 10px 50px;
    }

    .home-cover{
        padding: 250px 50px 125px 50px;
        
    }

    .home-3 .col-2-lrg{
        padding-right: 50px;
    }

            .home-1, .home-3{
        .flexy2{
            gap: 15px;
        }
    }

    .sales-grid{
        grid-template-columns: 1fr;
        border: none;
    }

    .sales-item{
        border-top: 1px solid #D8D8D8;
        border-right: none;
    }


}




@media only screen and (max-width: 500px) {
    h1{
        font-size: 42px;
        line-height: 50px;
    }

    h2{
        font-size: 28px;
        line-height: 34px;
    }




 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .right-footer{
        gap: 25px;
    }

.category-grid{
    grid-template-columns: 1fr;
}

.category-item{
    border-right: none;
    gap: 20px;
}

    .home-3 .col-2-lrg{
        padding-right: 25px;
    }

    section, .space{
        padding: 50px 25px;
    }

    .top-footer{
        padding: 50px 25px;
    }

        .bottom-footer{
        padding: 10px 25px;
    }

    .home-cover{
        padding: 250px 25px 125px 25px;
        
    }

    .right-footer{
        li{
            line-height: 24px;
        }

        a{
            font-size: 14px;
        }
    } 




	
}

@media only screen and (max-width: 375px) {
    h1{
        font-size: 32px;
        line-height: 40px;
    }

    h2{
        font-size: 22px;
        line-height: 32px;
    }

    .category-title{
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cover{
        padding: 200px 25px 100px 25px;
    }

    .contact-title{
        a{
            font-size: 13px;
            gap: 5px;
        }

        i{
            font-size: 12px;
        }
    }

    .contact-item{
        padding: 15px;
    }

	
}


@media only screen and (max-width: 350px){
    .contact-title{
        a{
            font-size: 12px;
        }
    }

    .contact-item{
        padding: 25px 10px;
    }
}


@media only screen and (min-width:1400px) and (max-width: 2300px) {
    .home-2 .image-container{
        height: calc(130% + 50px);
    }

    .home-3{
        padding-top: 340px;
    }
}



@media only screen and (min-width: 768px) {
	
}



