﻿/***** BEGIN RESET *****/

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

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;
}

/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 85px 75px;
}

button i{
    transform: rotate(-45deg);
    color:#FF2A13;
    background-color: #fff;
    border-radius: 10px;
    padding: 3px;
}

button{
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: .25px;
    border: none;
    padding: 10px 15px;
    background-color: #FF2A13;
    transition:.25s;
    font-size: 14px;
}

button:hover{
    background-color: white;
    color: black;
}

button a{
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    transition:.25s;
}

button:hover a{
    color: black;
}

.secondary-btn{
    border: none;
    padding: 5px 0px;
    background-color: #fff;
    transition:.25s;
}

.secondary-btn:hover{
    background-color: #ffffff75;
    color: black;
    gap: 10px !important;
}

.secondary-btn:hover a{
    gap: 25px !important;
}

.secondary-btn a{
    color: #000;
}

.btn-3{
    background-color: #F11700;
}

.inner-pg-cover{
    background-color: #000;
    color:#fff;
    padding: 100px 75px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.main-bck{
    background-color: #FF2A13;
}




/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 35px;
}

.col-2{
    width: 50%;
}

.inventory-container{
    border-bottom: 1px solid #00000010;
}

.inventory-container:first-of-type{
    margin-top: 25px;
}

.inventory-container:last-of-type{
    border-bottom: none;
}

.inventory-item-container{
    border-right: 1px solid #00000010;
    padding: 50px 0px;
    padding-right: 40px;
    justify-content: stretch !important;
}

.inventory-container .inventory-item-container:last-of-type{
    border-right: none;
}

.item-content{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-content button{

}

.item-image{
    width: 40%;
}

.flexy img{
    width: 100%;
}

.col-3 div{
    width: 33.33%;
    padding: 25px;
}

.col-4 div{
    width: 25%;
    padding: 25px;
}

.col-2-lrg{
    align-items: center;
}

.col-2-lrg{
    width: 60%;
    padding:25px;
}

.col-2-sml{
    width: 40%;
}

.col-2-sml div:last-of-type{
    width: 60%;
    padding:25px;
}

/*-------- BODY STYLES --------*/

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1{
    font-size: 52px;
}

h2{
    font-size: 42px;
    line-height: 48px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{
    border:#FF2A13 2px solid;
    width: 250px;
    margin-left: 0;
}


/*-------------SLIDER----------------------*/

.slider-container{
margin-top: 50px;
}

.slider{
	display: flex;
	justify-content: center;
	gap: 50px !important;
}

  .slick-slide {
      margin: 0 27px;
  }

  /* the parent */
  .slick-list {
      margin: 0 -27px;
  }


.slick-prev {
    position: absolute;
    bottom: 0;
    top: 0;
    left: -60px;
    display: block;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
	visibility: hidden;
	cursor: pointer;
}

.slick-prev:after{
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	font-size: 14px !important;
	transform: rotate(180deg);
	content:'\f061'; 
  	visibility: visible;
  	display: block;
  	position: absolute;
	color: #FFFFFF;
    background-color: #FF2A13;
    padding: 9px 10px;
    border-radius: 25px;
    font-size: 10px;
	transition: .25s;
}

.slick-prev:hover:after, .slick-next:hover:after{
	background-color: white;
	color: #FF2A13;
}

.slick-next {
    position: absolute;
    bottom: 0;
    top: 0;
    right: -30px;
    display: block;
    width: 50px;
    height: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
	visibility: hidden;
	cursor: pointer;
}

.slick-next:after{
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	content:'\f061'; 
	font-size: 14px !important;
  	visibility: visible;
  	display: block;
  	position: absolute;
	color: #FFFFFF;
    background-color:  #FF2A13;
    padding: 9px 10px;
    border-radius: 25px;
	transition: .25s;
}

.slider .slider-link-contain{
	border: 1px solid #FFFFFF50;
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 0 10px;
}

.slider .slider-link-contain div{
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 75px 25px;
	justify-content: space-between;
}

.slider-link-contain p{
	color: #FFFFFF !important;
}

.slider li img{
	width: 100%;
}

/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 150px 75px;
    display: flex;
    flex-direction: column;
    color:#fff;
    gap: 25px;
    background-image: linear-gradient(285deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 80%), url("/siteart/ironworks-warehouse.jpg");
    background-position: bottom;
    background-size: cover;
}

.contact-us-cover{
    background-image: linear-gradient(285deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.50) 100%), url("/siteart/Skyjack-lifts.jpg");
    background-position: center;
    background-size: cover;
}

.about-us-cover{
    background-image: linear-gradient(285deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.50) 100%), url("/siteart/about-us-cover.jpg");
    background-position: center;
    background-size: cover;
}

.thank-you-cover{
    background-image: linear-gradient(285deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.50) 100%), url("/siteart/JLG-lifts.jpg");
    background-position: center;
    background-size: cover;
    padding: 250px 75px;
}

.cta{
    justify-content: center !important;
    align-items: center;
    color: #fff;
    padding: 30px 75px !important;
}

.cta h3{
    font-size: 26px;
}

.third-section{
    background-image: linear-gradient(305deg, rgba(0,0,0,0.2863270308123249) 50%, rgba(0,0,0,0.8101365546218487) 100%), linear-gradient(135deg, rgba(0,0,0,0.2863270308123249) 50%, rgba(0,0,0,0.8101365546218487) 100%), url("/siteart/black-tire-background.jpeg");
    background-position: center;
    background-size: cover;
    color: #fff;
    align-items: center;
}

.third-section .first{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.third-section h2{
    margin-bottom: 10px;
}



/*--------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: 5px;
    font-family: 'Figtree', sans-serif;
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 5px;
    padding: 10px 10px;
    font-family: 'Figtree', sans-serif;
}

input.submit-button{
    border: none;
    background-color: #FF2A13;
    color: #fff !important;
    padding: 8px 13px 8px 16px;
    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;
    font-size: 13.5px;
}

input.submit-button:hover{
    border: none;
    background-color: #fff;
    color: #000 !important;
    padding: 8px 13px 8px 16px;
    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;
    font-size: 13.5px;
}

.captcha-button .submit-button:after{
    font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	font-size: 14px !important;
	transform: rotate(-45deg);
	content:'\f061'; 
  	visibility: visible;
  	display: block;
	color: #FFFFFF;
    background-color: #FF2A13;
    padding: 9px 10px;
    border-radius: 25px;
    font-size: 10px;
	transition: .25s;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.button button:hover{
    color: #000;
}


/*-------- CONTACT STYLES --------*/
.contact-third-section{
    padding:25px 75px !important;
}

.contact-third-section .flexy{
    justify-content: space-between;

}

.google-maps{

}

.get-in-touch{
    gap: 75px;
    align-items: center;
}

.contact-info-icons{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.contact-info-icons i{
    color: #FFf;
    background-color: #FF2A13;
    padding: 20px 20px;
}

.contact-info-icons a{
    color: #000;
}

/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: "Manrope", sans-serif;
}

.top-footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    padding: 50px 40px;
    background-color: #FF2A13;
}

.top-footer a{
    color: #fff;
}

.top-footer ul{
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    color: #fff;
}

.top-footer ul li a{
    color: #fff;
}

.top-footer div:last-of-type{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.top-footer div:last-of-type ul:last-of-type{
    gap: 10px;
}

.bottom-footer{
    text-align: right;
    padding: 10px 40px;
    background-color: #CF2715;
    color: #fff;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.bottom-footer a{
    color: #fff;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
}

.body-wrapper section{
    padding: inherit;
}

.body-wrapper p.disclaimer{
    font-size: 12px;
}

.body-wrapper button i{
    transform: inherit;
    color:inherit;
    background-color: inherit;
    border-radius: inherit;
}

a.view-listing-details-link.des-view-listingDetails{
    background-color: #000;
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: #FF2A13;
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: #000;
}

.faceted-search-content .selected-facets-container .selected-facet{
    background: #FF2A13 !important;
    border-radius: 0px !important;
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1200px) {
    .top-footer .quick-links{
        flex-direction: column;
        gap: 15px;
    }

    .top-footer div:last-of-type{
        flex-direction: row;
        gap: 75px;
    }
}

@media only screen and (max-width: 1040px) {
    .inventory-item-container{
        flex-direction: column-reverse;
    }

    .item-content{
        width: 100%;
        gap: 25px;
    }

    .item-image{
        width: 60%;
    }

    .cta h3{
        font-size: 24px;
    }
}

@media only screen and (max-width: 940px) {

    h2{
        font-size: 36px;
    }

    .third-section .no-break{
        display: none;
    }

    .third-section .col-2:first-of-type{
        width: 75%;
    }

    .get-in-touch{
        flex-direction: column;
    }

    .get-in-touch .col-2{
        width: 100%;
    }

    .contact-third-section .flexy{
        flex-direction: column;
    }
}

@media only screen and (max-width: 830px) {

    .no-break{
        display: none;
    }

    .contact{
        flex-direction: column;
        gap: 8px !important;
    }

   
    .third-section{
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .third-section .col-2:first-of-type{
        width: 100%;
    }
}

@media only screen and (max-width: 760px) {
.cta{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.cta .col-2-lrg{
    width: 100%;
    padding:0px;
}
}

@media only screen and (max-width: 670px) {
    section{
        padding: 50px 40px;
    }

    .slider{
        margin: 25px 25px;
    }

    .inventory-container{
        flex-direction: column;
    }

    .inventory-container .col-2{
        width: 100%;
    }

    .inventory-item-container{
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #00000010;
    }

    .inventory-item-container:last-of-type{
        border-bottom: none;
    }
   }

@media only screen and (max-width: 600px) {
 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .top-footer{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .top-footer div:last-of-type{
        flex-direction: column;
        gap: 25px;
    }

    .top-footer div:last-of-type ul:last-of-type{
        align-items: flex-start;
        justify-content: flex-start !important;
    }
}

@media only screen and (max-width: 555px) {
    h1{
        font-size: 38px;
    }

    h2{
     font-size: 32px;
     line-height: 32px;
    }
    .inventory-container{
        flex-direction: column;
    }
    
    
    .inventory-item-container{
        flex-direction: column-reverse;
    }

    .third-section .button-container{
        flex-direction: column;
    }

    .bottom-footer{
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
        gap: 5px;
    }


   }

@media only screen and (max-width: 450px){
	h1{
		font-size: 30px;
	}
	
	hr{
    width: 175px;
}
	.home-cover{
		padding: 100px 50px;
		background-image: linear-gradient(180deg, rgba(0,0,0,.55) 50%, rgba(0,0,0,0.55) 100%), url("/siteart/ironworks-warehouse.jpg");
	}
}

@media only screen and (max-width: 340px){
	h1{
		font-size: 28px;
	}
	
	.home-cover{
		padding: 100px 30px;
		background-image: linear-gradient(180deg, rgba(0,0,0,.55) 50%, rgba(0,0,0,0.55) 100%), url("/siteart/ironworks-warehouse.jpg");
	}
}


@media only screen and (max-width: 375px) {
    .slider{
        margin: 10px 10px;
    }

    .slider p{
        font-size: 14px;
    }

    .slider-container{
        margin-top: 25px;
    }

    .slick-slide{
        margin: 0px 15px;
    }
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



