﻿/***** 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;
}

/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 75px 40px;
}

button{
    border: none;
    background-color: #000;
    transition:.25s;
    font-family: "Manrope", sans-serif;
}

button:hover{
    background-color: white;
    color: black;
}

button a{
    font-size: 16px;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    gap: 10px;
    transition:.25s;
}

button i{
    font-size: 12px;
    color: #EA2429;
}

button:hover a{
    color: black;
}

.secondary-btn{
    border: none;
    background-color: #fff;
    transition:.25s;
}

.secondary-btn:hover{
    background-color: #ffffff75;
    color: black;
}

.secondary-btn:hover a{
    color: #fff;
}

.drk-background{
    background-color: #EA2429;
    color: white;
}

.lgt-background{
    background-color: gray;
}

.span{
    font-weight: 700;
}

/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 25px;
}

.col-2{
    width: 50%;
}

.col-2-lrg{
    width: 60%;
}

.col-2-sml{
    width: 40%;
}

.col-3 {
    width: 33.33%;
}

.col-4{
    width: 25%;
}


.below.flexy.category-container {
	margin-top: 80px;
}

/*-------- BODY STYLES --------*/

body {
    font-family: "Manrope", sans-serif;
}

h1, h2, h3,h4,h5,h6{
    font-family: "Onest", sans-serif;
}


h1{
    font-size: 52px;
}

h2{
   font-size: 32px;
}

h3{
    font-size: 20px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*          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;
}

.left-menu{
    display: flex;
	justify-content: space-between;
	align-items: center;
    gap: 40px;
}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	gap: 25px;
    position: relative;
    z-index: 400;
}

.bottom-links{
	gap: 25px;
    font-weight: 700 !important;
}

.bottom-links a{
	color: #000;
}


ul.bullet-list {
    margin-left: 30px;
    width: 50%;
}
ul.tractors.bullet-list li {
   margin-top: 12px;
}

a.black-underline {    
	color: #000 !important;
    text-decoration: underline;}

p.larger-text{font-size: 18px;}
p.larger-text.italic{font-style:italic;}
/*--------HOME STYLES--------------------*/
.home-header{
position: absolute;
z-index: 100;
width: 100%;
}

.home-cover{
    padding: 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.home-cover-video{
    z-index: -1;
}

.home-cover-details{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom:0;
    left: 0;
    right: 0;
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    margin-top: 50px;
}

.home-cover h1{
    text-shadow: 0px 1px 6px rgba(0,0,0,0.40);
}

.home-cover-details button{
    margin-top: 50px;
}

.overlay{
background: linear-gradient(0deg, rgba(255,255,255,0) 70%, rgba(255,255,255,0.55) 100%);
/* background-color: #00000035; */
 width: 100%;
 height: 100%;
 position: absolute;
 top: 0;
 left: 0;
 z-index: 1;
}

.cover{
    background-color: #EA2429;
    color:#fff;
    padding: 75px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-1{
    align-items: center;
    gap: 50px;
}

.section-1 img{
    width: 100%;
}

.section-1 button{
    margin-top: 50px;
}

.section-1 .col-2{
	
}

.section-1 .col-2 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-2{

}

.equipment-title{
    justify-content: space-between;
    margin-bottom: 50px;
}

.category-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px;
}

.category-title p{
    font-size: 12px;
    display: flex;
    gap: 5px;
    color: #fff;
    align-items: center;
}

.category-title i{
    font-size: 10px;
    color: #EA2429;
}

.category-image-container{
    height: 25vh;
    overflow: hidden;
}

.category-image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-3{

}

/*--------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{
    background-color: #000;
    border: none;
    color: #fff !important;
    padding: 10px 15px;
    border-radius: 0px !important;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: 10px 15px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    font-size: 16px;
}


/*-------- CONTACT STYLES --------*/

.google-maps{
    
}

/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: "Manrope", sans-serif;
    background-color: #000;
    color:#fff;
}

footer a{
    color: #fff;
}

footer img{
    width: 100%;
}

.footer-logo{
    width: 250px;
}

.top-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 75px 40px;
    text-align: center;
}

.footer-contact{
    display: flex;
    align-items: flex-end;
}

.footer-contact div{
    border-right: 1px solid #ffffff50;
    padding: 0px 50px;
}

.footer-contact div:last-of-type{
    border-right: none;
}

.left-footer{

}

.right-footer{

}

.bottom-footer{
    padding: 10px 40px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.footer-links {
	display: flex;
    justify-content: center;
    gap: 120px;
    font-size: 18px;
    font-weight: 800;
    padding: 10px 0 40px;
	flex-wrap:wrap;
}

/*----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 i{
    color: inherit !important;
}

.faceted-search, .faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn{
    border-radius: 0px !important;
    background-color: red !important;
}

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label{
    display: flex;
    gap: 5px;
}


.ts-modal-container .ts-modal-content{
	position: absolute !important;
	top: 50px !important;
	left: 0 !important;
	right: 0 !important;
}


/*  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: #000;
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: #000;
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: #EA2429;
}

.faceted-search-content .selected-facets-container .selected-facet{
    background: #000 !important;
    border-radius: 0px !important;
}

.faceted-search-content .selected-facets-container .selected-facet i{
    color: #EA2429 !important;
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1200px) {

}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    .footer-contact{
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .footer-contact div{
        border-right: none;
    }

    h1{
        font-size: 46px;
    }

}

@media only screen and (max-width: 850px) {
    .category-container{
        flex-direction: column;
    }

    .category-container .col-3{
        width: inherit;
    }

    .category-image-container{
        height: 50vh;
    }

    h1{
        font-size: 42px;
    }
}

@media only screen and (max-width: 750px) {
    h1{
        font-size: 42px;
    }

    h2{
        font-size: 28px;
    }

	
	ul.bullet-list {width: 100%;}
	
    .home-cover{
        height: 75vh;
    }

    .home-cover-video{
        height: 100%;
        object-fit: cover;
    }

    nav.mobile .logo {
        width: 175px;
    }

    .flexy{
        flex-direction: column !important;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg{
        width: inherit !important;
    }
    
    .no-break{
        display: none;
    }
}

@media only screen and  (max-width:600px) {
	.footer-links {flex-direction:column; gap:30px;align-items:center;}
}

@media only screen and (max-width: 500px) {
    h1{
        font-size: 38px;
    }

    h2{
        font-size: 24px;
    }

    .home-cover{
        height: 60vh;
    }

	
 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .bottom-footer{
        flex-direction:column;
        align-items: center;
    }

	.top-footer{
        padding: 50px 40px;
    }
}

@media only screen and (max-width: 450px){
    h1{
        font-size: 32px;
    }

    h2{
        font-size: 22px;
    }

    .category-image-container{
        height: 30vh;
    }
}

@media only screen and (max-width: 375px) {
    #menu-button{
        padding: 15px 25px !important;
    }
    
    .home-cover-details{
        margin-left: 25px;
        margin-right: 25px;
    }

    section{
        padding: 50px 25px;
    }

    h1{
        font-size: 28px;
    }

    h2{
        font-size: 18px;
    }
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



