﻿/***** 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;
    --navy:#140342;
    --drkblue:#00298B;
    --blue:#093BB3;
    --lgtblue:#2361F6;
    --gray:#F5F5F5;
    --main-header:"Manrope", sans-serif;
    --paragraph: "Manrope", sans-serif;
  }

/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 100px 50px;
}

button{
    border: none;
    background-color: var(--blue);
    transition:.25s;
    border-radius: 25px;


    a{
    font-size: 16px;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    transition:.25s;
    font-family: var(--paragraph);
    }

    i{
        transform: rotate(45deg);
        font-size: 14px;
        -webkit-text-stroke: .5px #093BB3;
    }
}

button:hover{
    background-color: var(--drkblue);
    color: black;

    i{
        -webkit-text-stroke-color: var(--drkblue);
    }

    a{
    color: var(--white);
    }
}


.secondary-btn{
    border: none;
    background-color: var(--gray);
    transition:.25s;

    a{
        color: var(--black);
    }

    i{
        -webkit-text-stroke: .5px #F5F5F5;
    }
}

.secondary-btn:hover{
    background-color: var(--gray);
    color: black;

    a{
        color: var(--black);
    }

    i{
        -webkit-text-stroke-color: var(--gray);
    }
}

.drk-background{
    background-color: var(--navy);
    color: white;
}

.lgt-background{
    background-color: var(--gray);
}

.blue-background{
    background-color: var(--blue);;
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.internal-page{
    a{
        color: var(--black);
    }
}

/*-------- 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%;
}

.maxi{
    max-width: 1600px;
    margin: 0 auto;
}

.maxi2{
    max-width: 1350px;
    margin: 0 auto;
}

.image{

    img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

}


.thankyou-page{
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 175px 50px;
    img{
        transform: rotate(270deg);
        width: 175px;
        margin-bottom: 50px;
    }

    h1{
        font-weight: 500;
    }

    .button-container{
        justify-content: center;
    }
}


/*-------------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: 72px;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 86px;
}

h2{
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 400;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{
    border:1px solid #00000007; 
    margin: 25px 0px;
    width: 95%;
}


/*          HEADER           */
.logo {
	max-width: 200px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: var(--navy);
	color: var(--white);
	padding: 10px 50px;
	display: flex;
	justify-content: space-between;
}

.top-links{
	gap: 25px;



    a{
        color: var(--white)
    }

    i{
        color: var(--lgtblue);
        padding-right: 5px;
    }
}


.bottom-links{
	gap: 25px;


    button{
        a{
            white-space: nowrap;
            color: var(--white);
        }

        i{
            color: var(--white);
        }
    }

    a{
        color: var(--black);
    }
}

.icon-background{
    color: var(--white);
    background-color: var(--blue);
    font-size: 10px;
    padding: 5px 7px;
    border-radius: 15px;
    margin-right: 5px;
}


.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 50px;
	gap: 25px;
    border-bottom: 1px solid #F5F5F5;
}

/* 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: 150px 50px;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%),url(/siteart/ag-equipment-harvester.jpg);
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.cover{
    color:var(--black);


    h1{
        font-weight: 400;
        font-size: 48px;
    }
}

.cover2{
    color:var(--black);
    padding: 75px 50px;
    position: relative;

    h1{
        font-weight: 400;
    }

    img{
        position: absolute;
        right: 50px;
        top: 50px;
        bottom: 0;
        width: 250px;
    }
}

.breadcrumb{
    padding: 20px 50px;
    border-bottom: 1px solid #00000008;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    font-size: 14px;
    color: #3D3D3D;

    a{
        color: #3D3D3D;
        font-weight: 500;
    }

    i{
        font-size: 10px;
    }

}

.equipment-cat{
    margin-top: 25px;
}

.equipment-item{
    .image{
        height: 350px;
    }

    span{
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 600;
    }

    a{
        display: flex;
        justify-content: space-between;
        color: var(--black);
        font-size: 21px;
        font-weight: 500;
        gap: 25px;
    }

    i{
        transform: rotate(45deg);
        color: var(--blue);
        -webkit-text-stroke: .25px #fff;
        font-size: 18px;
    }

}

.attachments-item{
    .image{
        background-color: var(--gray);
        position: relative;

        img{
            object-fit: contain;
            position: absolute;
            width: 115%;
            height: auto;
            bottom: 0;
            left: 0;
        }
    }
}

    .text{
        display: flex;
        flex-direction: column;
        margin-top: 15px;;
    }

.last-eq-item{
    background-color: var(--blue);
    color: var(--white);
    padding: 25px;
    position: relative;
    transition: .25s;

    a{
        color: var(--paragraph);
    }

    span{
        text-transform: inherit;
        font-size: 24px;
        font-weight: 500;
        margin-top: 50px;
    }

    i{
       -webkit-text-stroke: 1.25px #093BB3; 
       color: var(--white);
       font-size: 32px;
       position: absolute;
       bottom: 25px;
         right: 25px;
    }

    img{
        mix-blend-mode: lighten;
        width: 75px;
    }
}

.last-eq-item:hover{
    background-color: var(--drkblue);
}

.home-2{
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), url(/siteart/tractor-crop-field.jpeg);
    background-size: cover;
    background-position: center;
    color: var(--white);

    h2{
        font-size: 62px;
        margin-bottom: 100px;
    }

    span{
        font-size: 38px;
        font-weight: 500;
    }

    p{
        margin-top: 10px;
    }
}

.line{
    height: 150px;
    width: 3px;
    background-color: var(--white);
    position: relative;
}

.line-blue{
    height: 35%;
    width: 3px;
    background-color: var(--blue);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.home-3{
    .col-2{
        padding: 75px 50px;
    }

    .blue-background{
        color: var(--white);
        position: relative;

        p{
            margin-right: 60px;
        }

        img{
            position: absolute;
            right: 0;
            bottom: 0;
            width: 250px;
        }
    }
}

.home-4{
    .line{
        height: 450px;
    }

    .maxi{
    align-items: center;

    }
}

.checklist{
    margin-top: 25px;
    list-style-type: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;

    li{
        display: flex;
        gap: 7px;
        align-items: center;
    }

    i{
        font-size: 12px;
        background-color: var(--blue);
        color: var(--paragraph);
        padding: 5px 5px;
        border-radius: 15px;
    }
}

.home-5{
    .image{
        width: 80%;
        float: right;
    }
}




/*--------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: none !important;
    width: 50%;
    padding: 20px 25px;
    border-radius: 0px;
    font-family: var(--paragraph);
}

#formpage textarea{
    border: none !important;
    border-radius: 0px;
    padding: 15px 15px;
    font-family: var(--paragraph);
    height: 100px;
}

input.submit-button{
    padding: 15px 25px;
    color: #fff;
    font-family: var(--paragraph);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
    background-color: var(--blue);
    border: none;
    border-radius: 25px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: 15px 25px;
    color: #fff;
    font-family: var(--paragraph);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition: .25s;
}


/*-------- CONTACT STYLES --------*/



/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--paragraph);
    background-color: var(--drkblue);
    color: var(--white);

    a{
        color: var(--white);
    }
}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 100px 50px;

    img{
        float: right;
    }
}

.footer-logo{
    width: 250px;
}

.left-footer{
    span{
        font-size: 56px;
        font-weight: 500;
        margin-bottom: 50px;
		font-family: var(--paragraph);
    }

}

.right-footer{
    align-self: flex-end;

    ul{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        list-style-type: none;
        gap: 25px;
    }

    img{
        width: 80%;
    }
}

.phone-ft{
    font-size: 32px;
    font-weight: 700;
}


.bottom-footer{
    padding: 0px 50px 50px 50px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-footer{
    text-align: left;
    padding: 15px 50px;
    color: var(--white);
    font-size: 12px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 50px;

h1, h2{
    line-height: unset;
}

span{
    all: unset;
}

i{
    transform: unset;
}
}

.body-wrapper section{
    padding: inherit;
}

.body-wrapper p.disclaimer{
    font-size: 12px;
}

button.ts-button.faceted-search{
    background-color: var(--blue) !important;
}

.faceted-search-content .faceted-section-box .faceted-search{

}

button.selected-facet.ts-button{
    background-color: var(--blue) !important;
}

.faceted-search, .faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn{
    border-radius: 0px !important;
    background-color: var(--blue) !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(--blue) !important;
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: var(--drkblue);
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: var(--navy);
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1200px) {

}

@media (min-width:875px) and (max-width:1200px){
    .equipment-item {
 a{
        font-size: 16px;
    }

    .image{
        height: 275px;
    }
}
}

@media only screen and (max-width: 1015px){
	.home-3 .no-break{
		display: none;
	}

}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {

    h1{
        font-size: 58px;
        line-height: 70px;
    }

    h2, .home-2 h2, .left-footer h3{
        font-size: 36px;
        line-height: 46px;
    }

    nav.mobile .logo {
        width: 175px;
    }

    .home-cover{
        .no-break{
            display: none;
        }
    }

}

@media only screen and (max-width: 875px) {
    .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;
    }

    .attachments-item{
        .image img{
            width: 100%;
            height: 100%;
            position: unset;
            object-position: left;
        }
    }

    .last-eq-item{
        height: 325px;
    }

    .line{
        width: 100%;
        height: 3px;
    }

    .line-blue {
    height: 3px;
    width: 35%;
    background-color: var(--blue);
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    }

    .home-2 h2{
        margin-bottom: 60px;
    }

    .home-4 .line{
        height: 3px;
    }

    .right-footer img{
        width: 60%;
    }

    .home-5{
        .image{
            width: 65%;
            float: left;
        }
    }
}


@media only screen and (max-width: 700px){
	.cover2{
		img{
			width: 145px;
			right: 25px;
			top: 60px;
		}
	}
	
}


@media only screen and (max-width: 575px) {
        h1{
        font-size: 42px;
        line-height: 52px;
    }

    h2, .home-2 h2, .left-footer span{
        font-size: 28px;
        line-height: 38px;
    }



 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .top-footer{
        flex-direction: column;
        align-items: flex-start;

        img{
            float: left;
        }
    }

    .right-footer{
        align-self: flex-start;

        ul{
            display: flex;
            flex-wrap: wrap;
        }
    }

    .home-3 .col-2{
        padding: 35px 25px 100px;
    }


    .home-3{

    .blue-background{

        p{
            margin-right: 0px;
        }

        img{
            right: 0;
            bottom: 0;
            width: 175px;
        }
    }
}
	
		.home-cover{
		padding: 90px 50px;
		
	
}

	}

@media only screen and (max-width: 460px){
			.home-cover{
				padding: 90px 50px;
			}
	
			h1{
			font-size: 32px;
			line-height: 38px;
		}
	
	.cover2{
		img{
			width: 115px;
		}
	}


}



@media only screen and (max-width: 375px) {

    h1{
        font-size: 28px;
        line-height: 38px;
    }

    h2, .home-2 h2, .left-footer span{
        font-size: 28px;
        line-height: 38px;
    }

    section,.top-footer{
        padding: 50px 25px;
    }

    .bottom-footer{
        padding: 0px 25px 50px 25px;
    }

        .home-cover{
        padding: 70px 25px;
    }


        .home-3{

    .blue-background{

        img{
            display: none;
        }
    }
}


    .home-3 .col-2{
        padding: 50px 25px 30px 25px;
    }
	
	
	.cover2{
		overflow: hidden;
		
		padding: 60px 25px 50px 25px;
		img{
			width: 100px;
			right: 0px;
			top: 50px;
		}
	}

    
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



