@import url("https://use.typekit.net/xvf2wkr.css");

/*FONTS*/
@font-face {
	font-family: "Font Awesome 5 Pro Brands";
	src: url('../fonts/fontAwesome/fa-brands-400.woff2') format('woff2'),
		url('../fonts/fontAwesome/fa-brands-400.woff') format('woff'),
		url('../fonts/fontAwesome/fa-brands-400.ttf') format('truetype')
}

.fab {
	font-family: 'Font Awesome 5 Pro Brands'
}

@font-face {
	font-family: "Font Awesome 5 Pro Regular";
	src: url('../fonts/fontAwesome/fa-regular-400.woff2') format('woff2'),
		url('../fonts/fontAwesome/fa-regular-400.woff') format('woff'),
		url('../fonts/fontAwesome/fa-regular-400.ttf') format('truetype')
}

.far {
	font-family: 'Font Awesome 5 Pro Regular'
}

@font-face {
	font-family: "Font Awesome 5 Pro Solid";
	src: url('../fonts/fontAwesome/fa-solid-900.woff2') format('woff2'),
		url('../fonts/fontAwesome/fa-solid-900.woff') format('woff'),
		url('../fonts/fontAwesome/fa-solid-900.ttf') format('truetype')
}

.fas {
	font-family: 'Font Awesome 5 Pro Solid'
}

@font-face {
	font-family: "Font Awesome 5 Pro Light";
	src: url('../fonts/fontAwesome/fa-light-300.woff2') format('woff2'),
		url('../fonts/fontAwesome/fa-light-300.woff') format('woff'),
		url('../fonts/fontAwesome/fa-light-300.ttf') format('truetype')
}

.fal {
	font-family: 'Font Awesome 5 Pro Light'
}

@font-face {
	font-family: "Font Awesome 5 Pro Duotone";
	src: url('../fonts/fontAwesome/fa-duotone-900.woff2') format('woff2'),
		url('../fonts/fontAwesome/fa-duotone-900.woff') format('woff'),
		url('../fonts/fontAwesome/fa-duotone-900.ttf') format('truetype')
}

.fad {
	font-family: 'Font Awesome 5 Pro Duotone'
}
/*END FONTS*/

:root {
	/*COLORS*/
	--main-bg: #2b2f3a;
	--main-fg: #ffffff;
	--main-accent: #e71d43;
	--secondary-accent: #1de789;
	--secondary-bg: #00ff9d;
	--secondary-fg: #2b2f3a;
	--icon-fg: #00ff9d;
	--main-hover: #00ff9d;	
	--border-line: #00ff9d;
	--transparent-bg: rgba(43,47,58,.8);
	--transparent-menu-bg: rgba(43,47,58,.975);

	/*NUMERIC VALUES - HEIGHTS*/
	--header-height: 92px;
	--menu-height: calc(100% - 92px);
	--menu-height-reduced: calc(52px * 9);
}

:focus {
	outline: none;
}

/*ALL ITEMS INCLUDE BORDER WIDTH*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

a {
	text-decoration: none;
	color: var(--);
}

p {
	line-height: 28px;	
}

input[type=text],
input[type=email],
input[type=name] {
	border: none;
	border-bottom: solid 1px var(--main-bg);
	padding: 0px 0px;
	line-height: 35px;
	font-family: unset;
	-webkit-appearance: none;	
	font-size: 1em;
}

::placeholder {
	color: var(--main-bg);
}

textarea {
	border: solid 1px var(--main-bg);
	padding: 0px 10px;
	line-height: 40px;
	font-family: unset;
	-webkit-appearance: none;	
	font-size: 1em;
}

select {
	position: relative;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	width: 300px;
	height: 40px;
	font-size: 1em;
	border: solid 2px var(--border-line);
	background: var(--main-fg);
	color: var(--main-bg);
	padding: 0px 15px;
	line-height: 40px;
	background-image: url(../images/select_drop_arrow_dark.png);
	background-repeat: no-repeat;
	background-size: 40px 40px;
	background-position: right top;
	text-transform: capitalize;
	font-family: unset;
	border-radius: 3px;
}

select option {
	text-transform: capitalize;
	line-height: 40px;
	height: 40px;
	padding: 0px 10px;
}

body {
	padding: 0px;
	margin: 0px;
	font-size: 100%;
	font-family: 'Interstate', sans-serif;
	background: var(--main-bg);
	color: var(--secondary-fg);
	padding-top: var(--header-height);
}

button.button, .button {
	display: inline-block;
	border: solid 3px var(--main-bg);
	line-height: 35px;
	padding: 0px 30px;
	color: var(--main-bg);
	border-radius: 15px 0px;
	min-width: 100px;	
	text-align: center;
	-webkit-appearance: none;
	font-family: unset;
	font-size: 1em;
	background: unset;
	transition: background 250ms, color 250ms, border-color 250ms;
}

button.button:hover,
.button:hover {
	background: var(--main-bg);
	color: var(--main-hover);
	cursor: pointer;
}

/*MAIN CONTAINER*/
main.mainSection {
	position: relative;
	width:100%;
	padding: 20px;
	background: #ffffff;
	z-index: 1;
}

/*HEADER*/
header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: var(--header-height);
	z-index: 2;
}

header main {
	position: relative;
	width: 100%;
	padding: 20px;
	z-index: 2;
	background: var(--main-bg);
	height: var(--header-height);	
}

.mobileMenuButton {
	color: var(--icon-fg);
	display: inline-block;
	vertical-align: middle;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	font-size: 32px;
}

.logoCtr {
	width: 175px;
	float: right;
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.mainLogo {
	width: 100%;
	display: inline-block;
	vertical-align: middle;
}	

/*NAVIGATION*/
nav {
	background: var(--transparent-menu-bg);
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1;
	height: var(--menu-height);	
	width: 100%;
	overflow: visible;
	transform: translate(0px, -100%);
	-webkit-transform: translate(0px, -100%);
	-moz-transform: translate(0px, -100%);
	transition: transform 250ms;
	-webkit-transition: transform 250ms;
	-moz-transition: transform 250ms;
	text-align: center;
	border-top: solid 1px var(--border-line);
}

nav.navOpen {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translate(0px, var(--header-height));
	-webkit-transform: translate(0px, var(--header-height));
	-moz-transform: translate(0px, var(--header-height));
}

nav .productCtr {
	position: relative;
	width: 55%;
	height: 0px;
	overflow: hidden;
	display: block;
	margin: auto;
	transition: height 250ms;
	-webkit-transition: height 250ms;
	-moz-transition: height 250ms;
}

nav .productCtr.productOpen {
	height: calc(75px * 5);
	border-bottom: solid 1px var(--border-line);
}

nav a,
nav .productDropContainer {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 55%;
	line-height: 75px;
	height: 75px;
	text-align: center;
	border-bottom: solid 1px var(--border-line);
	color: var(--main-fg);
	text-decoration: none;
	font-weight: 600;
}

nav .productCtr a {
	width: 100%;
	font-weight: 300;
}

nav i.fas.productDrop {
	display: inline-block;
	vertical-align: middle;
	line-height: 32px;
	z-index: 1;
	margin-left: 5px;
	transform: rotate(0deg);	
	-webkit-transform: rotate(0deg);	
	-moz-transform: rotate(0deg);	
	transition: transform 250ms;
	-webkit-transition: -webkit-transform 250ms;
	-moz-transition: -moz-transform 250ms;
}

nav i.productDrop.rotateDrop {
	transform: rotate(180deg);	
	-webkit-transform: rotate(180deg);	
	-moz-transform: rotate(180deg);	
}

nav a.linkIndent {
	border-left: solid 10px var(--border-line);
}

nav i.fa-times {
	width: 100%;
	text-align: right;
	color: var(--icon-fg);
	display: inline-block;
	vertical-align: middle;
	height: 50px;
	line-height: 50px;
	font-size: 32px;
	padding: 0px 20px;
}

nav a i.fas {
	color: var(--icon-fg);
	margin-left: 10px;
}

/*FOOTER*/
footer {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	border-top: solid 20px var(--border-line);
	padding: 20px;
	height: 100px;
	background: var(--main-bg);
}

footer i.fas,
footer i.fab,
footer p,
footer a {
	display: inline-block;
	vertical-align: baseline;
	line-height: 40px;
	margin: 0px;
}

footer p {
	color: var(--main-fg);
	margin-left: 10px;
}

footer i,
footer a {
	color: var(--icon-fg);
}

footer a {
	float: right;
}

footer a.fab {
	font-size: 40px;
}

@keyframes fadeIt {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeItAgain {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

i#contactFormIcon {
	font-size: 2em;
	text-align: center;
	background: var(--main-bg);
	color: var(--secondary-bg);
	border-radius: 50%;
	position: fixed;
	width: 72px;
	height: 72px;
	line-height: 72px;
	bottom: 20px;
	right: 20px;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transition: transform 250ms, background 250ms, color 250ms;
	-webkit-transition: -webkit-transform 250ms, background 250ms, color 250ms;
	-moz-transition: -moz-transform 250ms, background 250ms, color 250ms;
	z-index: 2;
	animation: fadeIt 1000ms;
}

i#contactFormIcon.bottom {
	float:right;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 45px;
	font-size: 40px;
	line-height: 45px;
	bottom: 0px;
	animation: fadeItAgain 1000ms;
}

i#contactFormIcon:hover {
	cursor: pointer;
	background: var(--secondary-bg);
	color: var(--secondary-fg);
}

i#contactFormIcon.bottom:hover {
	cursor: pointer;
	background: var(--main-bg);
	color: var(--secondary-fg);
}


/*CONTACT FORM*/
.contactForm {
	position: fixed;
	background: var(--main-fg);
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	padding: 30px;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transition: transform 250ms;
	-webkit-transition: transform 250ms;
	-moz-transition: transform 250ms;
	z-index: 3;
	border: solid 10px var(--border-line);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.contactForm.showForm {
	transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
}

.closeContactForm {
	float: right;
	font-size: 1.5em;
}

.closeContactForm:hover {
	cursor: pointer;
	color: var(--secondary-bg);
}

.contactForm label {
	font-weight: 900;
	margin: 0px 0px 5px 0px;
	width: 100%;
	display: inline-block;
}

.contactForm input[type=text],
.contactForm input[type=name],
.contactForm input[type=email],
.contactForm textarea {
	width: 100%;
	margin-bottom: 20px;
}

.contactForm textarea {
	max-width: 100%;
	min-height: 150px;
}

.contactForm .formButtonContainer button {
	margin-right: 10px;
}

.disclaimer {
	font-size: .8em;
	line-height: 20px;
}

.contactForm a.fal.pinLink {
	color: unset;
	font-size: 1em;
	font-family: unset;
	width: 100%;
	margin-top: 10px;
}

.contactForm a.fal.pinLink:before {
	font-family: 'Font Awesome 5 Pro';
	margin-right: 10px;
}

.contactForm i.fal.refresh-captcha {
	color: var(--icon-fg);
	background: var(--main-bg);
	text-align: center;
	width: 100px;
	height: 50px;
	line-height: 50px;
	font-size: 1.5em;
	border-radius: 10px 0px;
}

.contactForm .captcha-image {
	margin-bottom: 10px;
}

.contactForm .captcha-image,
.contactForm i.fal.refresh-captcha {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.failureMessage,
.successMessage {
	position: fixed;
	z-index: 3;
	color: #ffffff;
	padding: 20px;
	width: 100%;
	bottom: 0px;	
	display: inline-block;
	vertical-align: middle;
	line-height: 35px;
	left: 0px;
	bottom: 0px;
}

.failureMessage {
	background: var(--main-accent);	
}

.successMessage {
	background: var(--secondary-accent);
}

.failureMessage .button,
.successMessage .button {
	float: right;
	display: inline-block;
	vertical-align: middle;	
	border-color: var(--main-fg);
	color: var(--main-fg);
}

.failureMessage button.button:hover {
	background: unset;
	border-color: var(--main-bg);
	color: var(--main-bg);
	cursor: pointer;	
}

@media (min-width: 38em) {
	:root {
			--header-height: 114px;
	}

	body {
		padding-top: 0px;
	}

	section.mainContainer {
		position: absolute;
		height: 100%;
		width: 100%;
	}

	/*HEADER*/
	header {
		position: relative;
	}

	.logoCtr {
		width: 250px;
		float: none;
	}	

	header main i.mobileMenuButton,
	nav i.mobileMenuCloseButton {
		display: none;
	}

	/*NAVIGATION*/
	nav, nav.navOpen {
		position: absolute;
		right: 20px;
		top: 40px;
		left: unset;
		transform: translate(0px, 0px);
		-webkit-transform: translate(0px, 0px);
		-moz-transform: translate(0px, 0px);
		z-index: 2;
		height: auto;
		width: auto;
		background: unset;
		border: none;
	}

	nav .productCtr {
		position: absolute;
		width: 300px;
		right: -20px;
		top: calc(var(--header-height) - 40px);
		background: var(--transparent-menu-bg);
	}

	nav .productCtr.productOpen {
		height: calc(50px * 5);
		border-left: solid 1px var(--border-line);
	}

	nav a,
	nav .productDropContainer {
		color: var(--main-fg);
		border: none;
		width: auto;
		margin-left: 20px;
		transition: color 250ms;
		-webkit-transition: color 250ms;
		-moz-transition: color 250ms;
		height: 40px;
		line-height: 40px;
		padding-left: 0px;
		text-align: left;
	}

	nav .productDropContainer:hover {
		cursor: pointer;
		color: var(--main-hover);
	}

	nav a.linkIndent {
		margin: 0px;
		padding-left: 10px;
		line-height: 50px;
		height: 50px;
		border-bottom: solid 1px var(--border-line);
	}

	nav a:hover {
		color: var(--main-hover);
	}

	nav a i.fas {
		font-size: 24px;
	}
	nav a:last-of-type {
		border-bottom: none;
	}

	.contactForm {
		width: 480px;
		max-height: calc(100% - 40px);
		height: auto;
		bottom: 20px;
		transform: translateX(480px);
		-webkit-transform: translateX(480px);
		-moz-transform: translateX(480px);
	}

	.contactForm.showForm {
		transform: translateX(-20px);
		-webkit-transform: translateX(-20px);
		-moz-transform: translateX(-20px);		
	}
}
