﻿/***** 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: #C10A27; 
        --color-secondary: #000000;
        --color-dark-background: #C10A27;
        --color-light-background: #F5F5F5;
        --color-body-dark: #000000;
        --color-body-light: #F5F5F5;
        --color-primary-button: #000000;
        --color-secondary-button: #C10A27;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #C10A27;
        --font-header: "Oswald", sans-serif;
        --font-secondary: "Oswald", sans-serif;
        --font-body: "Manrope", sans-serif;
        --font-header-size: 120px;
        --font-header-size-medium: 72px;
        --font-header-size-sml: 36px;
        --font-header-span-size: 18px;
        --font-header-span-size-sml: 16px;
        --font-secondary-header-size: 48px;
        --font-secondary-header-size-medium: 24px;
        --font-secondary-header-size-sml: 18px;
        --font-body-size: 16px;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --padding-button: 10px 20px;
}


/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 50px 40px;
}

button{
    border: none;
    background-color: var(--color-primary);
    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);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
}

button:hover{
    background-color: #fff;
    color: var(--color-primary);

    a{
    color: #000;
    }
}

.btn:hover{
    background-color: #fff;
    color: #000;

}


.secondary-btn{
    border: none;
    background-color: var(--color-secondary-button);
    transition:.25s;
}

.secondary-btn:hover{
    background-color: #B1000B;
	color: #fff;
}

.drk-background{
    background-color: var(--color-dark-background);
    color: white;

    .title-span{
        color: var(--color-white);
    }

    .title-span:after{
        background-color: var(--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: 50px;
    flex-wrap: wrap;
}

.maxi{
    max-width: 1600px;
    margin: 0 auto;
}

.maxi-2{
    max-width: 1350px;
    margin: 0 auto; 
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}


/*-------- 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%;
}

.form-col{
    margin-top: 115px;
}

.image-container{

    img{
        width: 100%;
    }
}

.breadcrumb{
    color: #000;
    padding: 25px 40px;
    font-family: var(--font-header);
    text-transform: uppercase;
    font-size: 16px;


    .maxi{
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    }
    
    i{
        font-size: 12px;
    }

    a{
        color: #000;
    }

}



/*-------------SLIDER----------------------*/
.brand-slider{
    margin-top: 50px;
}

.brand-slider-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.slider{
	display: flex;
	justify-content: center;
	gap: 50px !important;

      .slick-slide {
      margin: 0 40px;
  }

  /* the parent */
  .slick-list {
      margin: 0 0px 0 -40px !important;
  }

  .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;
}
}

.logo-container{
    background-color: #F5F5F5;
    padding: 25px 20px;
    display: flex !important;
    justify-content: center;

    img{
        width: 100%;
        height: 70px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }
}





/*-------- BODY STYLES --------*/

body {
 font-family: var(--font-body);
}

h1, h2, h3{
    font-family: var(--font-header);
    text-transform: uppercase;
}

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);
    font-weight: 400;
    margin-bottom: 10px;
}

h3{
    font-weight: 400;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}





/*          HEADER           */
.logo {
	width: 150px;
}

.logo img {
	width: 100%;
}


.top-nav {
	background-color: var(--color-light-background);
	color: #000;
	padding: 10px 40px;
	display: flex;
	justify-content: space-between;
    font-weight: 600;
    align-items: center;
    font-size: 14px;


    a{
        font-family: var(--font-body);
        color: var(--color-black);
    }
}

.top-links{
	gap: 25px;
    list-style-type: none;
}

.top-links a{
	color: #000;
    font-family: var(--font-body) !important;
}
.top-links a:hover {
	color:var(--color-primary);
}
.top-link-buttons{
    display: flex;
    align-items: center;
    gap: 25px;
}
.top-link-buttons a:hover {
	color:var(--color-primary);
}

.last-link{
    display: flex;
    align-items: center;
    gap: 10px;
}

.last-btn {
    background-color: var(--color-primary);
    padding: var(--padding-button);
    display: block;
    color: var(--color-white) !important;
}



.last-btn:hover{
    background-color: #B1000B;
}

.phone-top-link{
    align-items: baseline !important;
    background-color: var(--color-black);
    color: var(--color-white) !important;
    font-size: 12px !important;
    padding: 16px 15px;
}

.bottom-links{
	gap: 25px;
    align-items: center;
}

.bottom-links a{
	color: var(--color-black);
    font-family: var(--font-secondary-header-size);
    text-transform: uppercase;
    font-weight: 500;
}

.left-menu-top{
    display: flex;
    align-items: center;
    gap: 25px;
}

.case-logo{
    padding-left: 25px;
    border-left: 1px solid #00000050;
}



.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 40px;
	gap: 25px;
}


.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;
    }
}


/* 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(--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);
  }



/*-------- SEARCH BOX STYLES--------------------*/

.search-box{
    background-color: #fff;
    border-radius: 3px;
    padding: 20px;

    h2{
        margin-bottom: 25px;
    }
}

.searchbox-item{
background-color: var(--color-background-accent-lgt);
padding: 12px 15px;

input,select{
    border: none;
    background-color: transparent;
    font-family: var(--font-header);
    color: #505050;
    font-size: 16px;
    text-transform: uppercase;
    box-sizing: content-box;
    width: 100%;
    outline: none;
}

input::placeholder{
    color: #505050;
}

label{
    color: #00000075;
    font-size: 12px;
    font-family: var(--font-body);
}

}

.searchbox1{
    width: 25%;
    border: 1px solid #D2D2D2;
    background-color: #FDFDFD;
}

.searchbox2{
    width: 40%;
    border: 1px solid #D2D2D2;
    background-color: #FDFDFD;
}


.search-box-container{
justify-content: space-between;
align-items: center;
gap: 20px;

button{
    background-color: var(--color-secondary);

    a{
        color: #fff !important;
        font-family: var(--font-header);
        text-transform: uppercase;
        font-size: .805rem;
        padding: 15px 30px;
        font-weight: 700;
        white-space: nowrap;
        letter-spacing: 1px;
        cursor: pointer;
    }
}
}

.search-text{
    font-family: var(--font-header);
    color: var(--color-primary);
    text-transform: uppercase;
}





/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 150px 40px;
    background-size: cover;

    .button-container{
        justify-content: center;
        margin-top: 0px;
    }

}

.home-title{
    max-width: 1200px;
    margin: 0 auto;

    .image-container{
        width: 80%;
        margin: 0 auto;
        margin-top: -70px;
    }



    h1{
        text-align: center;
        line-height: 130px;
    }
}

.title-span{
    font-family: var(--font-header);
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 75px;
    display: block;
}

.title-span:after{
    content: "";
    width: 60px;
    height: 1.5px;
    background-color: var(--color-primary);
    display: block;
    margin-top: 5px;
}

.cover{
    background-color: var(--color-body-light);
    color:var(--color-black);
    padding: 75px 40px;
    background-size: cover;

    .title-span{
        margin-bottom: 25px;
    }

    h1{
        font-size: var(--font-header-size-medium);
    }
}

.category-section{
    .flexy{
        gap: 15px;
    }

    .col-4{
        background-color: var(--color-white);
        padding: 25px;
        color: var(--color-black);

        span{
            text-transform: uppercase;
            font-weight: 400;
            font-size: 18px;
            font-family: var(--font-header);
            color: var(--color-primary);
        }

        h2{
            font-size: 24px;
            font-weight: 400;
            margin: 0px;
        }

        .image-container{
            width: 80%;
        }

        i{
            background-color: var(--color-primary);
            color: var(--color-white);
            font-size: 12px;
            padding: 10px;
            float: right;
        }
    }
}

.category-title{
    margin-top: 35px;
}

.schedule-service{
    margin-top: 50px;

    .flexy2{
        align-items: center;
    }

    p{
        max-width: 430px;
    }
}

.parts-about-section{
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.95) 100%), url(/siteart/brothers_implement_store.JPEG);
    background-size: cover;

    .flexy2{
        align-items: center;
    }

    .col-4{
        background:linear-gradient(180deg, rgba(0, 0, 0, 0.24) 16.75%, rgba(0, 0, 0, 0.60) 65.44%), url(/siteart/parts_counter.jpg);
        color: var(--color-white);
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px;
        height: 500px;
    }
}

.specials-section{
    

    .flexy2{
        padding: 50px;
        background: url(/siteart/background-pattern.jpeg);
        background-blend-mode: multiply;
        background-size: cover;
        position: relative;
        align-items: center;
    }

    .title-span{
        margin-bottom: 30px;
    }

    .image-container{
        width: 100%;
        height: 100%;
        

        img{
        height: 100%;
        object-fit: cover;
        }
    }

    .col-2-lrg, .col-2-sml{
        position: relative;
        z-index: 2;
    }

    p{
        max-width: 600px;
    }
}

.red-overlay{
    background-color: var(--color-primary);
    opacity: 92%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}




.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);
    color: #000;
}

.form-full-width input{
    width: 100% !important;
    box-sizing: border-box;
}



/* Typed text inside inputs */
.form-field-flex input[type="date"] {
    color: #878787 !important; /* Black text */
}

/* Placeholder text inside inputs */
.form-field-flex input[type="date"]::placeholder {
    color: #878787 !important; /* Black placeholder */
}

/* Typed text inside inputs */
.form-field-flex input[type="time"] {
    color: #878787 !important; /* Black text */
}

/* Placeholder text inside inputs */
.form-field-flex input[type="time"]::placeholder {
    color: #878787 !important; /* Black placeholder */
}


#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 5px;
    padding: 10px 10px;
    font-family: var(--font-body);
}

input.submit-button{
    background-color: var(--color-primary);
    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: 500;
    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 --------*/

.contact-section{
    p{
        max-width: 500px;
    }
}

.phone-info-container{
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;

    i{
        color: var(--color-primary);
    }

    a{
        color: var(--color-black);
    }
}

.google-maps{
    
}

.brand-contact{
    padding-top: 0px;
}



/*-------- ABOUT STYLES --------*/
.about-section{

    .image-container{
        height: 450px;
        overflow: hidden;
        margin-bottom: 50px;

        img{
            object-fit: cover;
            object-position: top;
            height: 100%;
        }
    }

}

/*-------- SERVICE STYLES --------*/

.service-section{

    ul{
        margin-left: 30px;
        margin-top: 25px;
    }
}




.contact-main{
    .title-span{
        margin-bottom: 25px;
    }
}


/*-------- SERVICE STYLES --------*/
.financing-page{
    .button-container{
        margin-top: 25px;
    }
}





/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--font-body);
    background-color: var(--color-body-light);
    padding-top: 75px;

    a{
    font-family: var(--font-body);
   
    }

    ul{
        list-style-type: none;
    }

    .maxi{
        padding: 0px 40px;
    }

}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 0px;
    flex-wrap: wrap;
}

.footer-logo{
    width: 268px;

    img{
        width: 100%;
    }
}

.left-footer{

    p{
        max-width: 400px;
    }

}

.right-footer{
    display: flex;
    gap: 75px;
    flex-wrap: wrap;

    ul li a{
        line-height: 32px;
        font-weight: 500;
    }


    span{
        font-weight: 700;
    }

    a{
        color: var(--color-black);
        font-weight: 500;
    }

}



.bottom-footer{
    text-align: left;
    font-size: 14px;
    padding: 10px 40px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;

h1, h2{
    line-height: 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);
}

.faceted-search-content .selected-facets-container .selected-facet{
    background: var(--color-primary) !important;
    border-radius: 0px !important;
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1204px) {

        h1{
            font-size: 100px;;
        }
 

}

@media only screen and (max-width: 1110px) {
        h1{
            font-size: 80px;
            line-height: 90px !important;
        }

    .home-cover{
        padding: 125px 40px;

        .home-title{
            .image-container{
                margin-top: -70px;
            }
        }
    }
}

@media only screen and (max-width: 1050px){
    .category-section{
        .flexy{
            flex-wrap: wrap;
        }

        .col-4{
            width: 48%;
            box-sizing: border-box;
        }
    }
}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }

    .home-cover{
        padding: 100px 40px;
    }

            h1{
            font-size: 70px;
            line-height: 90px;
        }

        .home-cover{
            .home-title{
                .image-container{
                    margin-top: -40px;
                }
            }
        }


    .search-box-container{
        gap: 12px;
    }
}

@media only screen and (max-width: 750px) {


    h1{
        font-size: 60px;
        line-height: 70px !important;
    }

    h2{
        font-size: var(--font-secondary-header-size-medium);
    }

    .cover{
        h1{
            font-size: 52px;
        }
    }

    .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;
    }

    .searchbox1, .searchbox2, .search-box-container button{
        width: 100%;
        box-sizing: border-box;
    }

    .search-box-container{
        gap: 20px
    }


    .brand-slider-container{
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
}

@media only screen and (max-width: 625px){
    h1{
        font-size: 48px;
        line-height: 62px !important;
    }

    .home-cover{
        padding: 75px 25px;
    .home-title .image-container{
            margin-top: 0px;
        }
    } 

    .right-footer{
        gap: 25px;
    }
}

@media only screen and (max-width: 500px) {
    h1{
        font-size: var(--font-header-size-sml);
        line-height: 50px !important;
    }

    h2{
        font-size: var(--font-secondary-header-size-sml);
    }

        .brand-slider-container{
    grid-template-columns: 1fr;
}

 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .cover{
        h1{
            font-size: 46px;
        }
    }

    .footer-logo{
        width: 200px
    }

    .specials-section .flexy2{
        padding: 25px;
    }

    .parts-about-section .col-4{
        height: 300px;
    }
}

@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }

        .cover{
        h1{
            font-size: 38px;
        }
    }
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



