﻿/***** 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: #000000;
        --color-secondary: #ffffff;
        --color-dark-background: #ff0000;
        --color-light-background: #ff0000;
        --color-body-dark: #000000;
        --color-body-light: #000000;
        --color-primary-button: #000000;
        --color-secondary-button: #000000;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #000000;
        --font-header: "Manrope", sans-serif;
        --font-secondary: "Manrope", sans-serif;
        --font-body: "Manrope", sans-serif;
        --font-header-size: 72px;
        --font-header-size-medium: 48px;
        --font-header-size-sml: 32px;
        --font-header-span-size: 21px;
        --font-header-span-size-sml: 18px;
        --font-secondary-header-size: 48px;
        --font-secondary-header-size-medium: 36px;
        --font-secondary-header-size-sml: 18px;
        --font-body-size: 16px;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --padding-button: 10px 15px;
}


/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 50px 40px;
}

button{
    border: none;
    background-color: var(--color-primary-button);
    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: var(--color-primary-button);
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}

.btn:hover{
    background-color: var(--color-primary-button);
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}


.secondary-btn{
    border: none;
    background-color: var(--color-secondary-button);
    transition:.25s;
}

.secondary-btn:hover{
    background-color: var(--color-button-hover);
    color: var(--color-body-light);

    a{
    color: var(--color-body-light);
    }
}

.drk-background{
    background-color: var(--color-dark-background);
    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: 25px;
    flex-wrap: wrap;
}

.maxi{
    max-width: 1600px;
    margin: 0 auto;
}

.maxi-2{
    max-width: 1350px;
    margin: 0 auto; 
}


/*-------- 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%;
}

.image-container{

    img{
        width: 100%;
    }
}



/*-------------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: 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;
}
}






/*-------- BODY STYLES --------*/

body {
 font-family: var(--font-body);
}

h1, h2, h3{
    font-family: var(--font-header);
}

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);
    margin-bottom: 10px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}





/*          HEADER           */
.logo {
	width: auto;
    max-width: 170px;
    padding: 15px 5px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 5px 40px;
	display: flex;
	justify-content: space-between;
}

.top-links{
	gap: 25px;
}

.top-links a{
	color: #000;
}

.bottom-links{
	gap: 41px;
    margin: 0 auto 0 30%;
}

.bottom-links a{
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    color: #034360 !important;
    letter-spacing: 1px;
}


.discover-text{
    font-family: "museo-slab", serif;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: #034360 !important;

    a{
        color: #0072ab !important;
        text-transform: capitalize;
        line-height: 30px;
        margin-top: 6px !important;
    }
}


.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0px;
	gap: 25px;
	background-color: #fff;
    max-width: 90.5%;
    margin: 0 auto;
}

.models-tabs{
    display: flex;
    justify-content: center;
    gap: 25px;

    img{
        width: 100%;
    }

    li{
        width: 25%;
    }
}

.category-title{
    text-align: center;
    font-family: "museo-slab", serif;
}

.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;
    }
}


.click{
    cursor: pointer;
}


/* 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);
  }




/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 150px 40px;
    background-size: cover;
    background-color: #000;
    color: #fff;

}

.home-title{
    max-width: 700px;
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 100px 40px;
    background-size: cover;
}

.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);
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 5px;
    padding: 10px 10px;
    font-family: var(--font-body);
}

input.submit-button{
    background-color: #000;
    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: 600;
    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 --------*/

.google-maps{
    
}


.banner-blurb{
    background: #034360;
    color: white;
    padding: 15px 25px;
    text-align: center;
    font-size: 12px;

    p{
        max-width: 1200px;
        margin: 0 auto;
    }
}



/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--font-body);
        background-image: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%), url(/siteart/BO_FooterImage_10HD_MidGround_web.webp);
background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;

    ul{
        list-style-type: none;
    }

}

.footer-content{
    margin: 180px auto 0 auto;
    width: 90%;
    max-width: 1920px;
    background-color: rgba(3, 67, 96, 0.9);
    border: 1px solid #FFFFFF;
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
    z-index: 15 !important;
    position: relative;
    background-color: rgba(3, 67, 96, 0.75) !important;
    backdrop-filter: blur(5px) !important;
    transform: scale(1) !important;
   padding: 2% 0;
   display: flex;
   color: #fff;

   a{
    color: #fff;
   }
}



.footer-brand{
    width: 25%;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    line-height: 30px;
}

.footer-social{
    margin-top: 15px;
}

.footer-links{
    width: 75%;
}


.footer-top{
    font-family: "museo-slab", serif;
    padding-top: 40px;

    a{
        color: #034360 !important;
        border-width: 0px !important;
        font-size: 50px;
        font-family: 'Museo Slab 900', Helvetica, Arial, Lucida, sans-serif;
        text-transform: uppercase !important; 
        border-radius: 0px;
        transition: all 300ms ease 0ms;
        text-align: center;
        width: fit-content;
        display: block;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, .75) !important;
        backdrop-filter: blur(5px) !important;
        transform: scale(1) !important;
        font-family: "museo-slab", serif;
        font-weight: 800;
        border: 6px outset #0072AB !important;
        box-shadow: 0px 12px 18px -6px rgba(44, 56, 84, 0.5);
        padding: 0.3em 2.5em;
        line-height: 1.7em;
        position: relative;
        z-index: 3;
    }
}

.footer-logo{
    width: 60%;
    margin: 0 auto;
}


.rv-pic{
        background-position: center bottom 25%;
    background-image: url(https://bontrageroutdoors.com/wp-content/uploads/2025/02/BO_FooterImage_10HD_ForeGround_web.png);
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    z-index: 10 !important;
    position: absolute !important;
    top: 0px;
    bottom: auto;
    left: 0px;
    right: auto;
}

.back-scene{
    background-position: center bottom 25%;
    background-image: url(/siteart/BO_FooterImage_10HD_ForeGround_web.webp);
    background-size: cover;
    height: 90%;
    width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.front-scene{
    background-position: center bottom 25%;
    background-image: url(/siteart/BO_FooterImage_10HD_Background_web.jpg);
    background-size: cover;
    height: 90%;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.bottom-footer{
    text-align: center;
    padding-top: 5px;
    padding-bottom: 7px;
    background-color: #034360 !important;
    color: #fff; 
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    position: relative;
    z-index: 2;
    margin-top: 75px;
}



.footer-nav{
    display: flex;
    gap: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    margin-top: 15px;
    line-height: 35px;
    margin-left: 10px;
}

.footer-links{

    span{
        font-family: 'Sanchez', Georgia, "Times New Roman", serif;
        font-size: 17px;
        font-weight: bold;
    }
}

.footer-social{
    i{
        background-color: #fff;
        padding: 10px 8px;
        border-radius: 50%;
        color: #0b2154;
        font-size: 18px;
        box-sizing: content-box;
    }
}



/*----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);
}

/*---------- RESPONSIVE STYLES ----------*/


@media only screen and (max-width: 1200px) {

}


@media only screen and (max-width: 980px){
    .footer-content{
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 5% 0;
        margin: 90px auto 0 auto;
    }

    .footer-nav{
        justify-content: center;
    }

    .footer-links{
        text-align: center;
    }

    .footer-brand{
        width: 75%;
    }

}



/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }


}

@media only screen and (max-width: 770px){
    .footer-nav{
        flex-direction: column;
        margin: 0px;
        gap: 5px;
    }
}

@media only screen and (max-width: 750px) {

    h1{
        font-size: var(--font-header-size-medium);
    }

    h2{
        font-size: var(--font-secondary-header-size-medium);
    }

    .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;
    }

    .footer-top a{
        font-size: 24px;
    }
}

@media only screen and (max-width: 500px) {
    h1{
        font-size: var(--font-header-size-sml);
    }

    h2{
        font-size: var(--font-secondary-header-size-sml);
    }

 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

	
}

@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



