﻿/***** 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;
    border-radius: 20px;
    background-color: #EB9F30;
    transition:.25s;
}

button:hover{
    background-color: #E38C49;
    color: #fff;
}

button a{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000!important;
    padding: 10px 25px;
    font-weight: 500;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
}

button:hover a{

}

.secondary-btn{
    border: none;
    background-color: transparent;
    transition:.25s;

    a{
        color: #3A3A3A;
        display: flex;
        gap: 10px;
        align-items: center;

        i{
            background-color: #21928F;
            color: #fff;
            font-size: 12px;
            padding: 6px 7px;
            border-radius: 13px;
            transition:.25s;
        }
    }
}

.secondary-btn:hover{
    background-color: transparent;
}

.secondary-btn:hover a{
    background-color: transparent;
}

.secondary-btn:hover i{
    background-color: #EB9F30;
}

.drk-background{
    background-color: black;
    color: white;
}

.lgt-background{
    background-color: gray;
}

.curved-btn{
	background-color: #EB9F30;
	padding: 10px 25px;
	border-radius: 25px;
	border-top-right-radius: 0px;
    color: #000;
    transition: .25s;

	a{
		color: #fff !important;
	}
}

.curved-btn:hover{
    background-color: #E38C49;
}

.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: 25px !important;
    margin-top: 35px;
}

  .hp-cat-slide .slick-slide {
      margin: 0 33px; 
  }

  /* the parent */
  .slick-list {
    margin: 50px;
  }

  .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-link-contain{
    border-radius: 25px;
    background-color:#F6EAD9;
	display: flex !important;
    align-items: center;
	gap: 25px;
	margin: 0 -10px;
    padding: 20px; 

    img{
        width: 100%;
    }

    button{
        margin-top: 25px;
    }
}

/*-------- BODY STYLES --------*/

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;

    p{
        font-family: "Manrope", sans-serif;
    }
}



h1{
    font-size: 72px;
    font-weight: 600;
}

h2{
    font-size: 52px;
    font-weight: 600;
    line-height: 68px;
}

h3{
    font-weight: 600;
    color: #3A3A3A;
	text-decoration: none!important;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


/*          HEADER           */
.logo {
	max-width: 250px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #E7A84B;
	color: #000!important;
	display: flex;
	justify-content: space-between;
    padding-right: 40px;

    a{
        color: #000;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    a:first-of-type{
        padding: 17px 22px 15px 40px;
        border-top-right-radius: 30px;
        background-color: #DE8A0E;

        i{
            color: #FFB03B;
        }
    }
}

.top-links{
	gap: 25px;
}

.top-links a{
	color: #000;
}


.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 40px;
	gap: 25px;
    position: relative;
    z-index: 4;
}
.skytrak{
	align-self: center;
}

/*--------HOME STYLES--------------------*/



.home-cover{
    padding: 0px;
    background-color: #4B2F21;
    color: #fff;
    position: relative;
    align-items: center;
 	overflow: visible;

    .container{
        display: flex;
        gap: 25px;
        padding: 100px 40px 150px 40px;
    }

    h1{
        color: #fff;
		font-size: 56px;
    }

    h1 span{
        color: #E7A84B;
    }

    img{
        width: 100%;
    }

    .col-2:last-child{
        width: 60%;
        transform: scaleX(-1);
        position: absolute;
        bottom: -40px;
        right: 40px;
        z-index: 2;
    }

    button{
        margin-top: 50px;
    }
}

.cream-wave{
    width: 100%;
    position: absolute;
    bottom: -8px;
    left: 0px;
    right: 0px;
    overflow-x: hidden;
}

.blue-wave{
    width: 100%;
    overflow-x: hidden;
}

h1 span, h2 span, h3 span{
    font-style: italic;
   
}

.cover{
    background-color: #4B2F21;
    color:#fff;
    padding: 100px 40px 170px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
	z-index: -1;

    h1{
        color: #fff;

        span{
            color:#E7A84B;
        }
    }

    img{
        width: 100%;
    }
}

.cream-section{
    background-color: #FBF7F1;

    a{
        color: black;
    }


}



.section-1{

}

.section-2{
    background-color: #FBF7F1;
    padding-right:0px;
   /* margin-top: -30px; */
    position: relative;
    padding-top: 100px;

    h2{
        text-align: center;
    } 
    
    .button-container{
        justify-content: flex-end;
        margin-top: 25px;
    }
}

.button-container{
    display: flex;
}

.section-3{
    align-items: center;
    gap: 50px;

    img{
        width: 100%;
    }

    .button-container{
        margin-top: 50px;
        flex-wrap: wrap;
        gap: 5px;
    }

}

.section-3 .col-2-lrg{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 25px;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50px;
    }

    .col-2:last-child{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}

.section-4{
    color: #fff;
    padding-top: 0px;
    position: relative;
    align-items: center;
    padding: 0px;
    margin-top: 50px;
    z-index: 1;

    h2{
        color: #fff;  
    }

    button{
        margin-top: 50px;
    }

    img{
        width: 100%;
    }

    .col-2:last-child{
        position: absolute;
        top: -50px;
        right: 40px;
        z-index: 9;

    }
}

.section-4-container{
    background-color: #1A8380;
    padding: 50px 40px;
    margin-top: -8px;

    p{
        width: 90%;
    }
}

.section-5{
    background-color: #FBF7F1;
    text-align: center;
}

.brand-container{
    display: flex;
    gap: 15px;
    margin-top: 50px;
	justify-content: center;

    img{
        width: 75%;
        padding: 25px;
        align-self: center;
    }

    .col-4{
        background-color: #fff;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.brand-title{
    border-top: 1px solid #00000010;
    padding: 10px 25px;
}

/*--------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: 15px;
}

.form-field-flex input{
    border: none !important;
    width: 50%;
    padding: 15px 20px;
    border-radius: 30px;
    font-family: "Manrope", sans-serif;
}

#formpage textarea{
    border: none !important;
    border-radius: 30px;
    padding: 15px 20px 50px;
    font-family: "Manrope", sans-serif;
}

input.submit-button{
    background-color: #EB9F30;
    border: none;
    color: #fff !important;
    padding: 10px 25px;
    border: none;
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    border-radius: 25px;
    border-top-right-radius: 0px;
    font-style: normal;
    font-weight: 500;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

div#submit-btn{
    margin-top: 25px;
	color:#000;
}

.button button{
    padding: 10px 25px;
    color: #000;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    font-size: 16px;
    border-top-right-radius: 0px;
    font-weight: 500;
}



/*-------- CONTACT STYLES --------*/
.google-maps{
    
}

.contact-section{
    gap: 75px;

    .secondary-btn a{
        padding-left: 0px;
 
    }
}

.thank-section .button-container{
    margin-top: 50px;
}

/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: "Poppins", sans-serif;
    background-color: #FBF7F1;

    p{
        font-family: "Manrope", sans-serif;
        margin-bottom: 40px;
    }

}

.top-footer{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    padding: 25px 40px;
}

.footer-logo{
    width: 250px;

    img{
        width: 100%;
    }
}

.left-footer{

}

.right-footer{
    display: flex;
    gap: 50px;

    span{
        font-size: 20px;
        font-weight: 600;
    }

    ul li{
        list-style-type: none;
        display: flex;
        align-items: center;
        gap: 5px;
        line-height: 35px;

        i{
            color:#EB9F30;
            font-size: 14px;
        }

        a{
            display: flex;
            align-items: center;
            gap: 5px;
        }
    }

    a{
        color: #000;
    }

    ul:last-child i{
        color: #21928F;
    }
}

.bottom-footer{
    text-align: left;
    padding: 10px 40px;
    font-size: 14px;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;
}

.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: 20px !important;
    background-color: #21928F !important;
    font-family: "Poppins", sans-serif;
}

button.selected-facet.ts-button {
    border-radius: 20px !important;
    background-color: #21928F !important;
    font-family: "Poppins", sans-serif;
}

.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: 20px;
    padding: 10px 25px !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

a.view-listing-details-link.des-view-listingDetails{
    background-color: #21928F;
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: #21928F;
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: transparent;
    color: black;
}

a.video-chat.des-video-chat.collapsible-contact-list-item:hover{
    background-color: transparent;
}

span.listing-widget__text {
    text-align: center;
}

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1470px) {
	
	.home-cover h1{font-size: 48px;}
}




@media only screen and (max-width: 1280px) {
	.home-cover h1{font-size: 42px;}
	
    h1{
        font-size: 62px;
    }

    h2{
        font-size: 48px;
    }

}

@media only screen and (max-width: 1130px) {
    h1{
        font-size: 56px;
    }

    h2{
        font-size: 38px;
        line-height: 48px;
    }

    .section-2{
    /*    margin-top: -40px; */
        padding-top: 50px;
    }
}

@media only screen and (max-width: 1050px) {
    h1{
        font-size: 48px;
    }

    .slider-link-contain{
        flex-direction: column-reverse;

        .col-2{
            width: inherit;
        }
    }

    .home-cover {
        .container {
            padding: 80px 40px 130px 40px;
        }

        .col-2:last-child{
            bottom: -20px;
        }
    }

   .section-4 .col-2:last-child {
        top: inherit;
        bottom: -43px;
    }
}



@media only screen and (max-width: 950px){
    h1{
        font-size: 42px;
    }

    .section-2{
      /*  margin-top: -50px; */
        padding-top: 70px;
    }

    .home-cover {
        .container {
            padding: 60px 40px 130px 40px;
        }

        .col-2:last-child{
            bottom: -10px;
        }
    }

    .section-4 .col-2:last-child {
        bottom: -30px;
    }
}


/*----------    MOBILE MENU    ----------*/

@media only screen and (min-width: 1550px){
	.section-4{
		.col-2:last-child{
			width: 36% !important;
			top
		}
	}
	
	.home-cover{
		.container{
        height: 50vh !important;
    	}
	}
}


@media only screen and (min-width: 1350px){
	.section-4{
		.col-2:last-child{
			width: 45%;
		}
	}
}

@media only screen and (max-width: 930px) {
    .logo {
        width: 200px;
    }

    
    .home-cover {
        .col-2:last-child {
            bottom: 30px;
        }
    }
}

@media only screen and (max-width: 800px){
    .brand-container{
        display: grid;
        grid-template-columns: 1fr 1fr;

        .col-4{
            width: inherit;
        }
    }

}


@media only screen and (max-width: 790px) {
    h1{
        font-size: 52px;
    }

    h2{
        font-size: 42px;
        line-height: 48px;
    }

    .home-cover {

        .container{
            flex-direction: column-reverse;
            align-items: center;
        }
        
        .col-2{
            width: inherit;
        }

         .col-2:last-child {
            position: static;
            width: 80% !important;
        }
    }

    .flexy{
        flex-direction: column !important;
    }

    .section-2{
        padding: 50px 40px;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg{
        width: inherit !important;
    }
    
    .no-break{
        display: none;
    }

    .section-4-container{
        flex-direction: column-reverse !important;
        align-items: center !important;
        padding-bottom: 75px;
    }

    .section-4 .col-2:last-child {
        position: static;
        width: 80% !important;
    }

    .top-footer{
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .footer-logo{
        width: inherit;

        img{
            width: 250px;
        }
    }
}

@media only screen and (max-width: 500px) {
    h1{
        font-size: 42px;
    }

    h2{
        font-size: 32px;
    }

 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .logo {
        width: 175px;
    }

    .section-3 .col-2-lrg{
        flex-direction: column;
    }

    .cream-wave{
        width: inherit;
        left: -5px;
        img{
            width: 115%;
        }
    }

    .blue-wave{
        width: inherit;
        position: absolute;
        left: -5px;
        top: -38px;

        img{
            width: 115%;
        }
    }

}

@media only screen and (max-width: 450px){
    .right-footer{
        flex-direction: column;
        gap: 25px;
    }

    .brand-container{
        grid-template-columns: 1fr;
    }

    .blue-wave{
        top: -36px;
    }
}

@media only screen and (max-width: 375px) {

    h1{
        font-size: 32px;
    }

    h2{
        font-size: 30px;
    }

    section{
        padding: 50px 25px;
    }

    .blue-wave{
        top: -28px;
    }

    .footer-logo img{
        width: 175px;
    }
	
}

