﻿/***** 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;
	--gray: #414141;
	--lightgray: #EBEBEB;
    --red: #CA2817;
    --darkred: #A71A0B;
	--blue: #0B4C72;
    --main-header:"halyard-text", sans-serif;
    --second-header: "Poppins", sans-serif;
    --span-header: "Poppins", sans-serif;
    --paragraph: "Manrope", sans-serif;
  }

/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 100px 50px;
}

button{
    border: none;
    background-color: var(--red);
    transition:.25s;
}

button:hover{
    background-color: var(--darkred);

    a{
        color: var(--white)
    }
}

button a{
    font-size: 16px;
    color: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
    font-family: var(--paragraph);
}

.secondary-btn{
    border: none;
    background-color: transparent;
    transition:.25s;

    a{
        color: var(--black);
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 0px;
    }

    i{
        background-color: var(--red);
        color: var(--white);
        padding: 5px;
        border-radius: 15px;
        font-size: 10px;
        transform: rotate(315deg);
    }
}

.secondary-btn:hover{
    background-color: transparent;

    a{
        color: var(--black);
        gap: 20px;
    }
}


.white-btn{
    background-color: var(--white);

    a{
        color: var(--black);
    }
}

.title-text{
    font-family: var(--span-header);
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 26px;
    line-height: 30px;

        i{
        background-color: var(--red);
        padding: 6px;
        border-radius: 15px;
        color: var(--white);
        font-size: 8px;
        transform: rotate(315deg);
    }
}


.drk-background{
    background-color: black;
    color: white;
}

.lgt-background{
    background-color: gray;
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
}

/*-------- 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{
	display: flex;
	justify-content: center;
	gap: 50px !important;

.slick-slide{
      margin: 0 27px;
  }

  /* 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 .slider-link-contain{
	border: 1px solid #FFFFFF50;
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 0 10px;
}
}






/*-------- BODY STYLES --------*/

body {
    font-family: var(--paragraph);
}

h1,h2,h3{
    font-family: var(--main-header);
}


h1{
    font-size: 82px;
    color: var(--gray);
    font-weight: 400;
    line-height: 100px;

    span{
    font-family: var(--span-header);
    font-size: 18px;
    display: inline-block;
    line-height: 0px;
    font-weight: 500;
    text-transform: uppercase;
    }

    i{
        background-color: var(--red);
        padding: 6px;
        border-radius: 15px;
        color: var(--white);
        font-size: 8px;
        transform: rotate(315deg);
        margin-right: 15px;
        margin-bottom: 5px;
    }
}

h2{
    font-size: 62px;
    font-weight: 400;
    line-height: 70px;

        span{
    font-family: var(--span-header);
    font-size: 18px;
    display: inline-block;
    line-height: 0px;
    font-weight: 500;
    text-transform: uppercase;
    }

    i{
        background-color: var(--red);
        padding: 6px;
        border-radius: 15px;
        color: var(--white);
        font-size: 8px;
        transform: rotate(315deg);
        margin-right: 15px;
        margin-bottom: 5px;
    }
}

.drk{
    h1, h2{
        color: var(--white);
    }
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


.img{
    width: 100%;
       
}


/*          HEADER           */
.logo {
	max-width: 150px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 5px 40px;
	display: flex;
	justify-content: space-between;
}

.top-links{
	gap: 25px;
}

.top-links a{
	color: #000;
}

.bottom-links{
	gap: 25px;
}

.bottom-links a{
	color: #FFFFFF;
}



.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 40px;
	gap: 25px;
	background-color: transparent;

    a{
        color: var(--white);
    }

    hr{
        background-color: var(--white);
        border: none;
        width: 2px;
    }
}

.header-contact{
    display: flex;
    gap: 15px;
    a{
        font-weight: 600;
    }
}

.contactsplt{
	display: flex;
	flex-direction: column;
	grid-row-gap: 10px;
}


.header-contact-sm{
    display: flex;
    gap: 15px;
    a{
        font-weight: 600;
    }
}

.conlist{
	margin-left: 40px;
}

.fa {
	font-size: 20px;
}

/*--------HOME STYLES--------------------*/
.home-cover{
    height: 65vh;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url(/siteart/various-skid-steers.jpg);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    color: var(--white);
    position: relative;


    .button-container{
        position: absolute;
        bottom: 70px;
        right: 40px;
    }

    .secondary-btn{
        a{
            color: var(--white);
        }
    }
}
.cover{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url(/siteart/various-lifts.jpg);
    background-size: cover;
    background-position: center;
    background-color: #000;
    color:#fff;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    h1{
        color: var(--white);
    }

            a{
            color: var(--white);
        }

    .secondary-btn{

        
    }
}



.rentals-cov{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url("/siteart/lifts.jpg");
    background-size: cover;
    background-position: center;
    background-color: #000;
    color:#fff;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    h1{
        color: var(--white);
    }

            a{
            color: var(--white);
        }

    .secondary-btn{

        
    }
}


.consignment-cov{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url("/siteart/bandit-generator-equipment.jpg");
    background-size: cover;
    background-position: center;
    background-color: #000;
    color:#fff;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    h1{
        color: var(--white);
    }

            a{
            color: var(--white);
        }

    .secondary-btn{

        
    }
}


.about-cov{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%), url("/siteart/about.jpg");
    background-size: cover;
    background-position: center;
    background-color: #000;
    color:#fff;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;

    h1{
        color: var(--white);
    }

            a{
            color: var(--white);
        }

    .secondary-btn{

        
    }
}

.thank-cover{
    background-color: var(--red);
    color:#fff;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;

    h1{
        color: var(--white);
    }

    .button-container{
        justify-content: center;
    }



}

.internal-header{
    background-color: var(--red);
}

.home-1{
    align-items: center;
}


.used-cat{
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(/siteart/bandit-generator-equipment.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    padding: 25px 35px;
    position: relative;
    height: 500px;
    

    .title-text{
        color: var(--white);
    }

    .button-container{
        position: absolute;
        bottom: 25px;
        left: 35px;
    }

}

/* 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;
  }
  
  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: 90%;
  }

  .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(--black);
  }

   .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);
  }



/*--------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: 15px;
    border-radius: 5px;
    font-family: var(--paragraph);
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 5px;
    padding: 15px;
    font-family: var(--paragraph);
}

input.submit-button{
    background-color: var(--red);
    border: none;
    color: #fff !important;
    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-style: normal;
    font-weight: 600;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

input.submit-button:hover{
background-color: var(--darkred);
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: 10px 15px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    font-size: 16px;
}

.button button:hover{
    background-color: --d;
}


/*-------- CONTACT STYLES --------*/

.google-maps{
    
}

.contact-info{

    a{
        color: var(--gray);
        margin-top: 25px;
        display: block;

        i{
        padding-right: 15px;
        }

        
    }

    a:nth-of-type(2){
        font-weight: 600;
        font-size: 18px;
        color: var(--black);
    }
}


/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--paragraph);

}

.top-footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    padding: 50px 50px;
    flex-wrap: wrap;
}

.footer-logo{
    width: 250px;


}

.left-footer{

    p{
        font-size: 26px;
        margin-top: 25px;
    }

    a{
        color: var(--black);
        font-weight: 600;
    }

}

.right-footer{
    ul{
        display: flex;
        list-style-type: none;
        gap: 15px;
    }

    a{
        color: var(--black);
        font-family: var(--second-header);
    }

}

.right-footer .socials{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.right-footer img{
	width:150px;
}



.bottom-footer{
    padding: 10px 50px;
    font-size: 12px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
	
	h1 span, h2 span{
		line-height: unset !important;
		text-transform: unset !important;
	}
}

.body-wrapper section{
    padding: inherit;
}

.body-wrapper p.disclaimer{
    font-size: 12px;
}

.faceted-search-content .selected-facets-container .selected-facet{
    background-color: var(--red) !important;
    border-radius: 0px !important;

}

.faceted-search, .faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn{
    border-radius: 0px !important;
    background-color: var(--red) !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(--red);
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: var(--red);
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: var(--red);
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1200px) {

}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 975px) {
    nav.mobile .logo {
        width: 175px;
    }

    h1{
        font-size: 62px;
        line-height: 62px;

    }

    h2{
        font-size: 48px;
        line-height: 52px;
    }
	.right-footer{
    ul{
        display: block;
		padding:10px 0;
        list-style-type: none;
        gap: 15px;
    }
	}

	
}

@media only screen and (max-width: 840px){
    .title-text{
        font-size: 22px;
    }

    .used-cat{
        padding: 25px 25px;
    }

}

@media only screen and (max-width: 750px) {

    h1{
        font-size: 52px;
        line-height: 60px;

    }

    h2{
        font-size: 36px;
        line-height: 48px;
    }

    section{
        padding: 50px 50px;
    }

    .home-cover{
        height: 60vh;
    }

    .flexy, .flexy2{
        flex-direction: column !important;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg, .used-cat{
        width: inherit !important;
    }
    
    .no-break{
        display: none;
    }

    .button-container{
        left: 50px;
    }

    .home-1{
        align-items: stretch;
    }

   
}

@media only screen and (max-width: 500px) {

    .home-cover{
        height: 55vh;
    }

        h1{
        font-size: 48px;
        line-height: 50px;
            span{
                font-size: 16px;
            }
    }

    h2{
        font-size: 32px;
        line-height: 36px;

                    span{
                font-size: 16px;
            }
    }

 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }


}

@media only screen and (max-width: 450px) {
    section, .top-footer{
        padding: 50px 25px;
    }

    .bottom-footer{
        padding: 10px 25px;
    }

        .left-footer{
        p{
            font-size: 22px;
        }
    }

    .used-cat{
        height: 400px;
    }
	
}

@media only screen and (min-width:) and (max-width:){
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



