﻿/***** 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: 50px 40px;
}

button{
    border: none;
    background-color: #EE8D00;
    transition:.25s;
    border-radius: 20px;
}

button a{
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    color: #fff;
    padding: 10px 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
}

button:hover{
    background-color: #F3A128;
}

button:hover a{
}

.secondary-btn{
    border: none;
    background-color: #fff;
    transition:.25s;
}

.secondary-btn:hover{
    background-color: #ffffff75;
    color: black;
}

.secondary-btn a{
    color: #000;
    padding: 5px 0px;
}

.secondary-btn a:hover{
    color: #000 !important;
    opacity: .90;
}

.secondary-btn a span{
    padding-bottom: 5px;
}

.secondary-btn:hover a{
    color: #fff;
}

.drk-background{
    background-color: black;
    color: white;
}

.light-background{
    background-color: gray;
}

.sr-only{
	white-space: nowrap;
}


/*-------- 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%;
}




/*-------- BODY STYLES --------*/

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

h1{
    font-family: "Wittgenstein", serif;
    font-size: 60px;
    font-weight: 400;
}

h2{
    font-family: "Wittgenstein", serif;
    font-weight: 400;
    font-size: 36px;
}

h3{
    font-family: "Wittgenstein", serif;
    font-weight: 400;
}

a span{
    border-bottom: 1px solid #00000075;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}





/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 0px;
    gap: 25px;
    height: 75vh;
    position: relative;
}

.hero-slider{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	
	.slick-slide{
		margin: 0px !important;
		padding: 0px !important;
	}
}

.hero-image{
	height: 75vh;
}


.hero-image img{
	    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
	margin: 0px !important;
	padding: 0px !important;
}

.cover{
    color:#000;
    padding: 50px 40px 0px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-1{
    bottom: 40px !important;
}

.section-1, .section-4{
    align-items: center !important;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
    position: absolute;
    z-index: 99;
    padding: 40px 40px;
    bottom: 0px;
}

.section-1 h1{
    font-size: 36px;
    font-weight: 400;
}

.section-1 div:last-of-type{
    float: right;
}

.section-2{
    background-color: #F8F2ED;
    padding-top: 130px;
    position: relative;
    margin-top: -110px;
	
	/*-------------SLIDER----------------------*/

.slider{
	display: flex;
	justify-content: center;
	gap: 50px !important;
}

  .slick-slide {
      margin: 0 10px;
  }

  /* the parent */
  .slick-list {
      margin: 0 -27px;
  }

  .slick-button {
    color: #EE8D00;
    background-color: transparent;
    padding: 5px 15px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    cursor: pointer;
    bottom: 40px;
}

.slick-button:hover{
    background-color: transparent;
}

.slick-prev {
    left: calc(-25px - 65%);
}

.slick-next {
    left: calc(15px - 65%);
} 

.slider-link-contain{
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 0 10px;
}

.slider-link-contain div{
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}

.slider-link-contain a{
	color: #000 !important;
    display: flex;
    align-items: baseline;
    gap: 15px;
    transition: .25s;
}

.slider-link-contain span{
    padding-bottom: 5px;
}

.slider-link-contain a:hover span{
    opacity: .85;
}

.slider-link-contain a i{
    color: #EE8D00;
    font-size: 12px;
}

.slider-link-contain a:hover{
    gap: 30px;
}

.slider li img{
	width: 100%;
}

}

.section-3{
    padding: 0px;
    position: relative;
}

.section-3 .flexy{
    gap: 0px;
}

/*
.section-3 .flexy{
    gap: 0px;
}
*/

.about-image{
    padding: 0px;
    overflow: hidden;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.who-is{
padding: 50px 40px 225px;
}

.section-4{
    background-color: #463D31;
    color: #fff;
    gap: 25px !important;
}

.section-4 div:last-of-type{
    float: right;
}

/* Button Spacing */
.who-is button{
    margin-top: 50px;
}

.consignment-button button{
    margin-top: 30px;
}

.image-container{

}

.image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------CONTACT US---------*/
.contact-section{
    gap: 50px;
}

.contact-information{
    margin-top: 30px;
}

.contact-information a{
    color: #000;
    display: flex;
    gap: 10px;
}

.contact-information span{
    font-family: "Wittgenstein", serif;
    font-size: 18px;
    line-height: 40px;
}

.contact-information i{
    color: #EE8D00;
}

.inventory-blurb{
    background-color: #2B251C;
    color: #fff;
    align-items: center;
    /* border-bottom: 1px solid #ffffff25; */
}

.inventory-blurb div:last-of-type{
    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: 1px solid #8B8B8B25 !important;
    width: 50%;
    padding: 10px 10px;
    border-radius: 0px;
    font-family: "Manrope", sans-serif;
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 0px;
    padding: 10px 10px;
    font-family: "Manrope", sans-serif;
}

input.submit-button{
    background-color: #EE8D00;
    border: none;
    color: #fff !important;
    padding: 10px 25px;
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    transition: .25s;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
}

div#submit-btn{
    margin-top: 25px;
}

.CaptchaPanel{
    margin: 0px !important;
    padding: 0px !important;
    text-align: left !important;
}

.CaptchaMessagePanel{
    font-weight: 400 !important;
}

.CaptchaWhatsThisPanel a{
    color: #000;
    font-size: 14px;
}

.button button{
    padding: 10px 25px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.consign-form{
   padding-top: 0px;
}

.thankyou-section{
    background-color: #2B251C;
    color: #fff;
    padding: 150px 40px;
}


/*-------- FOOTER STYLES ----------------*/
.home-footer{
    background-color: #2B251C;
    position: relative;
    margin-top: -81px;
}

.home-footer .top-footer{
    padding: 125px 40px 50px;
}

footer{
    font-family: "Manrope", sans-serif;
    background-color: #2B251C;
    color: #fff;
}

footer a{
    color: #fff;
}

footer li{
    line-height: 40px;
}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 50px 40px;
}

.left-footer{

}

.right-footer{
    display: flex;
    gap: 50px;
	
	a{
		color: #fff;
font-size: 16px;
	}
	
	ul{
		list-style-type: none;
	}
	
			i{
			color: #EE8D00;
		}
}

.grid-ft{
			display: grid;
		grid-template-columns: 1fr 1fr;
}



.contact-footer a{
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-footer a span{
    border-bottom: 1px solid #ffffff75;
}

.contact-footer i{
    text-decoration: none !important;
}

.bottom-footer{
    text-align: center;
    padding: 10px 40px;
    font-size: 12px;
    border-top: 1px solid #ffffff25;
	
	a{
		color: #fff;
	}
}

.footer-link-title{
    font-family: "Wittgenstein", serif;
    font-size: 21px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
font-family: "Manrope", sans-serif;
}

.body-wrapper section{
    padding: inherit;
}

.body-wrapper p.disclaimer{
    font-size: 12px;
}

.body-wrapper a span{
    border-bottom: none;
}

.body-wrapper label{
    display: flex;
    gap: 5px;
    align-items: center;
}

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{
    padding: 10px 25px;
    border-radius: 20px;
    font-family: "Manrope", sans-serif;
}

a.view-listing-details-link.des-view-listingDetails{
    background-color: #EE8D00;
}

.faceted-search-content .selected-facets-container .selected-facet{
	background-color: #EE8D00 !important;
	border-radius: 12px !important;
	
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: #2B251C;
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: #000;
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 1030px) {
    .slick-button{
        bottom: 0px;
    }

    .section-1 h1{
        font-size: 28px;
    }

    h2{
        font-size: 28px;
    }
	
	
	.top-footer{
		flex-direction: column;
	}
	
	.right-footer{
		justify-content: space-between;
	}
}

@media only screen and (max-width: 770px) {
    .top-footer{
        flex-direction: column !important;
        gap: 50px;
    }
    
    .top-footer .col-2-sml, .right-footer{
        width: inherit;
    }

    .bottom-footer{
        text-align: left;
    }
}

@media only screen and (max-width: 750px) {
    .flexy{
        flex-direction: column !important;
    }
    
    .col-2, .col-3, .col-4 {
        width: inherit !important;
    }

    .col-2-sml, .col-2-lrg{
        width: 100%;
    }

    .section-1 div:last-of-type, .section-4 div:last-of-type, .inventory-blurb div:last-of-type{
        float: inherit;
    }

    .section-1, .section-4, .inventory-blurb{
        align-items: flex-start !important;
        padding: 25px 35px;
    }

    .who-is{
        padding-bottom: 260px;
    }

    .who-is button{
        margin-top: 25px;
    }

    .section-3{
        gap: 0px;
    }
    
    .no-break{
        display: none;
    }

    .section-2{
        padding-bottom: 100px;
    }

    .slick-button{
        bottom: -60px;
        margin: 0 auto;
    }

    .slick-prev{
        left:0px;
    }

    .slick-next{
        left: 25px;
    }

    .consign-section{
        flex-direction: column-reverse !important;
    }
    
}

@media only screen and (max-width: 585px){
	
	.right-footer{
		flex-direction: column;
	}
	
	
}

@media only screen and (max-width: 500px) {
 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }
}

@media only screen and (max-width: 435px) {
    .top-footer{
        gap: 20px;
    }

    .right-footer{
        flex-direction: column;
        gap: 20px;
    }

    h1{
        font-size: 52px;
    }

    .section-1 h1{
        font-size: 22px;
    }

    h2{
        font-size: 22px;
    }

    .section-1, .section-4{
        padding: 25px;
    }

    .home-cover{
        height: 60vh;
    }
	
	.grid-ft{
		grid-template-columns: 1fr;
	}

   }

@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }

    .cover{
        padding: 50px 25px 0px;
    }

    h1{
        font-size: 36px;
    }
	
}





@media only screen and (min-width: 768px) {
	
}



