﻿/***** 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: #EB1D24;
        --color-dark-background: #000000;
        --color-light-background: #F8F8F8;
        --color-primary-button: #EB1D24;
        --color-secondary-button: #000000;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #000000;
        --font-header: sinter, sans-serif;
        --font-secondary: sinter, sans-serif;
        --font-body: "Manrope", sans-serif;
        --font-header-size: 80px;
        --font-header-size-medium: 52px;
        --font-header-size-sml: 28px;
        --font-header-span-size: 18px;
        --font-header-span-size-sml: 16px;
        --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: 12px 25px;
}


/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 75px 50px;
}

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;
    }
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.bready{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    position: relative;
    z-index: 2;

    a{
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        font-family: var(--font-header);
        font-weight: 700;
    }

}

.h2-sml{
    font-size: 36px;
}


.btn{
    font-family: var(--font-body) !important;
    font-size: var(--font-body-size) !important;
    background-color: var(--color-primary-button);
    color: var(--color-white);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    transition:.25s;
    border-radius: 25px;
    font-weight: 700 !important;
    width: fit-content;

    i{
        color: var(--color-secondary);
        font-size: 10px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }


}

button:hover{
    background-color: #ca050c;
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}

.btn:hover{
    background-color: #ca050c;
}

.btn:hover i{
    transform: rotate(360deg);
}


.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);
    }
}

.black-btn{
    background-color: var(--color-black);
    color: #fff;

}

.transparent-btn{
    background-color: transparent;
    padding: 0px;

    &:hover{
        background-color: transparent;
        color: var(--color-white);
    }
}

.text-btn{
    color: var(--color-black);
       background-color: transparent;
    padding: 0px; 

    &:hover{
        background-color: transparent;
    }
}

.drk-background{
    background-color: var(--color-dark-background);
    color: white;
}

.lgt-background{
    background-color: var(--color-light-background);
}

.red-background{
    background-color: var(--color-secondary);
    color: #fff;
}

.accent-background{
    background-color: var(--color-primary);
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.maxi{
    max-width: 1350px;
    margin: 0 auto;
}

.maxi-2{
    max-width: 800px;
    margin: 0 auto; 
}

.maxi-text{
    max-width: 400px;
}

/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 25px;
}

.flexy2{
    display: flex;
    gap: 100px;
}

.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; */
    position: relative;
    z-index: 2;

    &::before,
    &::after {
        content: "";
        position: absolute;
        background-color: #EB1D24;
        z-index: 1;
    }

    &::before {
        top: -6px;
        left: 0;
        width: 95%;
        height: 6px;
    }

    &::after {
        top: -6px;
        left: -6px;
        width: 6px;
        height: 95%;
    }

      .slick-slide {
      margin: 0 27px;
    }

    img{
        height: 350px;
        object-fit: cover;
    }




  /* the parent */
  .slick-list {
      margin: 0 -27px;
      position: relative;
      z-index: 9;
  }

  .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);
    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);
    margin-bottom: 10px;
}

h3{
    font-size: 17px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}





/*          HEADER           */
.logos-container{
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
	max-width: 280px;
}

.logo img {
	width: 100%;
}

.brand-header-logos{
    display: flex;
    align-items: center;
    gap: 15px;

    a{
        width: 100px;
    }

    img{
        width: 100%;
    }
}

a.npk-logo{
    width: 80px;
}


.top-nav {
	background-color: var(--color-primary);
	color: #000;
	padding: 5px 40px;
    padding-right: 0px;
	display: flex;
    align-items: center;
	justify-content: space-between;
}

.top-links{
    display: flex;
	gap: 10px;
    list-style: none;
    justify-content: flex-end;
    align-items: center;


    a{
        	color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
    }
}

.top-socials{
    gap: 5px;
    margin: 15px 25px;

    i{
        background-color: #fff;
        color: #000;
        padding: 4px 2px;
        border-radius: 2px;
        font-size: 12px;
    }
}


.top-links-menu{
    background-color: var(--color-white);
    padding-left: 100px;
    gap: 0px;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    padding-right: 50px;

    a{
        color: #000;
        display: flex;
        align-items: center;
        gap: 7px;
        font-weight: 700;
        border-right: 1px solid #F0F0F0;
        padding: 8px 25px;

        
    }

    i{
        font-size: 8px;
        color: var(--color-secondary);
    }

    li:last-child a{
        border-right: none;
    }
}

.top-right{
    margin-bottom: 15px;
}

.bottom-links{
	gap: 25px;
}

.bottom-links a{
	color: #FFFFFF;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-family: "Mohave", sans-serif;
    font-size: 20px;

    i{
        font-size: 10px;
    }

}

.menu-searchbar{
    background-color: #1E1E1E;
    padding: 10px 25px 10px 35px;
    position: relative;

    a{
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        font-size: 18px;
        font-weight: 600 !important;
        font-family: var(--font-body);
        text-transform: uppercase;
    }

    i{
        color: var(--color-secondary);
        font-size: 9px;
    }
}



.phone-number-container{
    display: flex;
    gap: 10px;
    padding-right: 15px;
}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 0px  0px 40px;
	gap: 25px;
	background-color: var(--color-secondary);
}


.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;
            color: var(--color-secondary);
        }
    }

    .button-container{
        justify-content: center;
    }
}


/* Search Header */
/*---INVENTORY SEARCH IN HEADER---*/


#search {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 999999999999;
	  position: absolute;
	display: flex;
	  align-items: center;
	  justify-content: center;
  }
  
  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(--color-secondary);
    }

  }
  .search-btn img {
	width: 35px !important;
  }

  #search-header input {
	caret-color: #000;
  }
  .searchTerm::placeholder { 
	color: #fff;
	opacity: 1; 
  }
  .searchTerm:-ms-input-placeholder { 
	color: #fff;
  }
  .searchTerm::-ms-input-placeholder {
	color: #fff;
  }

  .search-wrap {
	  margin: 0 auto;
	width: 100%;
    display: block;
  }

  .search-header input[type="text"]:not([class^="Mui"]) {
    width: 16ch;
    max-width: 100%;
    flex: 0 0 auto;
	border: none !important;
	font-size: 15px !important;
	color: #fff !important;
	font-family: var(--font-body);
	font-weight: 600 !important;
	  -webkit-user-select: initial;
	  -khtml-user-select: initial;
	  -moz-user-select: initial;
	  -ms-user-select: initial;
	  user-select: initial;
	  height: auto !important;
    text-transform: uppercase;
    background-color: transparent;
  }

   .search-header input[type="text"]{
    color: #fff !important;
  }
  .search-nav {
	opacity: .7;
	transition: ease all 0.2s !important;
  }
  .search-nav:hover {
	opacity: 1;
  }
  
  .search-header input:focus {
	  outline: none;
      color: #fff;
  }

  .search-bar-conatiner{
    display: flex;
    gap: 5px;
  }




/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 150px 40px;
}

.hero-section{
    background: url(/siteart/industrial.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(30px);
    padding: 0px;
    background-size: cover;

}

.hero-slider{
    position: relative;
    overflow: hidden;
    height: 725px;
    img{
        height: 725px;
        width: auto;
        object-fit: contain;
        backdrop-filter: blur(15px);
    }

    button{
        background-color: transparent;
        color: var(--color-secondary);
        font-size: 21px;
        position: absolute;
        z-index: 9;
        top: 0;
        bottom: 0;
        cursor: pointer;
    }

    .slick-prev{
        left: 25px;
    }

    .slick-next{
        right: 25px;
    }
}

.home-title{
    max-width: 700px;
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 100px 40px;
    background-size: cover;
    text-align: center;
    position: relative;

    h1{
        position: relative;
        z-index: 2;
         max-width: 1000px;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    p{
        position: relative;
        z-index: 2;
    }

    img{
        position: absolute;
        top: -2px;
        right:0;
        width: 280px;
    }

    .button-container{
        justify-content: center;
    }


}

.new-cover{
      padding: 50px 40px;
      text-align: left;

      h1{
        max-width: none;
        margin-bottom: 15px;
      }

      .bready{
        justify-content: flex-start;
      }
}

.thumbnail-section{
    position: relative;



    .tile-element{
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .grid-4{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 25px;
    }
}

.thumbnail-cat{
    position: relative;
    height: 32vh;
    border-radius: 30px 0;
    overflow: hidden;

    .thumbnail-link{
        position: absolute;
        inset: 0;
        display: block;
        z-index: 2;
        text-decoration: none;
    }

    h1,h2,h3{
        font-size: 24px !important;
        color: #fff;
    }



    &::before,
    &::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
    }

    &::before{
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 21.63%, rgba(0, 0, 0, 0.70) 81.25%);
    }

    &::after{
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 21.63%, rgba(0, 0, 0, 0.94) 81.25%);
        opacity: 0;
        transition: opacity .25s ease;
        
    }

    &:hover::after{
        opacity: .65;
    }

    a p{
        color: #000;
    }


    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    h1,h2, h3, .btn{
        position: absolute;
        z-index: 2;
        color: #fff;
        bottom: 0px;
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    h1,h2{
        margin-bottom: 25px;
    }

    .btn{
        font-weight: 400;
        font-size: 15px;
        justify-content: flex-start;
        z-index: 3;
    }



}

.service-cat{
    background-color: #F8F8F8;
    border-radius: 30px 0px 0px;
    border: 1px solid #D1D1D1;

    p{
        color: #000;
        padding: 25px;
    }
}

.about-section{
    position: relative;
    z-index: 1;

    .tile-element {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 50%;
    }

    .col-2-lrg{
        margin-top: 20px;
    }

}

.operation-section{

    padding: 40px 50px;
    
    .button-container{
        margin-top: 25px;
    }
}

.text-container{
    a{
        text-decoration: underline;
        color: #000;
        font-weight: 700;
    }
}

.arrows-element{
    position: absolute;
    bottom: 55px;
    right: 0;
    width: 320px;
     z-index: -1;
}

.floating-section{
        position: relative;
        text-align: center;
    background: linear-gradient(180deg, #ffffff 70%, #000000 70%);
    padding-bottom: 0px;
    padding-top: 50px;
        

        h2{
            margin-bottom: 30px;
        }

        img{
            position: absolute;
            top: 0;
            left: 0;
            width: 290px;
            z-index: -1;
        }
}

.red-blurb{
    text-align: center;
    align-items: center;
    padding: 30px 25px;
    border-radius: 50px 0;
    margin-top: 40px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 90%;
    gap: 23px;

    .col-4{
        
        .title{
            margin: 0 auto;
            max-width: 200px;
        }
    }

    p{
        max-width: 310px;
        margin: 0 auto;
    }

   i{
    background-color: #fff;
    color: var(--color-secondary);
    padding: 4px 2px;
    border-radius: 25px;
    font-size: 8px;
     margin-right: 5px;
   }

   hr{
        height: 70px;
        border: none;
        width: 1px;
        background-color: #D0D0D0;
   }
}

.section-1{

}

.section-2{

}

.section-3{

}




/* Service */
.service-section{
    .maxi-2{
        text-align: center;

        .button-container{
            margin-top: 30px;
            justify-content: center;
        }
    }

    .maxi{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 75px;
    }
}


.form-section{
    h2, p{
        text-align: center;
        max-width: 800px;
        margin: 0 auto;

        a{
            color: #000;
        }
    }
}


/* About Us */

.about-main{

    h3{
        font-size: 21px;
        margin-bottom: 15px;
    }

    ul{
        list-style-type: none;
        i{
            color: #EB1D24;
            margin-right: 10px;
        }
    }
    .red-background{
        text-align: center;

        .button-container{
            justify-content: center;
        }
    }
}

.about-blurb-section{
    .maxi-2{
        text-align: center;
        max-width: 950px;
    }

    .button-container{
        justify-content: center;
        margin-top: 30px;
    }
}

.custom-maxi{
    max-width: 1350px;
    margin: 0 auto;
}

.bullet-container{
    margin-top: 50px;
    text-align: center;

    a{
        color: #000;
    }

    .flexy{
        margin-top: 25px;
    }
}

.bullet-points{
    border-radius: 30px 0;
    background-color: #F8F8F8;
    border: 1px solid #D1D1D1;
    text-align: center;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    i{
        background-color: var(--color-secondary);
        color: #fff;
        padding: 4px 2px;
        border-radius: 25px;
        margin-bottom: 10px;
    }
}



/*--------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: none;
    width: 50%;
    padding: 15px;
    border-radius: 0px;
    font-family: var(--font-body);
    box-sizing: border-box;
}

.form-field-flex select{
    border: none;
    width: 50%;
    padding: 15px;
    padding-right: 42px;
    border-radius: 0px;
    font-family: var(--font-body);
    background-color: #fff;
    color: #8B8B8B;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23000000' d='M31.3 192h257.3c28.4 0 42.7 34.5 22.6 54.6L182.6 375.2c-12.5 12.5-32.8 12.5-45.3 0L8.7 246.6C-11.4 226.5 2.9 192 31.3 192z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 8px;
}

.form-field-flex select::-ms-expand{
    display: none;
}

#formpage textarea{
    border: none;
    border-radius: 0px;
    padding: 15px;
    font-family: var(--font-body);
    box-sizing: border-box;
    height: 150px;
}

input.submit-button{
    background-color: var(--color-secondary);
    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: 700;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
    border-radius: 25px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: var(--padding-button);
    color: #fff;
    font-family: var(--font-body);
    cursor: pointer;
    font-size: 16px;
    border-radius: 25px;
    font-weight: 700;
}


/*-------- CONTACT STYLES --------*/

.google-maps{
    
}


/* Join Our Mailing List */
.join-our-mailing-list-main{
    h2,p{
        text-align: left;
        margin: inherit;
    }

    .form-field-flex input{
        background-color: var(--color-light-background);
    }
    .form-section{
        padding: 100px 50px;
        .button{
            margin: 0 auto;
             justify-content: center;
        }

    }

}




/* Newsletter */

.join-our-mailing-list-main{

    .form{
        background-color: var(--color-white);
        padding: 25px;
    }
}

.gallery-section{
    text-align: center;
}


.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23.5%, 1fr));
    gap: 20px;
    box-sizing: border-box;
    margin-top: 25px;
}


.service-type-main{
    .thumbnail-cat{
    &::before,
    &::after{
        content: "";
        display: none;
    }
    }

    .service-cat{
        border: none;
    }

}


.service-type-section{
    border-top: 1px solid #D1D1D1;
    /* max-width: 1150px; */

    h2{
        text-align: center;
        max-width: 675px;
        margin: 0 auto 25px;
    }



    .flexy2{
        align-items: center;
    }

    .bullet-container{
        .flexy{
            flex-wrap: wrap;
        }
    }
}



/* Thank You  */

.thankyou-main{
    .cover{
        padding: 175px 40px;
        .button-container{
            justify-content: flex-start;
        }
    }
}




/*-------- FOOTER STYLES ----------------*/



footer{
    font-family: var(--font-body);
    background-color: var(--color-primary);
    color: var(--color-white);
    border-bottom: 7px solid #EB1D24;
        padding: 50px 50px 10px 50px;


    ul{
        list-style-type: none;
    }

    .btn{
    font-family: var(--font-body) !important;
    font-size: var(--font-body-size) !important;
    color: var(--color-white);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    transition:.25s;
    border-radius: 25px;
    font-weight: 700 !important;
    width: auto;

    i{
        color: var(--color-secondary);
        font-size: 10px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }


}

}

.top-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;



}

.footer-logo{
    width: 200px;
    margin-bottom: -10px;

    img{
        width: 100%;
    }
}

.left-footer{

    p{
        max-width: 400px;
    }
}

.right-footer{
    gap: 50px;
    align-items: baseline;
    justify-content: flex-end;

    /* ul, a{
        line-height: 32px;
    } */

    a{
        color: #fff;
        white-space: nowrap;
    }

    .button-container{
        margin-top: 0px;
        flex-direction: column;
        gap: 10px;
    }

}

.web-links{
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 25px;
    max-width: 320px;
}

.location-links{
        display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    line-height: 2;
}

.footer-quicklinks{
                a{
        color: #fff;
    }

    span{
        font-weight: 700;
        display: block;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 21px;
        font-family: var(--font-header);
        text-transform: uppercase;

        i{
            font-size: 10px;
            color: var(--color-secondary);
        }


    }
}



.bottom-footer{
    padding: 35px 0 10px;
    font-size: 11px;
}

.nav-footer{
    display: flex;
    gap: 8px;
    align-items: center;

    a{
        color: #fff;
    }
}

/*----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-color: var(--color-primary) !important;
}

/*---------- RESPONSIVE STYLES ----------*/
@media only screen and (max-width: 1450px){
    .top-footer{
        flex-direction: column;
        gap: 45px;
        align-items: flex-start;
    }

    .right-footer{
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1200px) {
    .flexy2{
        gap: 50px;
    }


    .red-blurb {
        flex-wrap: wrap;

        .col-4{
            width: 45%;
        }

        p{
            max-width: 100%;
        }
    }

    .go-away{
        display: none;
    }

    .thumbnail-section{
        .grid-4{
            grid-template-columns: 1fr 1fr;
        }
    }

}


/*----------    MOBILE MENU    ----------*/


@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }
}

@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: 100% !important;
        box-sizing: border-box;
    }
    
    .no-break{
        display: none;
    }

    .go-away{
        display: block;
    }

    .red-blurb{
        gap: 30px;
        width:100%;
        hr{
            display: none;
        }

        .col-4 .title{
            max-width: 100%;
        }
        i{
            display: block;
            margin: 0 auto 10px;
        }
    }

    .right-footer{
        gap: 25px;
    }

    .top-footer{
        padding-bottom: 25px;
    }



        .hero-slider {
        height: 475px;
            img{
        height: 475px;
        }
    }

    .gallery{
        grid-template-columns: 1fr 1fr;
    }
}


@media only screen and (max-width: 750px){
    .thumbnail-section{
        .grid-4{
            grid-template-columns: 1fr 1fr;
        }
    }
}


@media only screen and (max-width: 650px){
    .thumbnail-section{
        .grid-4{
            grid-template-columns: 1fr;
        }
    }
}


@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;
    }

    .form-field-flex select{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }

    .tile-element{
        width: 250px
    }

    .gallery{
        grid-template-columns: 1fr;
    }

    .location-links{
        grid-template-columns: 1fr;
    }

    .right-footer {
    .button-container {
        align-items: flex-start;
    }
}

	
}

@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }

    .top-footer{
        padding: 15px 0;
    }

    .bottom-footer{
        padding: 10px 25px 25px;
    }

    .nav-footer{
        flex-wrap: wrap;
    }

    .hero-slider {
        height: 350px;

        img{
        height: 350px;
    }
    }

     .tile-element{
        width: 200px
    }

    .thumbnail-section{

            .maxi{
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
	
}
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



