﻿/*===================== 
	Color information
	
	-red #d21f0f
blue #202e3b
gray #cad3dc
	-
	-
	-
		 
=======================*/
/*===================== 
	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 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Outfit", sans-serif;
	margin: 0;
	padding: 0;
}

svg:not(:root) {
	overflow: hidden;
	/*reset*/
}

.clear {
	clear: both;
}

img {
	border: 0;
}

/*===================== 
	typography 
=======================*/

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 30px;
	font-weight: 700;
}

h2 {
	font-size: 28px;
	font-weight: 700;
}

h3 {
	font-size: 24px;
	font-weight: 700;
}

h4 {
	font-size: 20px;
	font-weight: 700;
}

h5 {
	font-size: 18px;
	font-weight: 700;
}

h6 {}

p {
	font-size: 18px;
	margin: 0;
}

.bold {
	font-weight: bold;
}
.header-text {
	width: 100%;
	font-size: clamp(24px, 2vw, 30px);
	font-weight:500;
	padding-bottom: 20px;
	line-height: 1;
	text-transform: uppercase;
}
.header-text span {
	font-weight: 700;
}
.text-blue {
	color:#202e3b;
}
.text-white {
	color:#fff;
}
.text-center {
	text-align: center;
}


/*===================== 
	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;
}
.butn-red {
	font-family: "Outfit", sans-serif;
	background:#d21f0f;
	color:#fff!important;
	display:flex;
	justify-content: center;
	align-items: center;
	padding:15px;
	font-size: 18px;
	font-weight:600;
	text-align:center;
	width: auto;
	max-width: 100%;
	margin:0;
    transition: .2s ease-in;
	outline: none;
	cursor: pointer;
	border-radius:10px;
	border:1px solid #d21f0f;
	text-transform: uppercase;
	box-sizing: border-box;
	gap:4px;
	flex-wrap: wrap;
}
.butn-red span {
	font-weight: 400;
}
.butn-red:hover {
	background:#fff;
	color:#d21f0f!important;
	border-radius:1px;
}
.butn-blue {
	font-family: "Outfit", sans-serif;
	background:#202e3b;
	color:#fff!important;
	display:flex;
	justify-content: center;
	align-items: center;
	padding:15px;
	font-size: 18px;
	font-weight:600;
	text-align:center;
	width: auto;
	max-width: 100%;
	margin:0;
    transition: .2s ease-in;
	outline: none;
	cursor: pointer;
	border-radius:10px;
	border:1px solid #202e3b;
	text-transform: uppercase;
	box-sizing: border-box;
	gap:4px;
	flex-wrap: wrap;
}
.butn-blue span {
	font-weight: 400;
}
.butn-blue:hover {
	background:#fff;
	color:#202e3b!important;
	border-radius:1px;
}
.text-link-red {
	font-weight: 600;
	color:#d21f0f!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
}
.text-link-red:hover {
	opacity: 0.7;
}
.brn-cont-1 {
	display: flex;
	flex-wrap: wrap;
	gap:10px;
}


/*---POP-UP -----------------------------------*/

.popup .close {
    position: absolute;
    top: 10px;
    right: 15px;
	transition: all 0.2s;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	border: 1px solid #000;
	padding:0 8px 0px 8px;
	background: #fff;
	border-radius: 10px;
}
.popup .close:hover {
    background: #000;
	color:#fff !important;
}
.popup .content {
  max-height: 60%;
  overflow: auto;
}
.popup p{
	font-size: 18px;
	padding: 1% 2% !important;
	box-sizing: border-box;
}
.popup h1{
	padding: 1% 2%;
	box-sizing: border-box;
}
.popup p a{
	text-decoration: underline;
}
.popup p a:hover{
	color:#000;
	text-decoration: none;
}
/*Let's make it appear when the page loads*/
.overlay:target:before {
    display: none;
}
.overlay:before {
	content:"";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	background: rgba(0, 0, 0, 0.7);
	position: fixed;
	z-index: 99999;
}
.overlay .popup {
	background: #fff;
	border-radius: 30px;
	width: 100%;
	max-width: 1000px;
	position: absolute;
	top: 6vw;
	left: 0;
	right: 0;
	float:none;
	padding:0;
	margin: 0 auto;
	text-align:left;
	z-index: 99999999;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	color:#000;
	font-size: 16px;font-weight: 400;
	box-sizing: border-box;
	overflow: hidden;
}
.overlay:target .popup {
    top: -180%;
    left: -100%;
}
.popup img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}


/*===================== 
	header styles 
=======================*/

.head-search {
	width: 100%;
	background:#cad3dc;
	display:none;
	position: relative;
  	z-index: 20;
}
.search-bar {
	display: flex;
	align-items: center;
	padding:20px;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
	border-radius:10px;
	background:#fff;
}
.search-bar input {
	border: 0px !important;
	outline: none !important;
	font-family: 'Outfit', sans-serif;
	padding: 5px 10px !important;
	box-sizing: border-box !important;
	background: #fff !important;
	width: calc(100% - 33px) !important;
	color: #000 !important;
	font-size: 18px;
}
.search-bar input::placeholder {
	color:#000;
	opacity: 1;
}
.search-bar button {
  font-size: 22px;
  color: #d21f0f;
  border: 0px;
  outline: none;
  background: none;
  transition: .2s ease-in;
}

.header-wrap {
	width: 100%;
	margin: 0;
	background:#fff;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.4);
	position: relative;
 	z-index: 20;
}

header {
	margin: 0 auto;
	width: 100%;
	max-width: 1800px;
	padding:10px 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:10px;
}
.head-logo-1 {
	display: flex;
	align-items: center;
}
.head-logo-1 img {
	width: 50%;
	max-width: 190px;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}
.head-logo-1 img:last-of-type {
	z-index: 1;
	margin-left: -7%;
}
.head-links {
	position: relative;
	display: flex;
	align-items: center;
	gap:10px;
}
.head-links:after {
	content:"";
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border:1px solid #000;
	background:#fff;
	position: absolute;
	z-index: 1;
	left:0;
	top:0;
	box-sizing: border-box;
}
.head-links ul {
	padding:0 5px 0 25px;
	margin:0;
	display: flex;
	gap:10px;
	position: relative;
	z-index: 2;
}
.head-links ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.head-links ul li a {
	font-size:18px;
	color:#000;
	transition: .2s ease-in;
}
.head-links ul li a:hover {
	opacity: 0.7;
}
.toggle-search {
	border-radius: 10px;
	border:2px solid #d21f0f;
	background:#d21f0f;
	transition: .2s ease-in;
	font-size:18px;
	color:#fff;
	padding: 20px;
	box-sizing:border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	cursor: pointer;
}
.toggle-search:hover {
	border:2px solid #202e3b;
	background:#202e3b;
}
.sticky-button {
	position: fixed;
	right: 0px;
	top:calc(10vh + 100px);
	z-index:400;
}
.sticky-button a {
	writing-mode: vertical-lr;
	text-orientation: mixed;
	transform: rotate(180deg);
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	background: #d21f0f;
	padding: 15px;
	color: #fff;
	font-weight: 700;
	border:1px solid #d21f0f;
	transition: .2s ease-in;
	box-sizing: border-box;
}
.sticky-button a:hover {
	background:#202e3b;
}

/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile, .mobile-nav-cont-1 { display:none;}


nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	position: relative;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: center;
}

nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	transition: .2s ease-in;
}

nav.primary ul li a {
	font-family: "Outfit", sans-serif;
	color: #000;
	font-size: clamp(12px, 1.2vw, 18px);
	text-decoration: none;
	padding:10px;
	display: block;
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	transition: .2s ease-in;
	font-weight:400;
	cursor: pointer;
	white-space: nowrap;
}

nav.primary ul li a:hover {
	background:#202e3b;
	color: #fff;
}
nav.primary ul li:hover a {
	background:#202e3b;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding: 10px 20px;
	color: #fff;
	background:#202e3b;
	display: block;
	text-align: center;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	color:#d21f0f;
}

/* 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: auto;
	min-width: 200px;
	position: relative;
	margin: 0;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
	width: 100%;
	position: relative;
	background:#202e3b;
	display: flex;
}
.wrap-hero img {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 0;
	top:0;
	left:0;
	object-fit: cover;
	object-position: center;
	display: block;
}
.wrap-hero .container-lg {
	position: relative;
	z-index: 2;
	padding:10vw 20px;
}
.hero-overlay {
	width: 100%;
	max-width:700px;
	display: flex;
	flex-direction: column;
	gap:10px;
}
.hero-overlay h1 {
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
	font-size: clamp(36px, 4vw, 75px);
	font-weight:700;
	text-transform: uppercase;
	line-height: 1;
}
.hero-overlay h1 span {
	font-weight:500;
	display: block;
}
.hero-overlay .brn-cont-1 a {
	width: calc(50% - 5px);
}
.wrap-cta {
	width: 100%;
	padding:10px 0;
	background:#202e3b;
	position: relative;
	z-index: 1;
}
.wrap-cta .container-md {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.wrap-cta a {
	display: flex;
	flex-direction: column;
	padding:20px;
	border-right: 1px solid #fff;
	text-align: center;
	width:25%;
	align-items: center;
	box-sizing: border-box;
	transition: .2s ease-in;
}
.wrap-cta a i {
	color:#d21f0f;
	font-size:40px;
	padding-bottom: 10px;
	transition: .2s ease-in;
}
.wrap-cta a h2 {
	color:#fff;
	font-size:22px;
	font-weight:700;
	padding-bottom:4px;
	transition: .2s ease-in;
}
.wrap-cta a p {
	color:#fff;
	font-size:18px;
	font-weight:500;
	transition: .2s ease-in;
}
.wrap-cta a:last-of-type {
	border-right:0px;
}
.wrap-cta a:hover {
	background:rgba(0,0,0,0.1);
	border-radius: 10px;
}
.wrap-cta a:hover i {
	color:#fff;
}
.wrap-cta a:hover h2, .wrap-cta a:hover p {
	opacity: 0.7;
}
.wrap-featured {
	width: 100%;
	background:#cad3dc;
	padding: 60px 0 80px 0;
	position: relative;
	z-index: 1;
}
.featured-slider {
	display: flex !important;
	align-items: center;
	gap:5px;
}
.featured-slider .slick-slide {
	padding:10px 10px 20px 10px;
	height: auto;
}
.featured-slider .slick-track {
	display: flex!important;
	align-items: stretch;
}
.featured-slide-1 {
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 20px 0 20px;
	height: 100%;
	justify-content: space-between;
	box-sizing: border-box;
}
.featured-slide-1 h2 {
	color:#000;
	font-size:18px;
	font-weight:600;
	text-align: center;
	min-height: 30px;
}
.featured-slide-1 img {
	width: 100%;
	height: auto;
	display: block;
}
.featured-slide-1 p {
	font-size:20px;
	font-weight:600;
	color:#d21f0f;
	text-align: center;
}
.featured-slide-1 p span {
	display: block;
	font-weight:700;
}
.featured-slide-1 a {
	margin-bottom:-20px;
}
.featured-slider .slick-dots {
	position: absolute;
	top:100%;
	z-index: 1;
	width: 100%;
	display: flex;
	justify-content: center;
	gap:10px;
	padding:20px 0 0 0;
	margin:0;
}
.featured-slider .slick-dots li {
	padding:0;
	margin:0;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background:#fff;
	list-style: none;
	cursor: pointer;
}
.featured-slider .slick-dots li.slick-active {
	opacity: 0.6;
}
.featured-slider .slick-dots li button {
	display: none;
}
.wrap-about {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	z-index: 1;
}
.about-left {
	width:50%;
	box-sizing: border-box;
	padding:clamp(20px, 11vw, 200px) clamp(20px, -880px + 50vw, 100vw) clamp(20px, 11vw, 200px) 5vw;
	background: rgba(255,255,255,0.9);
}
.about-left h2 {
	font-size:clamp(26px, 1.2vw, 50px);
	font-weight:800;
	text-transform: uppercase;
}
.about-left h3 {
	font-size:clamp(18px, 1.2vw, 30px);
	font-weight:600;text-transform: uppercase;
}
.about-left p {
	line-height: 1.5;
	padding:20px 0;
}
.about-right {
	width: 50%;
	position: relative;
	padding:60px 5vw 80px clamp(20px, -880px + 50vw, 100vw);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background:#202e3b;
	box-sizing: border-box;
}
.about-right img {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	top:0;
	left:0;
	object-fit: cover;
	object-position: center;
	display: block;
}
.about-right-col {
	position: relative;
	z-index: 2;
	width: 100%;
	display: block;
}
.about-right-col h2 {
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
	text-align: center;
	padding-bottom: 30px;
	font-size:clamp(18px, 1.2vw, 3260px);
	font-weight:600;
}
.slider-reviews {

}
.slider-reviews .slick-slide {
	padding:10px;
	height: auto;
}
.slider-reviews .slick-track {
	display: flex!important;
	align-items: stretch;
}

.review-slide {
	padding:20px;
	box-sizing: border-box;
	border-radius: 10px;
	background:rgba(32,46,59,0.70);
	display: flex;
	flex-direction: column;
	gap:20px;
	justify-content: space-between;
	border:1px solid #fff;
	height: 100%;
}
.review-stars {
	display: flex;
	gap:5px;
	font-size:20px;
	color:#d21f0f;
	padding-bottom: 10px;
}
.review-slide p {
	font-size:18px;
	line-height: 1.4;
	color:#fff;
}
.review-slide p .bold {
	text-transform: uppercase;
	font-size:20px;
	font-weight:800;
	color:#fff;
}
.slider-reviews .slick-dots {
	position: absolute;
	top:100%;
	z-index: 1;
	width: 100%;
	display: flex;
	justify-content: center;
	gap:10px;
	padding:20px 0 0 0;
	margin:0;
}
.slider-reviews .slick-dots li {
	padding:0;
	margin:0;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background:#fff;
	list-style: none;
	cursor: pointer;
}
.slider-reviews .slick-dots li.slick-active {
	opacity: 0.6;
}
.slider-reviews .slick-dots li button {
	display: none;
}
.wrap-brands {
	width: 100%;
	position: relative;
	padding:140px 20px 40vw 20px;
	box-sizing: border-box;
	background:#202e3b;
	z-index: 1;
}
.wrap-brands .container-lg {
	border-radius: 10px;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	gap:20px 0;
	position: relative;
	z-index: 2;
	padding:40px 20px;
}
.wrap-brands .container-lg h2 {
	width: 100%;
	padding-bottom:30px;
	text-align: center;
}
.wrap-brands .container-lg a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 19%;
	border:1px solid rgba(32,46,59,0.00);
	border-radius: 10px;
	box-sizing: border-box;
	padding:5px;
	transition: .2s ease-in;
}
.wrap-brands .container-lg a img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto;
}
.wrap-brands .container-lg a:hover {
	opacity: 0.7;
	border:1px solid rgba(32,46,59,0.70);
}
.brand-bg-1 {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	z-index: 1;
}
.wrap-location {
	width: 100%;
	background:#202e3b;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.location-left {
	width: 50%;
	box-sizing: border-box;
	padding: clamp(20px, 11vw, 200px) clamp(20px, -880px + 50vw, 100vw) clamp(20px, 11vw, 200px) 5vw;
}
.location-left ul {
	width: 50%;
	padding:10px 0;
	margin:0;
}
.location-left ul li {
	padding:8px 0;
	margin:0;
	list-style: none;
	display: flex;
	gap:4px;
	font-size:22px;
}
.location-left ul li a {
	color:#fff;
	font-weight:500;
	transition: .2s ease-in;
}
.location-left ul li i {
	color:#d21f0f;
}
.location-left ul li a:hover {
	color:#d21f0f;
}
.hours-box {
	width: 48%;
	border-radius: 10px;
	padding:10px;
	box-sizing: border-box;
	background:#fff;
	display: flex;
	flex-direction: column;
}
.hours-box h3 {
	text-align: center;
	color:#d21f0f;
	font-weight: 500;
	font-size:22px;
	text-transform: uppercase;
	padding-bottom: 15px;
}
.hours-box p {
	text-align: center;
	color:#000;
	font-weight:700;
	font-size:18px;
	text-transform: uppercase;
	padding-bottom: 10px;
}
.location-right {
	width: 50%;
	min-height: 350px;
}
.location-right iframe {
	width: 100%;
	height: 100%;
}
.contact-list ul {
	padding:5px 0;
	margin:0;
}
.contact-list ul li {
	padding:2px 0;
	margin:0;
	list-style: none;
	font-size: 18px;
}
.contact-list ul li a {
	transition: .2s ease-in;
	color:#202e3b;
}
.contact-list ul li a:hover {
	color:#d21f0f;
}

/*===================== 
	Form styles 
=======================*/

.wrap-banner {
	padding: 20px 10px;
	width: 100%;
	box-sizing: border-box;
}
.wrap-banner .container-sml {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap:10px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background:#202e3b;
	padding:40px 20px;
}
.wrap-banner .container-sml img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 0.7;
}
.wrap-banner .container-sml p {
	position: relative;
	z-index: 2;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
	font-size: clamp(18px, 2vw, 30px);
	font-weight: 400;
	line-height: 1.2;
}
.wrap-banner .container-sml p span {
	font-weight: 700;
}
.wrap-banner .container-sml a {
	position: relative;
	z-index: 2;
}


/*===================== 
	Form styles 
=======================*/

/* Containers */
.wrap-form {
	width: 100%;
	position: relative;
	padding: 140px 20px 26vw 20px;
	box-sizing: border-box;
	background: #202e3b;
	z-index: 1;
	overflow: hidden;
}
.wrap-form .container-md {
	border-radius: 10px;
	background: #fff;
	position: relative;
	z-index: 2;
	padding: 40px 20px;
}
.wrap-form .container-lg {
	position: relative;
	border-radius: 10px;
	z-index: 2;
	padding: 40px 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;
}

.form-info-cont input, .form-info-cont date {
	font-family: "Outfit", sans-serif;
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
    outline:none;
    border:1px solid #000;
    color:#000; 
	border-radius: 5px;
}

.select-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:0px!important;
    border-radius: 0px!important;
    width:100%;
    background:#fff;
    box-sizing: border-box;
    position: relative;
}
.select-cont  select {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    appearance: initial;
    width:100%;
    background-color:transparent;
    border:0px!important;
    outline:none!important;
    font-size: 16px!important;
    font-weight: 400!important;
    padding:15px!important;
    box-sizing: border-box;
    color:#000; 
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.select-cont i {
    position: absolute;
    z-index: 1;
    right:0px;
}

.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: "Outfit", sans-serif;
	width: 100%;
	display: block;
	padding: 15px;
	font-size: 16px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
    outline:none;
    border:1px solid #000;
	border-radius: 5px;
}
.form-info-cont button {
	width: 100%;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 

.click-to-show {
	display: none;
}
.click-to-show.clicked {
	display: block;
}
.click-show.clicked {
	display: none;
}

.iframe-form-1 {
	width: 100%;
	height: 1250px;
}
.iframe-form-1 iframe {
	width: 100%;
}


/*===================== 
	animation styles 
=======================*/

.animate-cont {
    overflow: hidden;
}

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}
.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}

.load-right {
    animation: slide-in-right 1s ease-in-out both;
}
.load-left {
    animation: slide-in-left 1s ease-in-out both;
}
.load-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
}
.load-top {
    animation: fade-in-top 1s ease-in-out both;
}



/* ----------------------------------------------
 * Generated by Animista on 2021-2-11 23:32:31
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
}
.wrap-content {
	width: 100%;
	box-sizing: border-box;
	background:#fff;
	position: relative;
	z-index: 1;
}
.wrap-content .container-lg, .wrap-content .container-md,.wrap-content .container-sml {
	padding:60px 20px;
}
.crumb {
	display: flex;
	padding:0 0 60px 0;
	margin:0;
}
.crumb li {
	padding:0 5px;
	margin:0;
	border-right: 1px solid #d21f0f;
	list-style: none;
	font-size: 14px;
	font-weight:700;
}
.crumb li:first-of-type {
	padding-left: 0px;
}
.crumb li:last-of-type {
	border-right:0px;
}
.crumb li a {
	font-weight: 500;
	color:#000;
}
.crumb li a:hover {
	color:#000;
	opacity: 0.7;
}
.content-header {
	width: 100%;
	background:#202e3b;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
}
.header-overlay {
	width: 100%;
	max-width: 700px;
	position: relative;
	z-index: 2;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
	padding: clamp(40px, 7vw, 120px) 40px clamp(40px, 7vw, 120px) clamp(20px, -880px + 50vw, 100vw);
	background-image: -webkit-linear-gradient(180deg,rgba(32,46,59,0.00) 0%,rgba(32,46,59,0.67) 46.11%);
	background-image: -moz-linear-gradient(180deg,rgba(32,46,59,0.00) 0%,rgba(32,46,59,0.67) 46.11%);
	background-image: -o-linear-gradient(180deg,rgba(32,46,59,0.00) 0%,rgba(32,46,59,0.67) 46.11%);
	background-image: linear-gradient(270deg,rgba(32,46,59,0.00) 0%,rgba(32,46,59,0.67) 46.11%);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 300px;
}
.part-store-bg {
	background:#43240a!important;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.part-store-overlay {
	width: 50%;
	position: relative;
	z-index: 2;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.4);
	padding: clamp(40px, 7vw, 120px) 40px clamp(40px, 7vw, 120px) clamp(20px, -880px + 50vw, 100vw);
	background-image: -webkit-linear-gradient(180deg,rgba(67,36,10,0.00) 0%,rgba(67,36,10,0.70) 46.11%);
	background-image: -moz-linear-gradient(180deg,rgba(67,36,10,0.00) 0%,rgba(67,36,10,0.70) 46.11%);
	background-image: -o-linear-gradient(180deg,rgba(67,36,10,0.00) 0%,rgba(67,36,10,0.70) 46.11%);
	background-image: linear-gradient(270deg,rgba(67,36,10,0.00) 0%,rgba(67,36,10,0.70) 46.11%);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 300px;
}
.part-store-header-img {
	width: 50%;
	position: relative;
}
.part-logo-overlay {
	width: 100%;
	max-width: 500px;
	display: block;
	margin:0 auto;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0px 0px 15px rgba(67,36,10,1.00));
}
.part-headerbg {
	width: 50%;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 0;
	min-height: 450px;
	opacity: 0.6;
}

.header-overlay h1, .part-store-overlay h1 {
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
	font-size: clamp(36px, 4vw, 75px);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	padding-bottom: 10px;
}
.header-overlay h2, .part-store-overlay h2 {
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.8);
	font-size: clamp(18px, 2vw, 30px);
	font-weight: 400;
	line-height: 1.2;
}
.content-header img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 0;
	min-height: 450px;
}
.content-left {
	width: 50%;
	box-sizing: border-box;
	background:#cad3dc;
	padding: clamp(20px, 5vw, 100px) 20px clamp(20px, 5vw, 100px) clamp(20px, -880px + 50vw, 100vw);
}
.list-info {
	display: flex;
	flex-wrap: wrap;
	gap:10px;
	padding:20px 0;
	margin:0;
}
.list-info li {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #d21f0f;
	margin: 0;
	font-size: 20px;
	list-style: none;
	width: calc(33.33% - 29px);
}
.map-cont {
	width: 50%;
	height:auto;
}
.map-cont iframe {
	width: 100%;
	height: 100%;
	min-height: 350px;
}
.content-img {
	width: 50%;
	position: relative;
	min-height: 30vw;
}
.content-img img {
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;
	display: block;
	position: absolute;
	left:0;
	top:0;
	z-index: 1;
}
.container-lg {
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
}
.container-md {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
}
.container-sml {
	width: 100%;
	max-width:800px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
}
.container-inv {
	padding:40px 20px;
	box-sizing: border-box;
}

.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
 	z-index: 1;
}
.col-1 {
	width: 100%;
	box-sizing: border-box;
}
.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: 32.33%;
	box-sizing: border-box;
}

.col-1-2 {
	width: 49%;
	box-sizing: border-box;
}

.col-2-3 {
	width: 65.66%;
	box-sizing: border-box;
}

.col-3-4 {
	width: 75%;
	box-sizing: border-box;
}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
	background:#fff;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
	padding:60px 0;
	position: relative;
  	z-index: 1;
}
footer .container-lg {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.foot-left {
	width: 100%;
	max-width: 200px;
	display: flex;
	flex-direction: column;
	gap:20px;
	align-items: center;
}
.foot-logo-1 {
	width: 100%;
	max-width: 170px;
	margin:0 auto;
	display: block;
}
.foot-logo-1 img {
	width:auto;
	max-width: 100%;
	height: auto;
	display: block;
}
.foot-left ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	padding:0;
	margin:0;
}
.foot-left ul li {
	padding:0;
	margin:0;
	list-style: none;
}
.foot-left ul li a {
	color:#d21f0f;
	font-size:20px;
	transition: .2s ease-in;
}
.foot-left ul li a:hover {
	opacity: 0.6;
}
.foot-nav {
	width: 100%;
	max-width: 900px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:20px 2vw;
}
.foot-nav-col p {
	font-family: "Outfit", sans-serif;
	color:#d21f0f;
	font-size:20px;
	padding-bottom: 10px;
	text-transform: uppercase;
	font-weight: 500;
}
.foot-nav-col ul {
	padding:0;
	margin:0;
}
.foot-nav-col ul li {
	padding:2px 0;
	margin:0;
	list-style: none;
}
.foot-nav-col ul li a {
	font-family: "Outfit", sans-serif;
	color:#000;
	font-size:18px;
	font-weight: 500;
	transition: .2s ease-in;
}
.foot-nav-col ul li a:hover {
	color:#d21f0f;
}


/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1000px) {

	/*==============================
		Mobile Nav Styles			
	================================*/

	
	.head-links ul {
		display: none;
	}

	nav.primary {
		display: none;
	}
	.mobile-nav-cont-1 { display:block;}

	#menu-button{ 
		display: block;
		position: relative;
		z-index: 2;
	}
	.menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		padding: 10px 15px 10px 5px;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 10px;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 10px;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 10px;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }

	nav.mobile { 
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #202e3b;
		z-index: 500; 
		overflow:auto;
		max-height:85vh;
	}	
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin: 0;
		padding: 0;
	}

	nav.mobile ul li {
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 18px;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		cursor: pointer;
	}

	nav.mobile ul li a:hover {
		color: #d21f0f;
	}

	/* 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;
		color: #fff;
		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: #fff;
		text-decoration: none;
	}

	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}



	.nav-footer {
		position: relative;
		text-align: center;
		border-top: 1px solid #fff;
		padding: 15px 0;
	}
	.nav-footer a {
		font-size: 20px;
		color: #d21f0f;
	}
	.butn-red, .butn-blue {
		padding:10px;
		font-size:16px;
	}
	.search-bar input {
		font-size: 14px;
	}
	.search-bar button {
	  font-size:16px;
	}
	.hero-overlay h1 {
		padding-bottom: 30px;
	}
	.about-left, .location-left {
		padding:40px 20px;
		width: 100%;
	}
	.about-right, .location-right {
		width: 100%;
	}
	.wrap-brands .container-lg a {
		width:32.33%;
		margin:0 auto;
	}
	.content-left, .map-cont, .content-img {
		width: 100%;
		min-height: 50vw;
	}
	.iframe-form-1 {
		height: 1450px;
	  }
}
@media screen and (max-width: 850px) {
	.wrap-cta a {
		
		width:50%;
	}
	.wrap-cta a:nth-of-type(1), .wrap-cta a:nth-of-type(2) {
		border-bottom: 1px solid #fff;
	}
	.wrap-cta a:nth-of-type(2) {
		border-right: 0px;
	}
	.sticky-button a {
		padding: 10px 10px 10px 30px;
		font-size:14px;
	}
	.part-headerbg {
		width:100%;
	}
	.part-store-overlay {
		width: 100%;
		order:2;
		background-image:none;
		padding:20px 20px 40px 20px;
		min-height: 100%;
	}
	.part-headerbg {
		width: 100%;
		height: 60%;
	}
	.part-logo-overlay {
		max-width: 350px;
	}
	.part-store-header-img {
		width: 100%;
		order: 1;
		padding:20px;
		box-sizing: border-box;
	}
	
}
@media screen and (max-width: 640px) {
	.location-left ul, .hours-box {
		width:100%;
	}
	.foot-nav {
		display: none;
	}
	.foot-left {
		max-width: 100%;
	}
	.wrap-hero img {
  		height: 60%;
	}
	.list-info li {
		width: calc(50% - 27px);
	}
}
@media screen and (max-width: 540px) {
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}
	.wrap-cta a i {
		font-size:30px;
	}
	.wrap-cta a h2 {
		font-size:18px;
	}
	.wrap-cta a p {
		font-size:14px;
	}
	.wrap-brands .container-lg a {
		width:49%;
	}
	.review-slide p {
		font-size: 16px;
		line-height: 1.2;
	}
	.list-info li {
		font-size: 16px;
	}

}
@media screen and (max-width: 500px) {
 .wrap-hero img {
    height: 80%;
  }
}
