﻿/*===================== 
	Color information
	
	-
	Red #b1010f
	Dark Red #6B0008
	Grey #e8e8e8
	Dark Grey #8a8a8a
	-
	-
		 
=======================*/
/*===================== 
	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: "Montserrat", 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;
}
.text-center {
	text-align: center;
}
.bg-black {
	background:#000;
	color:#fff;
}

/*===================== 
	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-black {
	font-family: "Montserrat", sans-serif;
	background:#000;
	color:#fff!important;
	display: inline-block;
	padding:30px 10px;
	font-size: 18px;
	font-weight: 600;
	text-align:center;
	margin:0;
    transition: .2s ease-in;
	border:1px solid #fff;
	outline: none;
	cursor: pointer;
	border-radius: 0px!important;
	border-radius:15px!important;
	box-sizing: border-box;
}
.butn-black:hover {
	color:#000!important;
	background:#fff;
}
.butn-red {
	font-family: "Montserrat", sans-serif;
	background:#b1010f;
	color:#fff!important;
	display: inline-block;
	padding:30px 10px;
	font-size: 18px;
	font-weight: 600;
	text-align:center;
	margin:0;
    transition: .2s ease-in;
	border:1px solid #fff;
	outline: none;
	cursor: pointer;
	border-radius:15px!important;
	box-sizing: border-box;
}
.butn-red:hover {
	background:#6B0008;
}
.text-link-red {
	font-weight: 600;
	color:#b1010f!important;
	transition: .2s ease-in;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	text-align: inherit;
}
.text-link-red:hover {
	opacity: 0.6;
}
.btn-cont-1 {
	display: flex;
	gap:10px 20px;
	flex-wrap: wrap;
	justify-content: center;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	background:#fff;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.3);
}

header {
	width: 100%;
	margin: 0 auto;
	max-width: 1800px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:30px;
	padding:0 20px;
	box-sizing: border-box;
}
.head-logo-1 {
	position: relative;
	display: flex;
	gap:10px;
	padding: 5px 0;
	z-index: 2;
}
.head-logo-1 img {
	height: auto;
	display: block;
	object-fit: contain;
}
.head-logo-1 img:first-of-type {
	max-width:155px;
	width: 35%;
}
.head-logo-1 img:last-of-type {
	max-width:265px;
	width: 65%;
	margin-bottom: -6%;
}
.head-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 0;
}
.head-info {
	display: flex;
	justify-content: flex-end;
	padding:10px;
	margin:0;
	gap:15px;
}
.head-info li {
	padding:0;
	margin: 0;
	list-style: none;
}
.head-info li a {
	font-size:14px;
	font-weight:400;
	color:#000;
	transition: .2s ease-in;
}
.head-info li a span {
	font-weight: 600;
}
.head-info li a i {
	color:#b1010f;
}
.head-info li a:hover {
	color:#b1010f;
}



/*===================== 
	nav styles 
=======================*/

#menu-button {
	display: none;
}

nav.mobile {
	display: none;
}



nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	position: relative;
}

nav.primary ul {
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: flex-end;
}

nav.primary ul li {
	display: inline-block;
	padding:0;
	margin: 0;
	list-style-type: none;
	transition: .2s ease-in;
}

nav.primary ul li a {
	font-family: "Montserrat", sans-serif;
	color: #000;
	font-size: clamp(16px, 1.5vw, 18px);
	text-decoration: none;
	padding: 10px clamp(5px, 1vw, 15px);
	display: block;
	margin: 0;
	text-transform: uppercase;
	transition: .2s ease-in;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

nav.primary ul li a:hover {
	background: #000;
	color: #fff;
}
nav.primary ul li:hover a {
	background: #000;
	color: #fff;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
	background:#000;
	color: #fff;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background:#b1010f;
}

/* 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%;
	display: flex;
	flex-wrap: wrap;
	border-bottom:80px solid #b1010f;
}
.hero-img {
	width: 55%;
	position: relative;
}
.hero-img img {
	position: absolute;
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-right {
	width: 45%;
	background: #000;
	position: relative;
	padding: 15px;
	box-sizing: border-box;
}
.hero-info {
	background:#8a8a8a;
	border-radius:30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: clamp(30px, 8vw, 150px) 40px;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	top:50px;
	right:40px;
}
.hero-info h1 {
	text-align: center;
	color:#fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	font-size:40px;
	font-weight:700;
	line-height: 1.2;
	text-transform: uppercase;
}
.hero-info h1 span {
	font-size:22px;
	display: block;
}
.hero-info .btn-cont-1 {
	justify-content: center;
	width: 100%;
	max-width: 650px;
	padding-top: 50px;
}
.hero-info a {
	width: 40%;
}
.wrap-about {
	padding:clamp(70px, 7vw, 120px) 0;
	text-align: center;
}
.wrap-about h2 {
	font-size: clamp(20px, 5vw, 34px);
	font-weight:700;
	line-height: 1;
	text-transform: uppercase;
	
}
.wrap-about h2 span {
	font-size: clamp(16px, 4vw, 25px);
	color:#8a8a8a;
	display: block;
}
.wrap-about p {
	padding:30px 0;
	line-height: 1.7;
}
.wrap-about .btn-cont-1 {
	justify-content: center;
}
.warp-cat {
	width: 100%;
	background:#e8e8e8;
	position: relative;
}
.warp-cat .container-lg {
	padding:clamp(70px, 7vw, 150px) 20px;
	position: relative;
	z-index: 2;
}
.cat-info {
	width: 100%;
	max-width: 945px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.cat-info h2 {
	font-size: clamp(20px, 5vw, 34px);
	font-weight:700;
	line-height: 1;
	text-transform: uppercase;
	display: block;
	width: 100%;
	max-width: 820px;
	padding-bottom: 60px;
}
.cat-info a {
	width: calc(25% - 8px);
	transition: .2s ease-in;
	border-radius:15px;
	background:#fff;
	border:1px solid #b1010f;
	padding:40px 10px;
	box-sizing: border-box;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size:18px;
	font-weight:700;
	color:#b1010f!important;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 120px;
}
.cat-info a h3 {
	font-size: clamp(12px, 2.5vw, 18px);
}
.cat-info a:hover {
	background:#b1010f;
	color:#fff!important;
}
.cat-image {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	height: 100%;
	width: 50%;
	max-width: calc(100% - 840px);
}
.cat-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	object-fit: cover;
	object-position: center;
	display: block;
}
.wrap-black-banner {
	width: 100%;
	background:#000;
	margin-bottom: 80px;
}
.wrap-black-banner .container-lg {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding:clamp(70px, 7vw, 150px) 20px 60px 20px;
}
.banner-info {
	width:49%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap:30px;
}
.banner-info h2 {
	color: #fff;
	font-size: clamp(20px, 5vw, 34px);
	font-weight:700;
}
.banner-info p {
	color: #fff;
	font-size: clamp(16px, 5vw, 20px);
	font-weight:500;
}
.banner-info a {
	max-width: 250px;
	width: 100%;
}
.wrap-black-banner img {
	width: 49%;
	height: auto;
	display: block;
	margin: 0 0 -120px 0;
	object-fit: contain;
	object-position: center;
}
.bg-header {
	width: 100%;
	padding:clamp(40px, 20vw, 100px) 0;
	position: relative;
	background: #000;
	box-sizing: border-box;
}
.bg-header .container-lg {
	position: relative;
	z-index: 2;
}
.bg-header h1 {
	font-size: clamp(30px, 5vw, 60px);
	font-weight:700;
	color:#fff;
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	text-align: center;
	text-transform: uppercase;
}
.bg-header img {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	display: block;
	object-fit: cover;
	object-position: center;
	top:0;
	left:0;
	opacity: 0.55;
}

/*===================== 
	slideshow styles 
=======================*/


/*===================== 
	Form styles 
=======================*/

.wrap-form {
	width: 100%;
	border-top: 80px solid #b1010f;
	padding:0 20px 80px 20px;
	box-sizing: border-box;
}
.wrap-form .container-md {
	margin-top:-40px;
	border: 1px solid #000;
	border-radius: 30px;
	background: #fff;
	padding: clamp(30px, 8vw, 60px) 20px;
}

/* Containers */



.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: "Montserrat", 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; 
}

.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: "Montserrat", 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;
}
.form-info-cont .butn-red {
	display: block;
	width: 100%;
	max-width: 300px;
	margin:0 auto;
}
.click-to-show {
	display: none;
}
.click-to-show.clicked {
	display: block;
}
.click-show.clicked {
	display: none;
}

.CaptchaImage {
  max-width: 100%;
}
.CaptchaWhatsThisPanel input {
    margin:0 auto;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 


/*===================== 
	layout styles 
=======================*/

.wrap-content {
	width: 100%;
	margin: 0;
}
.wrap-content p {
	line-height: 1.5;
}

.container-lg {
	max-width: 1800px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
}
.container-md {
	max-width: 1200px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
}
.container-sml {
	max-width: 800px;
	margin: 0 auto;
	padding:20px;
	box-sizing: border-box;
}

.container-inv {
	margin: 0 auto;
	padding:40px 10px;
	box-sizing: border-box;
}
.pad-big {
	padding:clamp(50px, 12vw, 140px) 20px;
}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.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%;
	border-top:100px solid #b1010f;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.foot-logo-cont {
	padding:60px 20px 30px clamp(20px, -880px + 50vw, 100vw);
}
.foot-logo-1 {
	width: 100%;
	max-width: 240px;
	display: block;
}
.foot-logo-1 img {
	width:auto;
	max-width:100%;
	display: block;
	margin:0 auto;
}
.foot-info {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding:10px;
	margin:0;
	gap:15px;
}
.foot-info li {
	padding:0;
	margin: 0;
	list-style: none;
}
.foot-info li a {
	font-size:14px;
	font-weight:400;
	color:#000;
	transition: .2s ease-in;
}
.foot-info li a span {
	font-weight: 600;
}
.foot-info li a i {
	color:#b1010f;
}
.foot-info li a:hover {
	color:#b1010f;
}
.foot-nav-cont-1 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:0 3vw;
	padding:130px clamp(20px, -880px + 50vw, 100vw) 130px 60px;
	background:#fff;
	border:1px solid #000;
	border-right:0px;
	border-bottom:0px;
	border-top-left-radius:30px;
	margin-top: -40px;
	max-width: calc(100% - 300px);
	box-sizing: border-box;
}
.foot-nav-col {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	align-items: flex-start;
}
.foot-nav-col p {
	font-size:16px;
	font-weight:700;
	color:#b1010f;
	width:100%;
}
.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-size:16px;
	font-weight:500;
	color:#000;
	line-height: 1.5;
	transition: .2s ease-in;
}
.foot-nav-col ul li a span {
	font-weight: 700;
}
.foot-nav-col ul li a:hover {
	opacity: 0.6;
}
.foot-bottom {
	width: 100%;
	background:#000;
	padding:40px 20px;
	box-sizing: border-box;
}
.foot-bottom p {
	font-size:14px;
	font-weight:400;
	color:#fff;
	text-align: center;
}



/*========================== 
	  Responsive styles 
============================*/



@media screen and (max-width: 1000px) {

	.head-right {
		display: none;
	}
	
	/*==============================
		Mobile Nav Styles			
	================================*/


	nav.primary {
		display: none;
	}

	#menu-button {
		display: block;
		position: relative;
		z-index: 400;
	}

	#menu-button a {
		color: #b1010f;
		font-size:30px;
		text-decoration: none;
		padding: 0 0 0 .8em;
		font-weight: normal;
		cursor: pointer;
	}

	nav.mobile {
		display: block;
		position: fixed;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background:#161616;
		z-index: 500;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
	}

	/* 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: flex;
		justify-content: flex-end;
		padding:10px;
		box-sizing: border-box;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		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;
	}

	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 {
		position: relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "Montserrat", sans-serif;
		position: relative;
		display: block;
		font-size: 15px;
		font-weight: 600;
		padding: 10px;
		color: #fff;
		text-decoration: none;
		border-left: 4px #333 solid;
		cursor: pointer;
	}

	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		border-left: 4px #b1010f solid;
		/* border highlight - Change to fit match site colors */
	}

	/* 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-footer {
		width: 100%;
		padding:30px 10px 10px 10px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		gap:15px;
		border-top: 1px solid #8a8a8a;
	}
	
	.nav-footer a {
		color:#fff;
		font-size: 15px;
	}
	.nav-footer a i {
		color:#b1010f;
	}
	
	
	.hero-img {
		width: 100%;
		position: relative;
		height: 43vw;
		max-height: 40vh;
		min-height: 200px;
	}
	.hero-right {
		width: 100%;
	}
	.hero-info {
		top: auto;
		right: auto;
		margin: -40px 0;
		padding: clamp(30px, 8vw, 150px) 10px;
	}
	.hero-info h1 {
		font-size: clamp(22px, 5vw, 40px);
	}
	.hero-info h1 span {
		font-size: clamp(14px, 2.6vw, 22px);
	}
	.hero-info .btn-cont-1 {
	  padding-top: 30px;
	}
	.warp-cat .container-lg {
		padding: clamp(70px, 7vw, 150px) 20px 0 20px;
		margin-bottom: -60px;
	}
	.cat-info {
		max-width:100%;
	}
	.cat-info h2 {
	  max-width:100%;
	  padding-bottom:20px;
	}
	.cat-image {
		position: relative;
		height: 41vw;
		width: 100%;
		max-width: 100%;
	}
	.banner-info {
		width:100%;
		gap:20px;
		padding-bottom: 20px;
	}
	.wrap-black-banner img {
		width: 100%;
		margin: 0 0 -120px 0;
	}
	.foot-nav-cont-1 {
		display: none;
	}
	footer {
		justify-content: flex-end;
	}
	.foot-logo-cont {
		background:#fff;
		border:1px solid #000;
		border-right:0px;
		border-bottom:0px;
		border-top-left-radius:30px;
		width:calc(100% - 20px);
		display: flex;
		justify-content: center;
		gap:20px 0;
		padding:60px 20px;
		box-sizing: border-box;
		flex-direction: column;
		align-items: center;
		margin-top: -40px;
	}
	.foot-info {
		display: flex;
	}

}
@media screen and (max-width: 800px) {
	.col-1-2, .col-1-3 {
		width: 100%;
	}
	
}
@media screen and (max-width: 540px) {
	.cat-info a {
		width: calc(50% - 5px);
		height: 80px;
	}
}
@media screen and (max-width: 540px) {
	
	.butn-black, .butn-red {
		padding:20px 10px;
		font-size: 16px;
	}
	.hero-info a {
	  width: 100%;
	}
	
	h1 {
		font-size: 26px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 22px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}
	p {
		font-size: 16px;
	}
	
	
	
}


