﻿/***** 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;
    --main-header:"Manrope", sans-serif;
    --second-header: "Manrope", sans-serif;
    --span-header: "Manrope", sans-serif;
    --paragraph: "Manrope", sans-serif;
  }

/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 50px 40px;
}

button{
    border: none;
    transition:.25s;
    background-color: transparent;
}

button:hover{
    background-color: #000;
    color: black;
}

button a{
    font-size: 18px;
    color: #000;
    background-color: #ffc107;
    font-family: "Barlow", sans-serif;
    padding: 6px 20px;
    text-transform: uppercase;
    font-weight: 600;
    transition:.25s;
    display: block;
}


.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: black;
    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%;
}


/*-------------SLIDER----------------------*/

.slider{
	display: flex;
	justify-content: center;
	gap: 50px !important;
    padding: 0px !important;
    position: relative;

}

.slider-container{
    height: 600px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
	
	.slick-track{
    padding: 0px !important;
    margin: 0px !important;
}

  .slick-slide {
      margin: 0px;
  }

  /* the parent */
  .slick-list {
      margin: 0px;
  }

  .slick-button {
    color: #fff;
    background-color: #4d4949;
    padding: 5px 9px 9px 9px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;

    gap: 15px;
    position: absolute;
    cursor: pointer;
    top:0px;
    bottom: 0px;
    margin: auto 0;
    z-index: 9999;
    height: 35px;
    border-radius: 5px;
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
} 

ul.slick-dots{
    display: flex;
    gap: 5px;
    position: absolute;
    z-index: 99999;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
    background-color: #4d4949;
    background: grey !important;
    width: 65px;
    border-radius: 4px !important;
    list-style: none;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 20px;
    padding: 0;
    cursor: pointer;
}
/*  */
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
   

.slick-dots button:before {
    content: "\f111";
    font-weight: 900;
    color: lightgrey;
}

.slick-dots li.slick-active button:before {
    color: black;
}

.slick-dots button:before {
    opacity: 1;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 10px;
    width: unset;
    height: unset;
    position: unset;
}
}



/*-------- BODY STYLES --------*/

body {
    font-family: "Oswald", sans-serif !important; font-style: normal !important;
}

h1{
    font-size: 52px;
    font-family: "Oswald", sans-serif !important; font-style: normal !important;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*          HEADER           */
.logo {
	max-width: 25%;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 30px 40px;
	display: flex;
	justify-content: space-between;
}

.top-links{
	gap: 25px;
}

.top-links a{
	color: #000;
}

.bottom-links a{
	color: #FFFFFF;
}


.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	gap: 25px;
	background-color: black;
}


/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.homecta .row{
    display: flex;
}

.search-row{
    display: flex;
    justify-content: center;
}

.brand-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 80%;
    margin: 0 auto;
}

.section-1{
padding: 0px;
}

.section-2{
    background-image: url(/siteart/steel.jfif);
}

/*--------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: 10px;
}

.form-field-flex input{
    border: 1px solid #8B8B8B25 !important;
    width: 100%;
    padding: 15px 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: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: barlow, sans-serif !important;
    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: 10px 15px;
    color: #fff;
    background-color: #000;
    font-family: barlow, sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
}

.inner-width{
    width: 80%;
    margin: 0 auto;
}


/*-------- CONTACT STYLES --------*/

.contact-1{
    background-color: #ebebeb !important;
}

/*-------- FOOTER STYLES ----------------*/
footer{

    .row{
        display: flex;
        justify-content: center;
        gap: 30px;
    }

}

.map-responsive{
    width: 80%;
    margin: 50px auto 100px auto;
}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 25px 40px;
}

.footer-logo{
    width: 250px;
}

.bottom-footer{
    text-align: right;
    padding: 10px 40px;
}

.bullets{
    ul{
        margin: 7px 0px 25px 40px;

        li{
            line-height: 25px;
        }

    }
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
	
	.slick-dots li{
		
		font-size: 12px !important;
	}
}

.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: red !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: #000;
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: blue;
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: red;
}


.video-container{
	margin-top: 50px;
}

/*---------- RESPONSIVE STYLES ----------*/


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
	.video-container{
		flex-direction: column-reverse;
		
		.col-2{
			width: inherit;
		}
	}
}


@media only screen and (max-width: 1015px) {
    .topemail{
        display: block !important;
    }
}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 925px) {
    .search-row{
        flex-wrap: wrap;
    
        
    .formcol{
        width: 50%;
    }
    }
}


@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }
}

@media only screen and (max-width: 880px) {
    nav.mobile .logo {
        width: 175px;
    }

    footer{
        .row{
            flex-wrap: wrap;
            justify-content: space-between;
        }
    }

    .slider-container{
        height: 450px;
    }
}


@media only screen and (max-width: 750px) {
    .flexy{
        flex-direction: column !important;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg{
        width: inherit !important;
    }

    .homecta .row{
        flex-direction: column;
    }
    
    .no-break{
        display: none;
    }

    .formcol{
        flex-direction: column;
    }

    .brand-grid{
        grid-template-columns: 1fr 1fr;
    }

    .slider-container{
        height: 400px;
    }

    .form-field-flex{
        flex-direction: column;
    }
}


@media only screen and (max-width: 500px) {



    div#captcha{
        width: inherit;
    }

    .brand-grid{
        grid-template-columns: 1fr;
        width: 90%;
    }

    .slider-container{
        height: 350px;
    }
}

@media only screen and (max-width: 475px){
    .search-row{
        
    .formcol{
        width: 100%;
    }
    }
}

@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }

    .whitewrap{
        padding: 25px !important;
    }

    .slider-container{
        height: 300px;
    }
	
}