﻿/*===================== 
	Color information
	
	red #d0202d
    lt grey #e6e7e8
    dk grey #212121
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/
@font-face {
  font-family: 'KenworthSans';
  src: url('/webfonts/KenworthSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'KenworthSans';
  src: url('/webfonts/KenworthSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	font-family: Arial, sans-serif; 
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 

.img-respon {
    max-width: 100%;
    height: auto;
    display: block;
}
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
        font-family: 'Saira', sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
        font-family: 'Saira', sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
        font-family: 'Saira', sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
        font-family: 'Saira', sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
        font-family: 'Saira', sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}
.content-disc {
    font-size: 13px;
    color:#212121;
}
.font-center {
    text-align: center;
}
.font-red {
    color:#ec111d;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #000; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  
.btn-red {
    font-family: 'Kanit', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap;
    outline: none;
    user-select: none;
    background-color: #ec111d;
    color: #fff!important;
    transition: .4s ease-in;
    text-transform: uppercase;
}
.btn-red:hover {
    background-color: #a50c14;
}
.btn-white {
    font-family: 'Kanit', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap;
    outline: none;
    user-select: none;
    background-color: #fff;
    color: #000!important;
    transition: .4s ease-in;
    border:1px solid #000;
}
.btn-white:hover {
    color: #fff!important;
    background-color: #ec111d;
    border:1px solid #ec111d;
}
.btn-black {
    font-family: 'Kanit', sans-serif;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap;
    outline: none;
    user-select: none;
    background-color: #212121;
    color: #fff!important;
    transition: .4s ease-in;
    border:1px solid #fff;
}
.btn-black:hover {
    background-color: #404040;
    border:1px solid #404040;
}
.content-info ul {
    padding:5px 0;
    margin:0;
}
.content-info ul li {
    padding:0 0 0 5px;
    margin:0 0 0 25px;
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
}
.dk-grey-bg  {
    background:#212121;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
    background:#fff;
    position: sticky;
    top:0;
    z-index: 300;
    box-shadow: 0 -2px 10px rgba(0,0,0,.25);
	}

header {
	margin: 0 auto;
	width:100%;
    box-sizing: border-box;
    display: flex;
        
	}
.head-logo-1 {
   display: flex; 
}
.head-logo-1 a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-logo-1 a {
    background:#fff;
    padding:10px 24px;
}
.head-logo-1 a img {
    width:100%;
    max-width: 100%;
    height: auto;
    display: block;
    padding:0 8px;
    box-sizing: border-box;
}
.menu-tools {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:0 24px 0 0;
}
.head-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}
.head-search-btn:hover {
    color:#d0202d;
}
.head-search-btn p {
    font-weight: 300;
    padding:0 0 0 4px;
}


/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:15px 0;
	display:block;
	margin:0;
	position:relative;
    width:calc(100% - 450px);
	}
	nav.primary ul {
		margin:0; 
		padding:0;
        display: flex;
        justify-content: center;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
            padding:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Kanit', sans-serif;
				color: #000;
				font-size: 15px;
				text-decoration: none;
				padding: 16px 8px;
				display: block;
/*				margin:0 10px;*/
				text-align: center;
				text-transform: uppercase;
				transition: .4s ease-in;
				font-weight: 300;
				}	
			nav.primary ul li a:hover {
				color:#d0202d;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:14px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

/*===================== 
	header search styles 
=======================*/

.head-search {
    background:#000;
    width:100%;
    padding:16px;
    box-sizing: border-box;
    position: absolute;
    display: none;
}
.header-search-col-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    gap:10px;
}
.header-search-col-1 p {
    font-family: 'Kanit', sans-serif;
    font-size:16px;
    font-weight: 300;
    color:#fff;
}
.header-search-col-1 input {
    padding:5px 10px!important;
    font-family: 'Kanit', sans-serif;
    background: #fff;
    font-size: 20px!important;
    width:100%!important;
    height: auto!important;
    font-weight: 300;
    outline:none;
    border-radius: 2px!important;
    max-width: 300px;
}

/*===================== 
	content styles 
=======================*/


.wrap-hero {
    background-image:linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 100%), url("/siteart/hero-bg-1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width:100%;
    height: 45vh;
    min-height: 450px;
    padding:7vh 0 0 0;
    box-sizing: border-box;
    position: relative;
}
.wrap-hero-content {
   background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width:100%;
    height: 40vh;
    min-height: 350px;
    box-sizing: border-box; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wrap-hero h1 {
    font-size: 55px;
    color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,1.0);
    line-height: 1.1;
}
.wrap-hero h1 span {
   font-family: 'Kanit', sans-serif;
    font-size: 20px;
    vertical-align: top;
    margin-left:.2px;
    font-weight: 400;
}
.wrap-hero-content h1 {
    font-size: 55px;
    color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,1.0);
    line-height: 1.1;
}
.wrap-hero-content h1 span {
   font-family: 'Kanit', sans-serif;
    font-size: 20px;
    vertical-align: top;
    margin-left:.2px;
    font-weight: 400;
}
.wrap-hero .btn-white {
    margin-top:30px;
}
.wrap-search-home {
    background:#212121;
    padding:50px 0;
}
.home-search-col-1 {
    width:17%!important;
}
.home-search-col-2 {
    width:10%!important;
}
.home-search-col-1 input, .home-search-col-1 select {
    background:#fff;
    border:0px;
    margin:0!important;
    padding:10px 5px!important;
}
.slider-all-inv-cont {
    width:100%;
    background:#212121;
    padding:40px 20px;
    box-sizing: border-box;
    text-align: center;
}
.wrap-banner {
    background:#e6e7e8;
    padding:100px 0;
}
.wrap-dealer-banner {
    width:100%;
    background:url("/siteart/find-a-dealer_bg-dark.png") no-repeat center;
    background-size:cover;
    background-color: #212121;
    text-align: center;
    padding:90px 20px;
    box-sizing: border-box;
}
.wrap-dealer-banner h4 {
    font-size: 40px;
    color:#fff;
}

/*===================== 
	slideshow styles 
=======================*/

.wrap-slider {
    width:100%;
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap;
}
.home-slider-bg-1 {
    width:25%;
    background:url("/siteart/cat-bg-1.jpg") no-repeat center right;
    background-size: cover;
}
.slider-cont-1 {
    width:75%;
    padding:50px 0 50px 30px;
    box-sizing: border-box;
    overflow: hidden;
}
.slider-cont-1 p a {
    font-size: 20px;
    font-weight: 500;
}
.slider-hero {
    padding:40px 0;
}
.slide-cont-1 {
    text-align: center;
    border:1px solid #e6e7e8;
    border-radius: 20px;
    padding:20px;
    margin:0 10px;
    box-sizing: border-box;
}
.slide-cont-1 img {
    max-width: 284px;
    width:100%;
    display: block;
    margin:0 auto;
}
.slide-cont-1 h2 {
    font-size: 60px;
}
.slick-prev {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease-in;
    position: absolute;
    top: -30px;
    right: 100px;
}
.slick-next {
    width:35px;
    height: 35px;
    border-radius: 35px;
    background:#000;
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .4s ease-in;
    position: absolute;
    top: -30px;
    right: 50px;
}
.slick-prev:hover, .slick-next:hover {
    background:#404040;
}
.slider-cont-1 .slick-list {
    padding:0px 10vw 0 0!important;
}
.slider-banner {
    width:100%;
}
.slide-banner-cont-1 {
    width:100%;
    max-width: 1250px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    background:#000;
}
.slide-banner-col-1 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    color: #fff;
    padding: 30px 60px;
    box-sizing: border-box;
    background-image: linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,1.00) 28.50%,rgba(0,0,0,1.00) 100%);   
    display: flex;
    align-items: center;
}
.slide-banner-col-1 h3 {
    font-size: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}
.slide-banner-col-1 p {
    font-size: 16px;
    line-height: 1.5;
    padding:20px 0;
}
.slide-banner-col-1 .btn-white {
    display: block;
    max-width: 250px;
    
}
.slide-banner-img-col img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -40px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    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 li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    content: "";
    text-align: center;
    background:#000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    background:#d0202d;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */

.form-cont-1 {
    padding:40px 0;
}
.form-cont-1 p {
    padding:10px 0 10px 0;
}

.form-cont-1 form {
    background: #e6e7e8;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 50px 20px;
}

.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}
.radio-cont {
    display: flex;
    align-items: center;
    gap:10px;
    margin:0 50px 0 0;
}
.form-info-cont .radio-cont input {
    margin:0;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
    font-family: 'Kanit', sans-serif;
	width: 100%;
	display: block;
	padding: 10px 5px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    font-weight: 300;
    border:0px;
    outline: none;
    background:#fff;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
    font-family: 'Kanit', sans-serif;
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 15px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Roboto', sans-serif;
    font-weight: 300;
    border:0px;
    outline: none;
}

select {
	margin:0;
	padding:0;
}



.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 

/*  SEARCH SLIDER BARS
------------------------------------------------*/
.noUi-target{position:relative; direction:ltr}
.noUi-origin{position:absolute; right:0; top:0; left:0; bottom:0; border-radius:2px;}
.noUi-handle{position:relative; z-index:1}
.noUi-marker, .noUi-pips, .noUi-tooltip, .noUi-value{position:absolute;}
.noUi-horizontal{height: 12px; z-index: 0}
.noUi-horizontal .noUi-handle{width: 25px; height: 21px; left: -13px; top: -6px}
.noUi-horizontal .noUi-handle-upper {top: -5px;}
.noUi-background{background: #ccc;}
.noUi-connect{border: 1px #212121 solid; background:#d0202d !important;}
.noUi-target{width:calc(100% - 30px); margin: 15px auto; /*margin: 15px auto 15px 0;*/}
.noUi-handle{position: relative; z-index: 1; background: #e6e7e8 !important; border: 1px solid #212121; border-radius: 3px;}
.noUi-handle:after, .noUi-handle:before{content:""; display: block; position: absolute; height: 12px; width: 1px; background: #212121; left: 10px; top: 3px}
.noUi-handle:after{left: 12px}
.noUi-pips-horizontal{padding: 5px 0; height: 10px; top: 100%; left: 0; width: 100%}
.noUi-marker-horizontal.noUi-marker{margin-left: -1px; width: 1px; height: 5px; background:#777;}
.example-val p{font-size:12px; font-weight:700; color:#fff; font-family: "Roboto Condensed", sans-serif;}
.example-val p span{font-weight:400;}
#slider-price-value-lower:before, #slider-price-value-upper:before{content:'$'; padding-right:2px;}


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
.wrap-padding {
    padding:80px 0;
}

.container-1 {
	max-width: 1256.25px;
	margin: 0 auto;
	padding:10px;
	box-sizing: border-box;
	}

.content-info {
    padding:50px 20px;
    box-sizing: border-box;
}
.white-cont {
    background: #fff;
    border: 1px solid #e6e7e8;
    border-radius: 20px;
    margin:20px 0;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	inventory page styles 
=======================*/
.container-inv {
	max-width: 1256.25px;
	margin: 0 auto;
	padding:150px 10px 50px 10px;
	box-sizing: border-box;
	}

.inv-banner {
/*
    margin-top: 100px !important;
    margin-bottom: -5vw;
*/
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    height: 250px;
    width: 80% !important;
    border-radius: 20px;
    transition: 0.3s ease all;
    overflow: visible !important;
}
.pfc-card {
    transition: 0.3s ease all;
}
.pfc-card:hover {
    transform: scale(1.1) rotate(5deg);
    transition: 0.3s ease all;
}
.slide-banner-cont-2 {
    width:100%;
    max-width: 1250px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    background-image: url("../siteart/geometric-background.jpg");
    background-position: center center;
    object-fit: cover;
/*    background-color: rgba(0, 0, 0, 0.6);*/
    background-blend-mode: multiply;
    z-index: 999;
}
.slide-banner-cont-2 > .slide-banner-col-2 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    font-family:'KenworthSans', 'Kanit', sans-serif !important;
    color: #000;
    padding: 30px 60px;
    box-sizing: border-box;
/*    background-image: linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(255,255,255,1.00) 28.50%,rgba(255,255,255,1.00) 100%);   */
    display: flex;
    align-items: center;
}
.slide-banner-cont-2 > .slide-banner-col-2 p {
    font-family:'KenworthSans', 'Kanit', sans-serif !important;
}
.slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white {
    font-family:'KenworthSans', 'Kanit', sans-serif !important;
    margin-top: 20px !important;
    color: #d0202d !important;
    border: 1px solid #d0202d;
    background-color: transparent;
}
.slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white:hover {
    color: #FFF !important;
    background-color: #d0202d;
}
.pfc-logo {
    width: 100%;
    max-width: 400px !important;
    height: auto;
}
.slide-banner-cont-2 > .slide-banner-img-col-2 img {
    max-width: 100%;
    height: 200px;
    display: block;
    margin-right: 50px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px;
    padding: 0;
    box-sizing: inherit;
}

@media screen and (max-width: 950px) {
    .inv-banner {
        width: 100% !important;
        padding: 0;
        margin: 0;
    }
    .slide-banner-cont-2 > .slide-banner-img-col-2 {
        display: none;
    }
    .slide-banner-cont-2 > .slide-banner-col-2 {
        width: 100%;
        background-image: none;
/*        color: #fff;*/
        padding:0 20px;;
    }
/*
    .slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white {
        margin-top: 20px !important;
        color: #fff !important;
        border: 1px solid #fff;
        background-color: transparent;
    }
    .slide-banner-cont-2.inv-banner .slide-banner-col-2 .banner-slide-info-1 a.btn-white:hover {
        color: #d0202d !important;
        background-color: #fff;
    }
    .pfc-logo {
        filter: brightness(0) invert(1);
    }
*/
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
    border-top:1px solid #000;
	}
.footer-flex-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.foot-logo-1 {
   display: flex; 
}
.foot-logo-1 a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot-logo-1 a {
    background:#fff;
    padding:10px 24px;
}
.foot-logo-1 a img {
    width:100%;
    max-width: 100%;
    height: auto;
    display: block;
    padding:0 8px;
    box-sizing: border-box;
}


nav.foot {
    padding:25px 0;
    display:block;
    margin:0;
    position:relative;
}
nav.foot ul {
    margin:0; 
    padding:0;
    display: flex;
    justify-content: center;
}
nav.foot ul li {
    display:inline-block;
    margin:0;
    padding:0 8px;
    list-style-type:none; 
}
nav.foot ul li a {
    font-family: 'Kanit', sans-serif;
    color: #000;
    font-size: 16px;
    text-decoration: none;
    padding: 16px 10px;
    display: block;
    margin:0;
    text-align: center;
    text-transform: uppercase;
    transition: .4s ease-in;
    font-weight: 300;
}	
nav.foot ul li a:hover {
    color:#d0202d;
}
.foot-social ul {
    padding:0 10px 0 0;
    margin:0;
    display: flex;
    flex-wrap: wrap;
}
.foot-social ul li {
    padding:0 10px;
    margin:0;
    list-style: none;
}
.foot-social ul li a {
    font-size: 24px;
    color:#404040;
}
.foot-social ul li a:hover {
    color:#000;
}
.bottom-foot {
    border-top:1px solid #000;
    padding:50px 20px;
    width:100%;
    box-sizing: border-box;
}
.bottom-foot p{
    font-family: 'Kanit', sans-serif;
    text-align: center;
    font-size: 12px;
    color:#212121;
    font-weight: 400;
}

/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1650px)  {
    nav.primary ul li a {
        margin:0;
        font-size: 15px;
    }
    
}

@media screen and (max-width: 1500px)  {
    nav.foot ul li {
        padding:0;
    }
    nav.foot ul li a {
        font-size: 15px;
    }

}


@media screen and (max-width: 1400px)  {
    .head-search-btn p {
        display: none;
    }
    nav.primary {
      width: 100%;
    }
    nav.primary ul {
      justify-content: flex-start;
    }

    .foot-social {
        width:100%;
        padding:20px 0;
    }
    
}

@media screen and (max-width: 1230px)  {
    nav.primary ul li a {
        margin:0;
        font-size: 12px !important;
        padding:16px 8px !important;
    }
    
}

@media screen and (max-width: 1110px)  {
    .col-1-3, .col-2-3 {
        width:49%;
    }
    .container-1{
        padding:10px 30px;
    }
    .container-inv {
        padding:105px 10px 50px 10px;
    }
    
    header {
      justify-content: space-between;
    }
    .menu-tools {
      align-items:stretch;
        padding:0;
    }
    .head-search-btn {
        flex-direction: column;
        text-align: center;
        padding:0 20px;
    }
    .head-search-btn i {
      font-size: 35px;
    }
    .head-search-btn p {
      display: block;
        font-size: 12px;
        font-weight: 300;
    }
    
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
	#menu-button{ 
        padding:25px 20px;
		display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
		font-size: 24px;
		position: relative;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	}
    .menu-toggle {
        text-align: center;
    }
    .menu-toggle i {
        font-size: 35px;
    }
    .menu-toggle p {
        font-size: 12px;
        font-weight: 300;
    }
    .menu-toggle:hover {
        color:#d0202d;
    }
    
	nav.mobile {
		display:block;
		position: fixed;
		right: -66.66%;
		width: 0px;
		height: 100%;
		background: #fff;
		z-index: 800; /* needs to be higher than #menu-button, adjust as needed */
		overflow:auto;
        transition: .4s ease-in;
        top: 105px;
        max-width: 500px;
	}
    nav.mobile.open {
		width: 66.66%;
        right: 0;
	}
    
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		border-bottom: 1px solid #e6e7e8;
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
        font-family: 'Saira', sans-serif;
		position: relative;
		display: block;
		font-size:16px;
        font-weight: 700;
		padding: 16px;
		color: #000;
		text-decoration: none;
	}
	nav.mobile ul li a:hover {
		background:#50575b; 
		color: #fff; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
		border-left:4px #555 solid;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#1B1B1B; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	}


	nav.mobile ul li .fa-chevron-down {color:#999;}
    
    
    .wrap-hero {
        background-image: url("/siteart/hero-bg-1.jpg");
        padding:0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 350px;
        height: auto;
    }
    .wrap-hero .container-1, .wrap-hero-content .container-1 {
        height: 100%;
        width: 100%;
        position: absolute;
        box-sizing: border-box;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: rgba(0,0,0,0.5);
        padding:0;
    }
    .wrap-hero h1, .wrap-hero-content h1 {
        font-size: 8.5vw;
        text-align: center;
    }
    .wrap-hero h1 span, .wrap-hero-content h1 span {
        font-size: 3vw;
    }
    .wrap-hero .btn-white {
        margin:30px auto 0 auto;
        display: block;
        max-width: 300px;
    }
    .home-search-col-1 {
        width:49%!important;
        margin:20px 0;
    }
    .home-search-col-2 {
        width:49%!important;
        margin:20px 0;
    }
    .home-search-col-2 .btn-red {
        width:100%;
        display: block;
        box-sizing:border-box;
            
    }
    

}
@media screen and (max-width: 920px)  {
     .home-slider-bg-1 {
          display: none;
    } 
    .slider-cont-1 {
      width: 100%;
      padding: 50px 0;
    }
    .slider-cont-1 p {
      padding:0 0 0 20px;
    }
    .slider-cont-1 .slick-list {
      padding: 0px 160px!important;
    }
    .slide-banner-cont-1 {
        justify-content: space-between;
        flex-direction: column;
    }
    .slide-banner-col-1 {
        order:2;
      position: static;
      min-height: 400px;
      width: 100%;
      color: #fff;
      padding:0 30px 30px 30px;
      box-sizing: border-box;
      background-image: linear-gradient(270deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.00) 28.50%,rgba(0,0,0,0.00) 100%);
      display: flex;
    }
    .slide-banner-img-col {
        position: relative;
        width: 100%;
        order:1;
    }
    .slide-banner-img-col:after {
        position: absolute;
        left:0;
        bottom:0;
        width:100%;
        height: 100%;
        background-image: linear-gradient(0deg,rgba(0,0,0,8.00) 0%,rgba(0,0,0,0.00) 28.50%,rgba(0,0,0,0.00) 100%);
        content:"";
    }
    .slide-banner-col-1 h3 {
      font-size: 6vw;
    }
}
@media screen and (max-width: 850px)  {
    .foot-logo-1  {
        width:80%;
        margin:0 auto;
    }
    .foot-logo-1 a {
        margin:0 auto;
    }
    .foot-logo-1 a img {
      max-width: 320px;
      margin:0 auto;
    }
    nav.foot ul {
      flex-direction: column;
    }
    nav.foot ul li a {
      color:#d0202d;
        font-size: 16px;
    }
    nav.foot ul li a:hover {
      color:#a50c14;
    }
    nav.foot {
      width: 100%;
    }
    .foot-social ul {
      justify-content: center;
    }
    
}

@media screen and (max-width: 720px)  {
    .slider-cont-1 .slick-list {
      padding: 0px 20vw!important;
    }
    .slide-cont-1 h2 {
      font-size: 8vw;
    }
    .slide-cont-1 .btn-white {
        font-size: 3vw;
    }
    .col-1-3, .col-2-3, .col-1-2 {
        width:100%;
    }
    .hide-mob {
        display: none;
    }
    
}

@media screen and (max-width: 580px)  {
    .head-logo-1 a:last-child {
      width: 75%;
    }
    .home-search-col-1, .home-search-col-2 {
        width:100%!important;
    }
    .btn-black, .btn-red, .btn-white {
        font-size: 12px;
    }
    .head-logo-1 a:first-child {
      padding: 0 16px;
    }
    .head-search-btn {
      padding: 0 5px;
    }
    #menu-button {
      padding:25px 20px 25px 5px;
    }
    .wrap-hero-content h1 {
        font-size: 10vw;
    }
    
    
}

	
