﻿/***** 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 {
        --color-primary: #000000;
        --color-secondary: #dc4405;
        --color-dark-background: #ff0000;
        --color-light-background: #ff0000;
        --color-body-dark: #000000;
        --color-body-light: #000000;
        --color-primary-button: #dc4405;
        --color-secondary-button: transparent;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #000000;
        --font-body: "Inter", sans-serif;
        --font-header-size: 72px;
        --font-header-size-medium: 48px;
        --font-header-size-sml: 32px;
        --font-header-span-size: 21px;
        --font-header-span-size-sml: 18px;
        --font-secondary-header-size: 48px;
        --font-secondary-header-size-medium: 36px;
        --font-secondary-header-size-sml: 18px;
        --font-body-size: 16px;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --padding-button: 10px 15px;
}


/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 50px 40px;
}

button{
    border: none;
    background-color: var(--color-primary-button);
    transition:.25s;

    a{
    font-family: var(--font-body);
    font-size: var(--font-body-size);
    color: var(--color-white);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
    }
}

.btn{
    font-family: var(--font-body);
    font-size: var(--font-body-size);
    background-color: var(--color-primary-button);
    color: var(--color-white) !important;
    padding: var(--padding-button);
    border-radius: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    transition:.25s;
    display: inline !important;
}

button:hover{
    background-color: var(--color-primary-button);
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}

.btn:hover{
    background-color: var(--color-secondary-button);
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}


.secondary-btn{
    border: none;
    background-color: var(--color-secondary-button);
    color: var(--color-black) !important;
    padding: 0px;
    transition:.25s;
}

.secondary-btn:hover{
    background-color: var(--color-button-hover);
    color: var(--color-body-light);

    a{
    color: var(--color-body-light);
    }
}

.small-btn{
    font-size: 14px;
    color: #000 !important;
    background-color: transparent;
    border: 1px solid #000;

}

.drk-background{
    background-color: var(--color-dark-background);
    color: white;
}

.lgt-background{
    background-color: var(--color-light-background);
}

.accent-background{
    background-color: var(--color-primary);
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.maxi{
    max-width: 1600px;
    margin: 0 auto;
}

.maxi-2{
    max-width: 1350px;
    margin: 0 auto; 
}


/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 25px;
}

.flexy2{
    display: flex;
    gap: 50px;
}

.col-2{
    width: 50%;
}

.col-2-lrg{
    width: 60%;
}

.col-2-sml{
    width: 40%;
}

.col-3 {
    width: 33.33%;
}

.col-4{
    width: 25%;
}

.image-container{

    img{
        width: 100%;
    }
}



/*-------------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: var(--padding-button);
    font-family: var(--font-body);
    font-size: var(--font-body-size);
    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(--font-body);
}

h1, h2, h3{
    font-family: var(--font-header);
}

h1, h2{
    span{
        font-size: var(--font-header-span-size);
    }
}

h1{
    font-size: var(--font-header-size);
    margin-bottom: 10px;
}

h2{
    font-size: var(--font-secondary-header-size);
    margin-bottom: 10px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


/*          HEADER           */
.logo {
	max-width: 30%;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 24px 36px;
	display: flex;
    gap: 25px;
	justify-content: space-between;
    align-items: center;
}

.top-links{
    display: flex;
	gap: 25px;
    border: 1px solid #00000025;
    padding: 10px 25px;
    border-radius: 25px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    font-size: 14px;


    li{
    list-style-type: none;
    }

    a{
        color: #00000095;
        display: flex;
        align-items: center;
        gap: 5px;
        font-family: var(--font-body);
        white-space: nowrap;
    }

    i{
        font-size: 13px;
        color: var(--color-secondary);
    }
}

.bottom-links{
    align-items: center;

    a{
	color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 32px;
    }

    i{
        font-size: 12px;
    }
}




.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 40px;
	gap: 25px;
	background-color: var(--color-secondary);
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
    position: relative;
}

.menu-content{
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    line-height: 25px;
    font-family: var(--font-body);

    span{
        font-size: 16px;
        font-weight: 600;
        font-family: var(--font-body);
        font-size: 18px;
    }

    b{
        font-size: 20px;
        font-weight: 700;
    }

    a:not(.btn){
        font-weight: 400;
        padding: 0px;
    }

}

.menu-content-flex{
    display: flex;
    gap: 150px;
}

.bold-links{
        font-weight: 600;

        li a{
            font-weight: 600 !important;
            font-size: 16px !important;
            line-height: 38px;
        }
}


.stay-protected{
    display: flex;
    align-items: center;
    width: 75%;
    gap: 50px;
}


.location-header{
    display: flex;
    gap: 25px;

    .btn{
        font-size: 12px;
        padding: 6px 16px;
        font-weight: 400;
    }
}

.location-header-container .menu-content-flex{
    justify-content: space-between;
}


.location-images{
    display: flex;
    flex-direction: column;
    gap: 15px;

    .image-container{
        width: 200px;
        height: 150px;
        border-radius: 10px;
        overflow: hidden;
        object-fit: cover;

        img{
            height: 100%;
            object-fit: cover;
        }
    }
}

.phone-link-hd{
    color: var(--color-secondary) !important;
}

.grid-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 125px;
}


	.click {
		display: flex !important;
		justify-content: space-between !important;
		align-items: baseline !important;
        gap: 5px;
	}

.service-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    column-gap: 50px;
    row-gap: 30px;

    li a{
        display: flex !important;
        gap: 15px !important;
        align-items: center !important;
    }

    i{
        color: #dc4405;
        background-color: #d4d4d425;
        border-radius: .5rem;
        padding: 10px 15px;
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.service-promo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e5e5e5;
    padding-top: 50px;
    margin-top: 25px;
    gap: 25px;
    

    .image-container{
        width: 250px;
    }

    hr{
        height: 125px;
        color: #e5e5e5;
        background-color: #e5e5e5;
    }

    span{
        text-align: center;
        font-size: 24px;
        gap: 15px;
    }

    .btn{
        width: auto;
        text-transform: uppercase;
        font-weight: 500;
    }

    .btn:hover{
        background-color: #be3b04;
    }

    
}

.error-cover{
    text-align: center;
        padding: 275px 40px 250px 40px !important;

    p{
        margin: 0 auto;
    }
    h1{
        font-size: 72px;
        line-height: 80px;

        span{
            font-size: 150px;
        }
    }

    .button-container{
        justify-content: center;
    }
}


.about-header{
    p{
        max-width: 460px;
    }
}


.kubota-promo{
    background: url(/siteart/kubota_lineup.webp);
    width: 50%;
    background-size: cover;
    border-radius: 15px;
    padding: 2rem 1rem;

    .btn{
        padding: 0px;
        text-decoration: underline;
        font-size: 18px;
        

        i{
            font-size: 18px;
        }
    }

    .btn:hover{
        background-color: transparent;
    }

    span{
        font-size: 24px;
        font-weight: 700;
    }
    }

    .parts-flex{
        align-items: center;
    }


/* Search Header */
/*---INVENTORY SEARCH IN HEADER---*/

.search-box{
    border: 1px solid #00000025;
    color: #00000050;
    padding: 10px 20px;
    border-radius: 25px;

    font-family: var(--font-body);
    font-size: 13px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);

    form{
    display: flex;
    align-items: center;
    gap: 25px;
    }

    input{
        border: none !important;
        padding: 0px !important;
        font-family: var(--font-body);
        background-color: transparent !important;
    }

    button{
        background-color: transparent !important;
    }

    i{
        color: var(--color-secondary);
        font-size: 16px;
    }
}



#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(--font-body);
	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: 150px 40px;
    background-size: cover;

}

.home-title{
    max-width: 700px;
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 100px 40px;
    background-size: cover;
}

.section-1{

}

.section-2{

}

.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: var(--font-body);
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 5px;
    padding: 10px 10px;
    font-family: var(--font-body);
}

input.submit-button{
    background-color: #000;
    border: none;
    color: #fff !important;
    padding: var(--padding-button);
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: var(--padding-button);
    color: #fff;
    font-family: var(--font-body);
    cursor: pointer;
    font-size: 16px;
}


/*-------- CONTACT STYLES --------*/

.google-maps{
    
}

/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--font-body);
    background-color: var(--color-primary);

    ul{
        list-style-type: none;
    }
}


.dark-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;

    .search-box{
        border: 1px solid #dc4405;
        background-color: #262626;

        input{
            color: #fff !important;
        }
    }

    .top-links{
        background-color: #262626;

        p{
            color: #fff;
        }
    }

}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 50px 40px;
}

.footer-logo{
    width: 250px;
    margin-bottom: 15px;

    img{
        width: 100%;
    }
}

.location-ft-link{
    color: var(--color-secondary);
    text-align: center;
    text-decoration: underline !important;
    font-size: 18px;
    line-height: 24px;
}

.left-footer{
    text-align: center;
}

.right-footer{
    text-align: center;
}

.bottom-footer{
    text-align: right;
    padding: 10px 40px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;

h1, h2{
    line-height: unset;
}

span{
    all: unset;
}
}

.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(--color-primary) !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(--color-primary);
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: var(--color-primary);
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: var(--color-secondary);
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1279px) {

    .top-links{
        p{
            display: none;
        }
    }

}

@media only screen and (max-width: 1023px){
    .top-links{
        display: none;
    }

    .top-nav{
        flex-direction: column;
    }

    .top-footer{
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .service-group{
        grid-template-columns: 1fr;

        li a{
            font-size: 12px !important;
            line-height: 20px;
        }

        span{
            font-size: 18px;
        }
    }

    .service-promo{
        flex-direction: column;

        hr{
            display: none;
        }
    }

    .stay-protected{
        flex-direction: column;
        gap: 25px;

        .btn{
            padding: 12px 32px;
            font-size: 16px;
        }
    }

    .dpdown-list{
        margin: 0px !important;
        padding: 25px 0px 15px !important;
        border-top: 1px solid #e5e5e5 !important;
    }

    .menu-content-flex{
        flex-direction: column;
        gap: 50px;
    }

    .parts-flex{
        align-items: flex-start;
    }

    .kubota-promo{
        width: 100%;
    }

    .location-header{
        flex-direction: column;


    }

    .location-images {
        .image-container{
            width: 100%;
            height: 250px;
        }
    }

    .phone-link-hd{
        font-size: 16px !important;
    }
}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }
}


@media only screen and (max-width: 639px){

    #menu-button{
        p{
            display: none;
        }
    }
	.logo {max-width:300px; width:100%; padding:0 10px; box-sizing:border-box;}
	.logo img{display:block;}

}




@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



