/* Site Variables */
body {
	/* site colors */
	--color1: #090b20;
	--color1-hover: #141947;
	--color1-text: #ffffff;
	--warncolor: #a70404;
	--warncolor-hover: #dd4747;
	--warncolor-text: #ffffff;

	/* Header Variables */
	--header-background: #ffffff;
	--main-header-height: 70px;
	--header-logo-width: 200px;
	--header-logo-width-mobile: 150px;
	--header-tools-width: 150px;
	--header-link-color-1: #ffffff;
	--header-menuButton-width: 35px;
	--header-menuButton-padding: 30px
}
/* End Site Variables */



/* General Styles */
body {
	font-family: 'Montserrat', sans-serif !important;
	color: #333333;
	line-height: 150%;
	padding: 0 !important;
	margin: 0 !important;
}
h1,h2,h3,h4,h5,h6 {
	line-height: 120%;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 14px;
}
h6 {
	font-size: 12px;
}
.container-fluid {
	/*max-width: 1500px;*/
	margin: 0 auto;
}
.contentContainer {
	max-width: 1500px;
	margin: 0 auto;
}
#clickLog, #clickReg {
	padding: 0 10px;
}
#leftmenu-nav-stack-list > li {
	padding-left: 5px;
}
.add20pxPadding {
	padding: 20px;
}
.add10pxPadding {
	padding: 10px;
}
.pr10 {
	padding-right: 10px;
}
.pl10 {
	padding-left: 10px;
}
.pl20 {
	padding-left: 20px;
}
.pr20 {
	padding-right: 20px;
}
.pb20 {
	padding-bottom: 20px;
}
.h100 {
	height: 100%;
}
.vCenter {
	display: table;
	width: 100%;
	height: 100%;
}
.vCenter-1 {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.searchTopMenu {
	margin-left: 0;
	margin-right: 0;
	padding-left: 10px;
	padding-right: 10px;
}
#bs-example-navbar-collapse-1 {
	padding-left: 0;
	padding-right: 0;
}
.genericButton-inline {
	display: inline-block;
	background: #D0A908;
	font-size: 14px;
	color: #ffffff !important;
	text-transform: uppercase;
	line-height: 100%;
	padding: 10px;
}
.genericButton-inline:hover {
	text-decoration: none;
	background: #b18e00;
}
.qxrFooter {
	background: #fff;
}
.loginsub {
	font-size: 20px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 300;
}
.leftlogin {
	border-right: solid 1px #e8e8e8
}
.rightlogin {
	margin-left: 20px;
}
.signbuttons {
	font-family: "Monteserrat", sans-serif !important;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.siteMaxWidth {
	display: block;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}
.siteMaxWidthDIB {
	display: inline-block;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}

.dibMax1000 {
	display: inline-block;
	width: 100%;
	max-width: 1000px;
}
.dibMax900 {
	display: inline-block;
	width: 100%;
	max-width: 900px;
}
.dibMax800 {
	display: inline-block;
	width: 100%;
	max-width: 800px;
}
.dibMax700 {
	display: inline-block;
	width: 100%;
	max-width: 700px;
}
/* End General Styles */

/* Header */
.header {
	position: relative;
	z-index: 100;
	float: left;
	width: 100%;
	background: var(--header-background);
	border-bottom: solid 1px #e3e3e3;
}
.header_main {
	position: relative;
	float: left;
	width: 100%;
	height: var(--main-header-height);
	padding-left: var(--header-logo-width);
}
.header_logo {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	float: left;
	width: var(--header-logo-width);
	height: var(--main-header-height);
	padding: 5px;
}
.header_logo img {
	display: block;
	float: left;
	width: 100%;
	height: 100%;
	object-fit: contain;
}





/* Main Menu */
.header_navigation-holder {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 100%;
	height: var(--main-header-height);
	z-index: 2;
	padding-left: var(--header-logo-width);
	padding-right: var(--header-tools-width);
}
.header_navigation {
	float: right;
	max-width: 100%;
	height: var(--main-header-height);
	margin: 0;
	padding: 0 20px 0 20px;
	list-style-type: none;
	text-align: right;
}
.header_navigation > li {
	float: left;
	/* position: relative; */
	height: var(--main-header-height);
}
.header_navigation > li > a {
	position: relative;
	display: inline-block;
	padding: 0 10px;
	font-size: 12px;
	line-height: var(--main-header-height);
	font-weight: bold;
	color: #333333;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.header_navigation > li > a:focus, .header_navigation > li > a:active {
	outline: none !important;
}
.header_navigation > li:hover > a {
	text-decoration: none;
	color: var(--color1);
}
.header_navigation > li > a:after {
	content: "";
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color1);
	opacity: 0;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.header_navigation > li:hover > a:after {
	bottom: 10px;
	opacity: 1;
}



/* Sub Menus */
.menu-submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #f1f1f1;
	padding: 20px;
	text-align: left;
	border-top: solid 2px #d3d3d3;
}
.menu-submenu a {
	color: #000000;
}
.menu-submenu:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 5px;
	background: var(--color1);
	z-index: 2;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.menu-submenu:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 50%;
	height: 5px;
	background: var(--color1-hover);
	z-index: 1;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.menu-submenu-section {
	float: left;
	width: 20%;
	padding: 10px;
}
.menu-submenu-section-heading {
	position: relative;
	float: left;
	width: 100%;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	color: #333333;
	margin-bottom: 10px;
	padding: 0 0 10px 0;
}
.menu-submenu-section-heading:after {
	content: "";
	width: 40px;
	height: 3px;
	background: var(--color1);
	position: absolute;
	bottom: 0;
	left: 0;
}
.menu-submenu ul {
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.menu-submenu ul li {
	float: left;
	width: 100%;
}
.menu-submenu ul li a {
	position: relative;
	float: left;
	width: 100%;
	padding: 5px 0;
	font-size: 12px;
	font-weight: bold;
	color: #333333;
}
.menu-submenu ul li > a:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 40px;
	height: 3px;
	background: var(--color1);
	opacity: 0;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
.menu-submenu ul li > a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 65px;
	width: 20px;
	height: 3px;
	background: var(--color1-hover);
	opacity: 0;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
}
.menu-submenu ul li > a:hover {
	text-decoration: none;
	color: var(--color1);
}
.menu-submenu ul li:hover > a:before {
	left: 0;
	width: 10px;
	opacity: 1;
}
.menu-submenu ul li:hover > a:after {
	left: 13px;
	width: 5px;
	opacity: 1;
}
/* End Sub Menus */
/* End Main Menu */

.header_tools {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	width: var(--header-tools-width);
	height: var(--main-header-height);
	display: block;
	padding: 0 10px;
	text-align: center;
}
.header_tools-item {
	position: relative;
	float: left;
	width: 33.33333333333333%;
	/* line-height: var(--main-header-height); */
	font-size: 12px;
	font-weight: bold;
	color: #333;
	margin-top: 5px;
}
.header_tools-item.noCart {
	width: 50%;
}

.header_tools-item_hoverContent {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #ffffff;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	width: 200px;
	padding: 10px;

	-webkit-box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.37);
	-moz-box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.37);
	box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.37);

	line-height: 120%;
}
.header_tools-item:hover .header_tools-item_hoverContent {
	display: block;
}
.header_tools-item_hoverContent:after {
	bottom: 100%;
	right: 14px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #ffffff;
	border-width: 8px;
	margin-left: -8px;
}
.header_tools-item_hoverContent > a {
	float: left;
	width: 100%;
	color: #000000 !important;
}
.headerWishCount {
	font-size: 26px;
	line-height: 110%;
	padding: 5px 0 0px;
}
.headerWishCount-text2 {
	margin-bottom: 10px;
}
.header_tools-item_hoverContent-link {
	display: inline-block;
	line-height: 130%;
	padding: 5px 10px;
	margin-top: 5px;
	background: var(--color1);
	color: var(--color1-text);

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.header_tools-item_hoverContent-link:hover {
	text-decoration: none;
	background: var(--color1-hover);
	color: var(--color1-text);
}
.warnButton {
	background: var(--warncolor);
	color: var(--warncolor-text);
}
.warnButton:hover {
	background: var(--warncolor-hover);
}
.tinyWLcount {
	position: absolute;
	z-index: 2;
	color: #000000;
	display: block;
	font-size: 10px;
	line-height: 100%;
	top: -11px;
	right: 8px;;
	text-align: center;
}

/* Cart */
.cartButton {
	padding-right: 10px;
}
.cartButton.noCart {
	padding-right: 0px;
}
.cartCounterHolder {
	position: absolute;
	z-index: 1;
	top: -16px;
	right: 8px;
	height: 20px;
	width: 35px;
	overflow: hidden;
}
.cartCounterHolder #cmQty {
	float: right;
	width: 100%;
	height: 100%;
	border: none;
	margin: 0;
	padding: 0;
}
/* End Cart Counter */

/* Menu Button */
.menuButton {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: var(--header-menuButton-width);
	height: var(--main-header-height);
	background: none;
	text-align: center;
}
.menuButton:focus {
	outline: none;
}
/* End Menu Button */

/* Search */
.openSearchButton:active, .openSearchButton:focus {
	outline: none;
}
.mobileSearch {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0px;
	opacity: 0;;
	line-height: var(--main-header-height);
	z-index: 5;
	background: var(--header-background);
	text-align: center;
	overflow: hidden;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.search-open .mobileSearch {
	height: var(--main-header-height);
	opacity: 1;
}
.mobileSearchClose {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 5;
	width: 40px;
	height: var(--main-header-height);
	background: var(--warncolor);
	text-align: center;
}
.mobileSearchClose .SVG-close {
	width: 22px;
	height: 100%;
}
.mobileSearchClose .SVG-close * {
	fill: var(--warncolor-text);
	stroke: var(--warncolor);
}
.mobileSearch-search {
	position: relative;
	z-index: 4;
	width: 100%;
	height: var(--main-header-height);
	padding-right: 100px;
}
.mobileSearchButton {
	position: absolute;
	top: 0;
	right: 40px;
	z-index: 3;
	width: 60px;
	height: var(--main-header-height);
	margin: 0;
}
.mobileSearchButton:after {
	content: "";
	position: absolute;
	top: 20%;
	right: 100%;
	z-index: 1;
	width: 2px;
	height: 60%;
	background: #cecece;
}
.mobileSearchButton .SVG-search {
	height: var(--main-header-height);
}
.search-query {
	float: left;
	width: 100%;
	height: 100%;
	height: var(--main-header-height);
	background: none;
	border: none;
	padding: 0 10px 0 20px;
	font-size: 16px;
	letter-spacing: 1px;
}
.search-query:focus, .search-query:active {
	outline: none;
}
/* End Search */

/* Header media queries */
@media (min-width: 768px) {
	.header_navigation > li:hover > .menu-submenu {
		display: block;
	}
}
@media (max-width: 767px) {
	.menuButton {
		display: block;
	}
	.header_main {
		padding-left: var(--header-logo-width-mobile);
	}
	.header_logo {
		width: var(--header-logo-width-mobile);
		padding-left: var(--header-menuButton-padding);
	}
	.header_navigation-holder {
		display: none;
		top: var(--main-header-height);
		height: auto;
		max-height: none;
		padding-left: 0px;
		padding-right: 0px;
		overflow-y: scroll;
		border-bottom: solid 2px var(--color1);
	}
	.header_navigation-holder .vCenter, .header_navigation-holder .vCenter-1 {
		display: block;
		float: left;
		height: auto;
	}
	.header_navigation {
		background: #ffffff;
		height: auto;
		width: 100%;
	}
	.header_navigation > li {
		float: left;
		width: 100%;
		height: auto;
	}
	.header_navigation > li > a {
		position: relative;
		float: left;
		width: 100%;
		height: auto;
		line-height: 40px;
		text-align: left;
		padding: 10px 20px;
		border-bottom: solid 1px #e8e8e8;
	}
	.header_navigation > li > a.menu:before {
		border-style: solid;
		border-width: 0 0 3px 3px;
		content: '';
		display: inline-block;
		height: 8px;
		width: 8px;
		position: absolute;
		top: 50%;
		right: 4px;
		margin-top: -5px;
		vertical-align: top;


		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);	
	}
	.header_navigation > li:last-child > a {
		border-bottom: none;
	}
	.menu-submenu {
		position: static;
		float: left;
	}
	.menu-submenu-section {
		width: 100%;
	}
	.menu-submenu-open .menu-submenu {
		display: block;
	}
	.menu-mobileMenu-open.header_navigation-holder {
		display: block;
	}
}
/* End Header media queries */
/*End Header*/

/* Index Page styles */

/* Slick Slider */
.sliderHolder {
	position: relative;
	padding: 0 20px;
}
.singleCaption {
	position: absolute;
	bottom: 200px;
	left: 100px;
	text-align: center;
	
	/* border: 3px solid; */
	margin: 0;
	opacity: 1;
	z-index: 2;
}
.singleCaption a {
	float: left;
	position: relative;
	top: 0;
	left: 0;
	background: var(--color1);
	color: var(--color1-text);
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 20px;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.singleCaption a:hover, .singleCaption a:active, .singleCaption a:focus {
	text-decoration: none;
	top: -5px;
	left: -5px;
}
.singleCaption a:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	/* background: #000000; */
	width: 100%;
	height: 100%;
	z-index: -1;
	border: solid 2px var(--color1);

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.singleCaption a:hover:after, .singleCaption a:active:after, .singleCaption a:focus:after {
	top: 15px;
	left: 15px;
}
.main-slider {
	margin-top: 20px;
	margin-bottom: 20px !important;
	overflow: hidden;

	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.slick-dots {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 13px 15px 13px 15px !important;
	margin: 0;
	background: none;
}
.slick-dots li button {
	font-size: 0px;
}
.slick-slide::before {
	opacity: 0 !important;
}
@media (max-width: 767px) {
	.singleCaption {
		bottom: 80px;
		left: 50px;
	}
	.singleCaption a {
		font-size: 15px;
	}
}
@media (max-width: 575px) {
	.singleCaption {
		left: 30px;
	}
}
/* End Slick Slider */

/* Products Section */
.pH1 {
	position: relative;
	margin-bottom: 20px;
}
.pH1-inner {
	float: left;
	width: 100%;
	height: calc(50vw - 7.5px);
	max-height: 750px;
}
.pH1-text {
	float: left;
	width: 50%;
	height: 100%;
}
.pH1-text-inner {
	float: left;
	padding: 20px 20px 20px 100px;
	color: var(--color1);
}
.pH1-text-inner-1 {
	float: left;
	width: 100%;
	line-height: 120%;
	font-size: 80px;
	font-weight: normal;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.pH1-text-inner-2 {
	float: left;
	width: 100%;
	line-height: 120%;
	font-size: 42px;
	font-weight: lighter;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.pH1-text-inner-3 {
	float: left;
	width: 100%;
	line-height: 120%;
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.pH1-image {
	float: left;
	width: 50%;
	height: 100%;
	position: relative;
	/*background: #f0f0f0;*/
}
.pH1-image-1 {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	padding: 20px;
}
.pH1-image-1 img {
	float: left;
	width: 90%;
	height: 90%;
	position: relative;
	left: 0;
	top: 0;
	z-index: 1;
	object-fit: cover;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;

	-webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
	-moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
	box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}
.pH1-image-1:hover img {
	top: -10px;
	left: -10px;

	-webkit-box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.48);
	-moz-box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.48);
	box-shadow: 10px 10px 25px 0px rgba(0,0,0,0.48);
}
.pH1-image-1-text {
	position: absolute;
	z-index: 2;
	float: left;
	width: 80%;
	right: 25px;
	bottom: 35px;
	background: var(--color1);
	color: var(--color1-text);
	padding: 15px 10px;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.pH1-image-1:hover .pH1-image-1-text {
	right: 30px;
	bottom: 40px;
}
.pH1-image-1-text:after {
	content: "";
	position: absolute;
	z-index: 0;
	float: left;
	width: 100%;
	height: 100%;
	top: 5px;
	left: 5px;
	border: solid 2px var(--color1);

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.pH1-image-1:hover .pH1-image-1-text:after {
	top: 15px;
	left: 15px;
}

.transitions {
	/*transitions example*/
	-webkit-transition: opacity 0.8s ease, top 0.8s ease, left 0.8s ease, right 0.8s ease, bottom 0.8s ease;
	-moz-transition: opacity 0.8s ease, top 0.8s ease, left 0.8s ease, right 0.8s ease, bottom 0.8s ease;
	-o-transition: opacity 0.8s ease, top 0.8s ease, left 0.8s ease, right 0.8s ease, bottom 0.8s ease;
	transition: opacity 0.8s ease, top 0.8s ease, left 0.8s ease, right 0.8s ease, bottom 0.8s ease;
}

.scroll-reveal {
	/*do stuff*/
}
@media (max-width: 900px) {
	.pH1-inner {
		height: auto;
		max-height: none;
	}
	.pH1-text {
		width: 100%;
	}
	.pH1-image {
		width: 100%;
	}
	.pH1-text-inner {
		float: left;
		padding: 20px 20px 20px 20px;
		text-align: center;
	}
}
@media (max-width: 550px) {
	.pH1-text-inner-1 {
		font-size: 60px;
	}
	.pH1-text-inner-2 {
		font-size: 30px;
	}
	.pH1-text-inner-3 {
		font-size: 13px;
	}
	.pH1-image-1 {
		width: 100%;
	}
}
/* End Products Section */


/* Products Section 2 */
.pH2 {
	position: relative;
	margin-bottom: 20px;
	padding: 20px;
}
.pH2-top {
	float: left;
	width: 100%;
	position: relative;
}
.pH2-top img {
	float: left;
	width: 100%;
	height: 400px;
	object-fit: cover;
	position: relative;
	z-index: 1;
	
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.pH2-text {
	float: left;
	width: 100%;
	position: absolute;
	top: 100px;
	left: 0;
	z-index: 2;
	padding: 20px;
	text-align: center;
}
.pH2-text-inner {
	display: inline-block;
	padding: 10px;
	background: #ffffff;
}
.pH2-text-1 {
	display: inline-block;
	font-size: 11px;
	line-height: 120%;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 5px;
	max-width: 100%;
}
.pH2-text-2 {
	display: inline-block;
	font-size: 20px;
	line-height: 120%;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.pH2-bottom {
	position: relative;
	float: left;
	width: 100%;
	z-index: 2;
	text-align: center;
}
.pH2-bottom-card {
	display: inline-block;
	width: 280px;
	height: 400px;
	margin: 20px 20px 70px 20px;
	position: relative;
	top: -100px;
	color: #333333;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.pH2-bottom-card:after {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
	width: 100%;
	height: 100%;
	border: solid 2px var(--color1);

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.pH2-bottom-card:hover {
	color: #333333;
}
.pH2-bottom-card:hover:after {
	top: 10px;
	left: 10px;
}
.pH2-bottom-card img {
	float: left;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: relative;
	object-fit: cover;

	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.pH2-bottom-card:hover img {
	top: -5px;
	left: -5px;
}
.pH2-bottom-card-text {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 18px;
	position: relative;
	padding-top: 10px;
}
.pH2-bottom-card-text_large-text {
	font-size: 15px;
	line-height: 120%;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: bold;
}
.pH2-bottom-card-text_small-text {
	font-size: 12px;
	line-height: 120%;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: underline;
}
@media (max-width: 900px) {
	.pH2-top img {
		height: 400px;
	}
}
@media (max-width: 550px) {
	/*.pH2-top img {
	    height: 320px;
	}*/
	.pH2-bottom-card {
		width: 245px;
		height: 330px;
		margin: 20px 0px 70px 0px;
	}
}
/* End Products Section 2 */


/* End Index Page styles */












/* Footer Styles */
.footerNew {
	float: left;
	width: 100%;
	margin-top: 50px;
}
.footer-inside {
	position: relative;
	float: left;
	width: 100%;
	border-top: solid 1px #d9d9d9;
	text-align: center;
	padding-bottom: 30px;
	background: #4d4d4d;
}
.footerTopRow {
	float: left;
	width: 100%;
	padding: 20px;
	border-top: solid 1px #e5e5e5;
}
.footerBottomRow {
	float: left;
	width: 100%;
	padding: 10px 20px;
	border-top: solid 1px #e5e5e5;
}
.footer-section {
	display: inline-block;
	width: 200px;
	margin-bottom: 30px;
	vertical-align: top;
}
.footer-section-top {
	float: left;
	width: 100%;
	color: #000000;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	line-height: 120%;
	margin-bottom: 10px;
}
.footer-section-content {
	float: left;
	width: 100%;
	font-size: 11px;
	line-height: 120%;
	text-transform: uppercase;
	font-weight: bold;

}
.footer-section-content a {
	float: left;
	width: 100%;
	font-size: 11px;
	color: #616161;
	line-height: 120%;
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px 0;
	word-break: break-all;
}
.socialFooter .footer-section-content a {
	font-size: 20px;
}
.footer-section-content a:hover {
	color: #333333;
	text-decoration: none;
}
.footer-location-section {
	display: inline-block;
	padding: 20px;
	vertical-align: top;
	color: #000000;
}
.footer-location-section a {
	color: inherit;
}
.footer-location-section a:hover {
	text-decoration: none;
	color: #333333;
}
.leftFooterHolder {
	float: left;
}
.rightFooterHolder {
	float: right;
}
/* Footer Media Queries */
@media (max-width: 991px) {
	.leftFooterHolder {
		width: 100%;
	}
	.rightFooterHolder {
		width: 100%;
	}
	.footer-section {
		float: left;
		width: 50%;
	}
}
@media (max-width: 575px) {
	.footer-section {
		width: 100%;
	}
}
/* End Footer Media Queries */
/* End Footer Styles */






/*SVGs*/
.SVG-user {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
}
.SVG-user * {
	stroke: #333333;
}
.SVG-cart {
	position: relative;
	top: 0px;
	display: inline-block;
	width: 17px;
	height: 17px;
}
.SVG-cart * {
	stroke: #333333;
}
.SVG-search {
	position: relative;
	top: 2px;
	display: inline-block;
	width: 14px;
	height: 14px;
}
.SVG-search * {
	stroke: #333333;
}
.SVG-heart {
	position: relative;
	top: 0px;
	display: inline-block;
	width: 20px;
	height: 18px;
}
.SVG-heart * {
	stroke: #ac1313;
	fill: #ac1313;
}
.SVG-menu {
	position: relative;
	top: 2px;
	display: inline-block;
	width: 100%;
	height: 20px;
}
.SVG-menu * {
	stroke: #333333;
}
.SVG-close {
	position: relative;
	top: 2px;
	display: inline-block;
	width: 100%;
	height: 20px;
}
.SVG-close * {
	stroke: #333333;
}

/*End SVGs*/





