﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

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;
}

/*-------- BODY STYLES --------*/

body {

}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}


.uppercase {text-transform: uppercase;}
.capitalize {text-transform: capitalize;}
.italic {font-style: italic;}
.black {color: #000000;}
.black-bg {background-color: #000000;}
.not-blk {color: #1E1E1E;}
.not-blk-bg {background-color: #1E1E1E;}
.white {color: #fff;}
.white-bg {background-color: #fff;}
.grey-bg {background-color: #F5F5F5;}
.darkred {color: #761E18;}
.darkred-bg {background-color: #761E18;}


.wid95 {width: 95%;margin: 0 auto;}
.wid90 {width: 90%;margin: 0 auto;}
.wid85 {width: 85%;margin: 0 auto;}
.wid80 {width: 80%;margin: 0 auto;}

.padd50-tp {padding: 50px 0;}
.padd100 {padding: 100px;}


.bebas {font-family: "bebas-neue-pro", sans-serif;}
.heading1 {font-family: "bebas-neue-pro", sans-serif;font-weight: 600;font-size: 6rem;line-height: 1;margin-bottom: 2.5rem;}
.heading2 {font-family: "bebas-neue-pro", sans-serif;font-weight: 600;font-size: 6rem;line-height: 1;margin-bottom: 2.5rem;padding-left:120px;}
.subheading1 {font-family: "bebas-neue-pro", sans-serif;font-weight: 500;font-size: 33px;max-width: 25rem;}
.rot-txt {font-family: "bebas-neue-pro", sans-serif;font-weight: 500;font-size: 33px;}
.heading-lg {font-family: "bebas-neue-pro", sans-serif;font-weight: 600;font-size: 5rem;}
.heading-m {font-family: "bebas-neue-pro", sans-serif;font-weight: 600;font-size: 55px;}
.body {font-family: "poppins", sans-serif;font-weight: 400;font-size: 16px;}
p.qls {font-family: "bebas-neue-pro", sans-serif;font-weight: 700;font-size: 25px;letter-spacing: 1.25px; }
p.qls:hover {letter-spacing: 2px;	transition: .25s ease all;}
p.italic.body {font-family: "bebas-neue-pro", sans-serif;font-weight:400; letter-spacing: 1.25px;font-size: 25px;}


a.btnclass {color: #fff;}
.btnclass {
	text-transform: uppercase;
    position: relative;
	font-family: "bebas-neue-pro-expanded", sans-serif;
	font-weight: 600;
    letter-spacing: 2px;
    font-size: 22px;
    border-radius: 0;
    border: none;
    align-items: center;
    height: min-content;
	display: inline-block;
	padding: 1.9rem 2rem 1.9rem 2rem;
	box-sizing: border-box;
	transition: .25s ease all;
}
.btn-red.lg a {color: #fff;display: flex;justify-content: space-between;width: 100%;}
.aside.btnclass.btn-red.lg {padding: 2.9rem 2rem 2.9rem 2rem;}
.btn-red {
    background-color: #9F3A35;
	border-left: 8px solid #C56560;
	color: #fff;
}
.btn-red.dark {
    background-color: #761E18;
	border-left: 8px solid #C56560;
}
.btn-red:hover {
	border-left: 12px solid #C56560;
}



.breadcrumbs {
    display: flex;
    font-size: 15px !important;
    color: #403f3b !important;
    padding: 3% 0 2%;
    flex-wrap: wrap;
    align-items: center;
    letter-spacing: 0.05em;
    gap: 10px;
    font-family: "oswald", sans-serif;
}
.breadcrumbs a {
    display: inline-block;
    padding: 12px;
    border-radius: 5px;
    border: solid 1px #cbcbcb;
    color: #403f3b;
    font-size: 15px !important;
    font-family: "oswald", sans-serif;
}

/*--- HEADER STYLES ---------------------*/
header {}
.homepage nav.primary {
    display: none;
}
.head-logo {
    position: absolute;
    z-index: 10;
    padding: 25px 30px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: #fff;
  transform: translateY(0); /* visible initially */
  transition: 
    transform 0.3s ease,
    background 0.3s ease,
    backdrop-filter 0.3s ease;
  z-index: 1000;
}

.header-inner {
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
  padding: 45px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* When hidden */
.site-header.is-hidden {
  transform: translateY(-100%);
}
/* When shown after scroll */
.site-header.is-visible {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Optional subtle shadow */
.site-header.is-visible {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
/*---BODY--------------------------------*/


/* HERO SPLIT */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 69vh;
  position: relative;
}
.hero-full {
  background: #1e1e1e;
  padding: 5rem;
  display: flex;
  min-height: 35vh;
  position: relative;
	justify-content: space-evenly;
    align-items: flex-end;
	gap: 20px;
}
.contact-wrap {
  position: relative;
}
section.contact-wrap p {
    place-self: center;
}

/* LEFT PANEL */
.hero-left {
  background: #1e1e1e;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub-wrap {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    height: min-content;
    justify-content: space-between;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
	gap: 20px;
}

.btn-primary {
  background: #8c241c;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #a72c22;
}

/* RIGHT IMAGE */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-inline-size: fit-content;
}

.slider-container {
	width: 100%;
}

.slider-container img {
	display: block;
	width: 100%;
}

.hero-dots {
	margin-top: -30px;
    z-index: 10;
    position: absolute;
	width: 400px;
    justify-self: center;
}

.slick-dots.flex {
	gap: 15px;
	flex-wrap: nowrap !important;
}

.hero-dots .slick-dots li button {
	display: none;
}

.hero-dots .slick-dots li {
	height: 5px;
	width: 100%;
	background-color: #761E18;
	cursor: pointer;
}

.hero-dots .slick-dots .slick-active {
	background-color:#C56560;
}
.flex {
    display: flex;
}




.circle-wrapper {
	width: 195px;
	height: 195px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* SVG base */
.circle-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Rotating text only */
.rotating {
  transform-origin: 50% 50%;
  animation: spin 18s linear infinite;
}

.circle-svg text {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  fill: #fff;
}
.circle-wrapper.about .circle-svg text {
    font-size: 16.3px;
}

/* 8-point plus styling */
.plus-mark line {
  stroke: #C56560;
  stroke-width: 5;
}


/* Rotation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.scrolling-wrap{
	width: 94%; 
    margin: 50px auto;
	height: 90px; 
	overflow: hidden; 
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: #585858;
}
.scrolling-wrap iframe{
	width: 100%; 
}


.about.wid85 {
    display: flex;
    align-items: center;
	gap: 3rem;
	margin: 100px auto;
}
.col.lf {
    flex: 3;
}
.col.rt {
    flex: 2;
}
.about.home .col.rt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
	width: 100%;
}
.about.home h2 {
    margin-bottom: 10px;
}


.home.inv-cat-wrap {
	background-image: url("../siteart/cat-bg.jpg");
	height: 790px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: 75% 25%;
    background-color: #000;
    display: flex;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.inv-cat-wrap .wid85 {
    justify-items: center;
    text-align: center;
}
.inv-cat-wrap h2 {
	line-height: 1;
	margin-bottom: 50px;
}
.cat-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
	width: 100%;
}
a.btnclass.cat {
    border: 1px solid #fff;
	    color: #fff;
}
a.btnclass.cat:hover {
    letter-spacing: 1px;
}


section.home.contact-wrap h2 {
    text-align: center;
    margin-bottom: 50px;
}
.home.contact-wrap {
    padding: 75px 0;
}
.home.contact-wrap .wid85 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.box1 {
    text-align: center;
    padding: 2.5vw;
    flex: 1;
}
.box1.trace-bg {
    border: 1px solid #1e1e1e;
}
.box1 p.italic.body {
    margin: 20px 0 10px;
}
.box1.trace-bg p.qls {
	color: #1e1e1e;
}
.flexbox {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 450px);
  column-gap: 20px;
  row-gap: 75px;
  justify-content: center;
}
.flexbox video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: 750px;
}



/*--------FORM STYLES--------------------*/




/*-------- FOOTER STYLES ----------------*/

footer {
    background-color: #F5F5F5;
    border-bottom: 25px #761E18 solid;
}
footer .wid95 {
    padding: 75px 0;
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}
.ft-col.menu a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: #1e1e1e;
	font-family: "bebas-neue-pro", sans-serif;
	letter-spacing: 1px;
    padding: 20px;
}
.ft-col.socials a {
    padding-left: 20px;
}



/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/







/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (min-width: 768px) {
	
}

@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}
@media only screen and (max-width: 1530px) {
	.heading1 {font-size: 5rem;}
	.heading2 {font-size: 5rem;}
	.subheading1 {font-size: 28px;}
	.heading-lg {font-size: 4rem;}
}
@media (max-width: 1350px) {
  .hero {background: #1e1e1e;grid-template-columns: 1fr;grid-template-rows: 60vh 60vh;min-height: 120vh;}
  .hero-left {padding:150px 0 100px;width: 85%;margin: 0 auto;}
  .hero-left h1 br {display: none;}
  .hero-right {height: 50vh;}
  .circle-wrapper {height: 150px;width: 150px;}
  .hero-right {height: auto;}
  .slick-slide img {
    display: inherit; height: 60vh}
}
@media only screen and (max-width: 1200px) {
	.box1.darkred-bg {flex: 2;}
	.about.wid85 {flex-direction: column;}
}
@media only screen and (max-width: 1150px) {
	.heading2 {padding-left: 90px;}
}
@media only screen and (max-width: 1050px) {
	.hero-full {align-items: center;justify-content: space-between;min-height: 25vh;}
	.hero-full br {display: none;}
	.circle-wrapper.subfull {top: 100%;}
}
@media (max-width: 960px) {
  .flexbox {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%; 
  }
}
@media only screen and (max-width: 860px) {
	.cat-wrap {grid-template-columns: repeat(1, 1fr);}
	.btnclass {font-size: 20px;padding: 1.5rem 1rem;}
	.heading-lg {font-size: 3rem;}
	.home.inv-cat-wrap h2 br {display: none;}
	.home.contact-wrap .wid85 {flex-direction: column;}
	.box1 {padding:20px;}
	.circle-wrapper {width: 170px;height: 170px;	}
	.heading1 {font-size: 3rem; margin-bottom: 2rem;}
	.heading2 {font-size: 3rem; margin-bottom: 2rem;padding-left:0;}
	.subheading1 {font-size: 20px;}
	.heading-lg {font-size: 2.5rem;}
	.heading-m {font-size: 2rem;}
	.head-logo {padding: 25px 0;}
	.hero-full {flex-direction: column;align-items: center;justify-content: center;}
}
@media (max-width: 600px) {
  .flexbox {
    grid-template-columns: 1fr;
    row-gap: 50px; 
  }
  .flexbox video {
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
	.ft-col.menu {display: flex;flex-direction: column;}
	footer .wid95 {flex-direction: column;}
	.ft-col.socials a {padding: 0;}
	a.btnclass {font-size: 16px;}
	.inv-cat-wrap h2 {margin-bottom: 25px;}
	.sub-wrap {flex-direction: column-reverse;align-items: flex-start;}
	.heading1 {margin-bottom: 2rem;}
	.heading2 {margin-bottom: 2rem;}
	.padd100 {padding: 50px 20px;}
	.hero-dots {width: 200px;}
	.slick-dots.flex {gap:5px;}
	.hero-dots .slick-dots li {height: 3px;}
	.hero-full {padding: 5rem 2rem;}
}
@media only screen and (max-width: 482px) {
	.circle-wrapper {width: 140px;height: 140px;}
}
@media only screen and (max-width: 352px) {
	.heading1 {font-size: 2.5rem;}
	.heading2 {font-size: 2.5rem;}
}


