body
{
	margin: 0;
	padding: 0;
	font-family: 'Michroma', sans-serif;
	background-color: black;
}

*
{
	margin: 0;
	padding: 0;
	
	box-sizing:				border-box;
	-moz-box-sizing:		border-box;
	-webkit-box-sizing:		border-box;
}

/*-----------------------
| COMMON ELEMENTS
+----------------------*/

.w100	{width: 100%;}

.mt5px		{margin-top: 5px;}
.mt10px		{margin-top: 10px;}
.mt15px		{margin-top: 15px;}
.mt25px		{margin-top: 25px;}
.mt50px		{margin-top: 50px;}
.mt75px		{margin-top: 75px;}
.mt100px	{margin-top: 100px;}
.mt150px	{margin-top: 150px;}

a		{color: #ffc800; text-decoration: none;}
a:hover	{color: #ffffff; text-decoration: underline;}

h1
{
	width: 100%; max-width: calc(100% - 50px);
	
	margin: 0 auto 50px auto;
	padding-bottom: 12px;
	
	font-family: 'Michroma', sans-serif;
	font-size: 22px;
	color: white; -webkit-text-stroke: 1px white;
	
	text-transform: uppercase;
	text-align: center;
	
	display: block;
}

h1.bb3px
{
	border-bottom: 3px solid #ffc800;
}

h3
{
	font-family: 'Michroma', sans-serif;
	font-size: 20px;
	line-height: 31px;
	
	text-transform: lowercase;
	text-align: center;
}


@media (orientation: portrait)
{
	h1
	{
		margin: 0 auto 50px auto;
	}
		
}


/*-----------------------
| SECTIONS
+----------------------*/

section
{
	margin: 0;
}

div.container
{
	width: 100%;
	max-width: 800px;
}

div.container p
{
	font-size: 12px;
	line-height: 17px;
	color: white;
}

@media (orientation: portrait)
{
	body
	{
		background-color: black; 
		background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
		background-repeat: no-repeat; /*repeat-y;*/
		background-position: center 77.5vh;
		background-size: 200%;
	}
	
	section
	{
		width: auto;
	}
	
	footer
	{
		width: auto;
		margin: 0 5%;
	}
}


/*-----------------------
| SECTION - HEADER
+----------------------*/
header.navigation
{
	position: fixed;
	z-index: 25;
	top: 0; 
	
	width: 100%;
	min-height: 60px;
	
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20%;
	
	margin: 0;
	padding: 0 5%;
	
	background: rgba(0,0,0,0.0); /*background: rgba(127, 127, 127, 0.5); border-bottom: 1px #101010 solid;*/
	
	transition: 0.5s;
}

header.navigation_opacity_80
{
	background: rgba(0,0,0,0.8);
}

header.navigation.hide
{
	top: -60px;
}

header.navigation .menu
{
	width: 80px; 
	height: 35px; 
	
	display: flex; 
	align-items: center; 
	justify-content: left;
}

header.navigation .menu svg
{
	width: 50px;
	height: 50px;
	fill: #ffc71a;
}

header.navigation .logo
{
	width: 128px; 
	height: 30px; 
	
	display: flex; 
	align-items: center; 
	justify-content: center;
}

header.navigation .logo img
{
	margin-top: 5px;
	height: 30px;
}

header.navigation .lang
{
	width: 80px; 
	height: 35px; 
	
	display: flex; 
	align-items: center; 
	justify-content: right; 
	gap: 20px;
}

header.navigation .lang img
{
	
}

div.menu_side
{
	/*position: fixed; 
	z-index: 50; 
	top: 0; 
	left: -448px;
	bottom: 0; 
	
	width: 448px; */
	display: none;
	
	position: fixed; 
	z-index: 50; 
	top: 0; 
	left: 0;
	bottom: 0; 
	
	width: 448px; 
	
	background-color: black; 
	background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
	background-repeat: repeat-y;
	background-position: 85% 100%;
	
	border-right: 10px #ffc800 solid;
	
	transition: 0.2s;
}

div.menu_side_active
{
	left: 0;
}

div.menu_side h1
{
	color: white; 
	border-bottom: 3px #ffc800 solid;
	width: auto; 
	margin: 75px 50px 50px 50px; 
	text-align: left;
}

div.menu_side a
{
	color: white;
	text-decoration: none;
}

div.menu_side a:hover
{
	color: #ffc800;
	text-decoration: none;
}

@media (orientation: portrait)
{
	header.navigation
	{
		justify-content: space-between;
	}
	
	div.menu_side
	{
		width: 100%;
		border: 0;
	}
	
	div.menu_side h1
	{
		text-align: center;
	}
	
	div.menu_side div
	{
		text-align: center;
	}
}


/*-----------------------
| SECTION - HERO (VIDEO)
+----------------------*/
section.hero
{
	position: relative;
	height: 100vh;
	
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
  	align-items: center;
  	align-content: center;
	justify-content: center;
	gap: 20px;
	
	margin: 0 auto;
	margin-bottom: 200px;
	padding: 0;
	
	background-color: black;
}

section.hero video
{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@keyframes rotating
{
	from
	{
		-ms-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to
	{
		-ms-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

section.hero img.hero-text
{
	z-index: 6;
	width: 60vh;
	margin: 0 auto;
	margin-top: 50px;
	text-align: center;
}

section.hero a.hero-button
{
	position: relative;
	z-index: 11;
	
	display: block;
	
	padding: 5px 50px;
	
	font-size: 22px;
	color: #404040;
	text-transform: uppercase;
	text-decoration: none;
	
	border: 0;
	border-bottom: 5px solid #ffc800;
	
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 30px;
	border-top-left-radius: 30px;
	border-top-right-radius: 0px;
	
	background: rgb(249,249,249);
	background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
	
	/*transition: 0.2s;*/
}

/*
section.hero a.hero-button:hover
{
	color: white;
	background: #ffc800;
}
*/

section.hero a.hero-button:hover
{
	color: #404040; -webkit-text-stroke: 1px #2d2d2d;
	background: none;
	background-color: #ffc800;
	border-bottom: 5px #dda600 solid;
	cursor: pointer;
}

section.hero img.hero-gear
{
	position: absolute;
	z-index: 3;
	height: 98vh;
	margin: 0 auto;
	animation: rotating 80s linear infinite;
}

@media (orientation: portrait)
{
	section.hero
	{
		margin-bottom: 0;
		max-width: 100vw;
		height: 100vh;
		overflow: hidden;
	}
	
	section.hero img.hero-text
	{
		max-width: 75vw;
	}
	
	section.hero img.hero-gear
	{
		height: 98vw;
		animation: rotating 40s linear infinite;
	}
	
	section.hero a.hero-button
	{
		position: relative;	
		
		min-width: 120px;
		margin: 0 auto 0 auto;
		margin-top: -25px;
		padding: 5px;
		
		text-transform: uppercase;
		text-decoration: none;
		text-align: center;
		
		font-size: 12px;
		color: #404040; -webkit-text-stroke: 1px #2d2d2d;
		
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 30px;
		border-top-left-radius: 30px;
		border-top-right-radius: 0px;
		border: 0;
		border-bottom: 5px solid #ffc800;
		
		background-color: rgb(249,249,249);
		background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
	}
}


/*-----------------------
| SECTION - ABOUT US
+----------------------*/
section.about
{
	width: auto;
	height: 100vh;
	min-height: 1152px;
	padding: 0 5%;
	
	display: flex;
	align-items: top;
	justify-content: center;
	
	background: no-repeat bottom url('../../images/web/gear-nutrition-background-products.jpg');
	background-size: contain;
}

section.about div.container h1
{
	margin-top: 150px;
	border-bottom: 3px solid #ffc800;
}

section.about div.container p
{
	margin: 0 25px;
	font-size: 14px;
	color: white;
	line-height: 22px;
	text-align: justify;
}

@media (orientation: portrait)
{
	section.about
	{
		height: auto;
		min-height: auto;
	}
	
	section.about div.container p
	{
		margin: 0 0 250px 0;
	}
}



/*------------------------*/
/* SECTION - PRODUCT SHOW */
/*------------------------*/
section.product
{
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	/*background-image: url('../../images/web/gear-nutrition-background-product-view.jpg'); 
	background-position: center 30vh; 
	background-repeat: no-repeat; 
	background-size: 100vh;*/
	overflow: hidden;
}

@media (orientation: portrait)
{
	section.product
	{
		max-width: 100vw; 
		min-height: 100vh;
		
		/*
		background-image: url('../../images/web/gear-nutrition-background-product-view.jpg'); 
		background-position: center -15vh;
		background-repeat: no-repeat; 
		background-size: auto 100vh;
		*/
		
		background-color: black;
	}
}


/*----------------------*/
/* PRODUCT VIEW - TITLE */
/*----------------------*/
section.product div.title
{
	width: 100%; 
	height: 22.5vh;
	display: flex; 
	flex-direction: column; 
	justify-content: flex-end;
	align-items: center; 
}

section.product div.title img
{
	width: 20vw; max-width: 240px;
	margin: 10px auto;
	padding: 0;
}

@media (orientation: portrait)
{
	section.product div.title		{height: 25vh; justify-content: flex-end;}
	section.product div.title img	{width: 50vw; margin: 0 auto 25px auto; padding: 0;}
}


/*----------------------*/
/* PRODUCT VIEW - IMAGE */
/*----------------------*/
section.product div.image
{
	width: 100%; 
	height: 62.5vh; 
	display: flex; 
	flex-direction: column; 
	align-items: center;
	justify-content: flex-end; 
	overflow: hidden;
}

section.product div.image img.render
{
	position: relative; 
	z-index: 5; 
	width: auto; 
	height: 72.5%; 
	margin: 0; 
	padding: 0;
}

section.product div.image img.gear
{
	position: absolute; 
	z-index: 1; 
	top: 22.5vh; 
	height: 70.0vh; 
	margin: -40px auto 0 auto;
	animation: rotating 80s linear infinite;
}

@media (orientation: portrait)
{
	section.product div.image
	{
		position: relative;
		height: 40vh;
		justify-content: flex-end;
	}
	
	section.product div.image img.render
	{
		width: 55vw;
		height: auto;
		margin: 0 auto 25px auto;
	}
	
	section.product div.image img.gear
	{
		position: absolute;
		top: 0;
		width: 70vw;
		height: 70vw;
		margin: -10px auto 0 auto;
		animation: rotating 30s linear infinite;
	}
}


/*----------------------*/
/* PRODUCT VIEW - SPECS */
/*----------------------*/
section.product div.specs
{
	width: 800px;
	height: 15vh;
	margin: 0 auto;
	
	font-size: 10px;
	line-height: 17px;
	color: white; -webkit-text-stroke: 0.5px whitesmoke;
	text-transform: uppercase;
	text-align: center;
	
	display: flex; 
	flex-wrap: nowrap;
	flex-direction: row; 
	justify-content: center; 
	align-items: center;
	gap: 10px;
}

section.product div.specs h3
{
	color: #ffc800; -webkit-text-stroke: 1px #ffc800;
}

section.product div.specs div.weight	{width: 32%; min-width: 160px; padding: 0 20px;}
section.product div.specs div.shock img	{width: 176px; height: 35px;}
section.product div.specs div.servings	{width: 32%; min-width: 160px; padding: 0 20px;}

@media (orientation: portrait)
{
	section.product div.specs
	{
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
		flex-direction: row; 
		flex-wrap: wrap;
		align-content: flex-start;
		gap: 0;
	}
	
	section.product div.specs div.weight	{order: 2; width: calc(50% - 18px); padding: 0 10px; border-right: 3px #ffc800 solid;}
	section.product div.specs div.shock		{order: 1; width: 100%; margin-top: 15px; margin-bottom: 40px;} 
	section.product div.specs div.shock img	{width: 137px; height: 27px;}
	section.product div.specs div.servings	{order: 3; width: calc(50% - 18px); padding: 0 10px; border-right: 3px rgb(0,0,0,0) solid;}
}


/*----------------------*/
/* PRODUCT VIEW - FACTS */
/*----------------------*/
section.product div.facts
{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center; 
	gap: 10px;
	
	margin-top: 25px;
}

section.product div.facts div.fact
{
	min-width: 160px;
	padding: 0 20px;
	font-size: 12px;
	color: white; -webkit-text-stroke: 0.5px whitesmoke;
	text-transform: uppercase; 
	text-align: center;
	border-right: 3px #ffc800 solid;
}

section.product div.facts div.fact:last-child
{
	border-right: 0;
}

section.product div.facts div.fact h3
{
	color: white; -webkit-text-stroke: 1px whitesmoke;
}

@media (orientation: portrait)
{
	section.product div.facts							{align-content: center; margin-top: 50px; gap: 0;}
	section.product div.facts div.fact					{width: calc(50% - 	18px); padding: 0 10px; margin-bottom: 50px; border-right: 3px #ffc800 solid;}
	section.product div.facts div.fact:nth-child(2n)	{border-right: 3px rgb(0,0,0,0) solid;}
	section.product div.facts div.fact:last-child(-1)	{margin-bottom: 0;}
	section.product div.facts div.fact:last-child		{margin-bottom: 0;}
}


/*------------------------*/
/* PRODUCT VIEW - FLAVORS */
/*------------------------*/
section.product div.flavours
{
	max-width: 800px;
	margin: 0 auto;
	display: flex; 
	flex-wrap: wrap; 
	flex-direction: row; 
	justify-content: center; 
	gap: 20px;
}

section.product div.flavours div.flavour
{
	width: 180px; 
	font-size: 10px; 
	line-height: 14px; 
	color: silver; 
	text-transform: uppercase; 
	text-align: center;
}

@media (orientation: portrait)
{
	section.product div.flavours	{gap: 10px;}
}


/*------------------------*/
/* PRODUCT VIEW - CONTENT */
/*------------------------*/
section.product div.content
{
	max-width: 1000px;
	min-height: auto;
	margin: 0 auto;
	padding: 0 5%;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: top;
	
	/*background-color: black;
	
	background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: contain;
	*/
}

section.product div.content_background
{
	background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: contain;
}

section.product div.product_background
{
	background-image: url('../../images/web/gear-nutrition-background-product-view.jpg');
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: 70%;
}


section.product div.content table
{
	width: 100%; 
	margin: 0 0 1vw 0; /*margin: 2vw 0;*/
	border-spacing: 0;
	border-collapse: separate;
}

section.product div.content table td
{
	padding: 5px 5px;
	font-size: 75%;
	color: white;
	word-wrap: break-word;
	word-break: break-all;
	border-bottom: 2px #ffc800 solid;
}

section.product div.content table tr td:last-child
{
	text-align: right;
}

section.product div.content table tr td:first-child
{
	text-align: left;
}

@media (orientation: portrait)
{
	section.product div.content							{margin-top: 0px; padding: 0; background: transparent;}
	section.product div.content table					{max-width: 100%;}
	section.product div.content table th				{font-size: 65%; text-align: right;}
	section.product div.content table td				{font-size: 65%; text-align: right;}
	section.product div.content table tr td:first-child	{text-align: left;}
	section.product div.product_background				{background-size: 100%; background-position: center 35vh;}
}


/*--------------------------------------*/
/* PRODUCT VIEW - CONTENT - DESCRIPTION */
/*--------------------------------------*/
section.product div.content div.description
{
	padding: 0 25px;
	margin: 0;
	
	font-size: 14px;
	color: white;
	line-height: 22px;
	
	text-align: justify;
}

/*----------------------*/
/* PRODUCT VIEW - VIDEO */
/*----------------------*/
section.product video
{
	width: 100%; max-width: 800px; margin: 50px auto 0 auto; display: block; border: 0px red solid;
}

@media (orientation: portrait)
{
	section.product div.content
	{
		/*
		background-image: none;
		background-color: black;
		*/
	}
	
	section.product div.content div.description
	{
		font-size: 12px;
	}
}


/*------------------------------
| SECTION - PRODUCTS LIST - GRID
+-----------------------------*/
section.products
{
	min-height: 100vh;
	padding: 0 5%;
	
	display: flex;
	align-items: top;
	justify-content: center;
	
	background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
	background-position: bottom center;
	background-repeat: repeat-y;
	background-size: contain;
}

section.products div.container
{
	
}

section.products div.container h1
{
	margin-top: 150px;
	margin-bottom: 5px;
	border-bottom: 3px solid #ffc800;
}

div.tabs-container
{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 5px;
	margin-bottom: 65px;
}

div.description-container
{
	background-color: black; 
	width: 760px; 
	margin-left: 23px;
}

div.tabs-container a.tab-left
{
	position: relative;	
	z-index: 11;
	padding: 5px;
	min-width: 200px;
	
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	color: #404040;
	
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border: 0;
	border-bottom: 5px solid #ffc800;
	
	background-color: rgb(249,249,249);
	background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
}

div.tabs-container a.tab-right
{
	position: relative;
	z-index: 11;
	padding: 5px;
	min-width: 200px;
	
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-size: 12px;
	color: #404040;
	
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 30px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border: 0;
	border-bottom: 5px solid #ffc800;
	
	background-color: rgb(249,249,249);
	background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
}

div.tabs-container a.tab-right:hover
{
	-webkit-text-stroke: 1px #2d2d2d;
	border-bottom: 5px #cccccc solid;
	background-color: #ffc800;
}

/*
section.products div.container div.tabs-container a.tab-active
{
	-webkit-text-stroke: 1px #2d2d2d;
	background-color: #ffc800;
}
*/

div.tabs-container a.tab-active
{
	color: #404040; -webkit-text-stroke: 1px #2d2d2d;
	background: none;
	background-color: #ffc800;
	border-bottom: 5px #dda600 solid !important;
	cursor: default;
}

section.products div.container div.products-container
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 auto -20px auto;
	
}

@media (orientation: portrait)
{
	/* Screen height > Screen width */
	section.products
	{
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100%;
	}
	
	section.products div.container
	{
		background-color: black;
	}
	
	div.tabs-container a.tab-left
	{
		min-width: 150px;
		/*padding: 5px 0;*/
	}
	
	div.tabs-container a.tab-right
	{
		min-width: 150px;
		/*padding: 5px 0;*/
	}
	
	section.products div.container div.products-container
	{
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 100%;
		
		margin-bottom: -40px;
	}
	
	div.description-container
	{
		width: auto; 
		margin-left: 0px;
	}
}

section.products div.container div.products-container div.product-card
{
	min-height: 450px;
	min-width: 266px;
	margin-bottom: 25px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 35px;
	
	text-align: center;
	
	border-radius: 35px;
	border-bottom: 3px rgba(0, 0, 0, 0) solid;
	
	cursor: pointer;
}

section.products div.container div.products-container div.product-card:hover
{
	box-shadow: 0px 14px 24px -13px rgba(255, 200, 0, 1);
	border-bottom: 3px #ffc800 solid;
	background-color: black;
	transition: 0.3s;
}

@media (orientation: portrait)
{
	/* Screen height > Screen width */
	
	section.products div.container div.products-container div.product-card
	{
		box-shadow: 0px 14px 24px -13px rgba(255, 200, 0, 0);
		box-shadow: 0 !important; 
		border: 0 !important; 
	}
	
	section.products div.container div.products-container div.product-card:hover
	{
		box-shadow: 0 !important; 
		box-shadow: 0px 14px 24px -13px rgba(255, 200, 0, 0);
		border: 0 !important; 
		background: transparent;
		border-bottom: 3px #000000 solid;
	}
}

section.products div.container div.products-container div.product-card img.product-image
{
	/*max-width: 112px;*/
	/*height: 144px;*/
	margin-bottom: 55px;
	scale:1.5;
}

section.products div.container div.products-container div.product-card h2
{
	font-size: 16px;
	line-height: 22px;
	color: white; -webkit-text-stroke: 0px white;
	
	text-transform: uppercase;
}

section.products div.container div.products-container div.product-card span
{
	font-size: 14px;
	color: #ffc800;	
}

section.products div.container div.products-container div.product-card a.button-more
{
	position: relative;	
	
	min-width: 120px;
	/*margin-top: 20px;*/
	padding: 5px;
	
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	
	font-size: 12px;
	color: #404040; -webkit-text-stroke: 1px #2d2d2d;
	
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 30px;
	border-top-left-radius: 30px;
	border-top-right-radius: 0px;
	border: 0;
	border-bottom: 5px #ffc800 solid;
	
	background-color: rgb(249,249,249);
    background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
}

section.products div.container div.products-container div.product-card:hover a.button-more
{
	color: #404040; -webkit-text-stroke: 1px #2d2d2d;
	background: none;
	background-color: #ffc800;
	border-bottom: 5px #dda600 solid;
	cursor: pointer;
}

section.products div.container div.products-container div.product-card a.button-more:hover
{
	color: #404040; -webkit-text-stroke: 1px #2d2d2d;
	background: none;
	background-color: #ffc800;
	border-bottom: 5px #dda600 solid;
	cursor: pointer;
}


/*-----------------------
| SECTION - DISTRIBUTORS
+----------------------*/
section.distributors
{
	height: auto;
	
	display: flex;
	flex-direction: column;
	justify-content: top;
	align-content: center;
	align-items: center;
  	
	background-color: black;
}

section.distributors div.container
{
	margin-top: 50px;
}

section.distributors div.container h1
{
	border-bottom: 3px #ffc800 solid;
}

section.distributors div.container-distributors
{
	width: 100%; 
	height: 75vh;
	border-bottom: 10px #ffc800 solid;
}

section.distributors div.container-distributors #myMap
{
	width: 100%; 
	height: 100%;
	
	filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
	filter: grayscale(100%);    
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
	-webkit-filter: grayscale(100%);

}

@media (orientation: portrait)
{
	/* Screen height > Screen width */
	
	section.distributors div.container-distributors
	{
		height: 50vh;
	}
}


/*-----------------------
| SECTION - FOOTER
+----------------------*/
footer.navigation
{
	width: 80%;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	margin: 0 10%;
	
	background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
	background-position: 50% 100%;
	background-size: 100%;
}

footer.navigation div.container
{
	display: flex; 
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px;
	
	width: 100%;
	margin: 100px auto 0 auto;
}

footer.navigation div.container-logo
{
	display: flex; 
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	width: 100%;
	margin: 25px auto 25px auto; 
	
	color: white;
	text-align: center;
}

footer.navigation div.container div.footer-block
{
	max-width: 256px;
	width: 33%;
}

footer.navigation div.container div.footer-block h1
{
	margin-bottom: 10px;
	padding-bottom: 5px;
	font-size: 16px;
	-webkit-text-stroke: 0px whitesmoke;
	text-align: left;
	border-bottom: 3px #ffc800 solid;
	margin-left:0;
}

footer.navigation div.container div.footer-block ul
{
	list-style-type: none;
	
	font-size: 12px;
	line-height: 24px;
	color: silver;
}

footer.navigation div.container div.footer-block ul li i
{
	padding: 0 10px 0 0;
	color: #ffc800;
}

footer.navigation div.container div.footer-block ul li a
{
	color: silver;
}

footer.navigation div.container div.footer-block ul li a:hover
{
	color: white; text-decoration: none;
}

footer.navigation div.container div.footer-block form
{
	display: flex; 
	justify-content: space-between;
	margin-top: 10px; 
}

footer.navigation div.container div.footer-block input[type=email]
{
	width: 70%;
	padding: 5px;
	
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: silver;
	
	outline: none;
	
	border: 0;
	border-bottom: 3px #ffc800 solid;
	border-bottom-right-radius: 0;
	background: transparent;
}

footer.navigation div.container div.footer-block input[type=submit],
footer.navigation div.container div.footer-block input[type=button]
{
	position: relative;	
	
	min-width: 120px;
	padding: 5px;
	
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	
	font-family: inherit;
	font-size: 12px;
	color: #404040;
	
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 30px;
	border-top-left-radius: 30px;
	border-top-right-radius: 0px;
	border: 0;
	border-bottom: 3px #ffc800 solid;
	
	-webkit-text-stroke: 1px #2d2d2d;
	
	background-color: rgb(249,249,249);
    background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
	
	cursor: pointer;
}

footer.navigation div.container div.footer-block input[type=submit]:hover,
footer.navigation div.container div.footer-block input[type=button]:hover
{
	color: #404040; -webkit-text-stroke: 1px #2d2d2d;
	background: none;
	background-color: #ffc800;
}

footer.navigation div.container div.footer-block .newsletter-li
{
	font-size: 12px; 
	line-height: 18px; 
	text-align: justify; 
	color: silver;
	margin-bottom: 56px;
}


@media (orientation: portrait)
{
	/* Screen height > Screen width */
	
	.flex-mobile
	{
		flex-direction: column;
	}
	
	footer.navigation
	{
		/*
		background-position: 50% top;
		background-repeat: repeat-y;
		background-size: 200%;
		*/
		
		background: none;
		background-color: black;
	}
	
	footer.navigation div.container 
	{
		width: 100%;
		margin: 0;
		
		flex-direction: column;
		gap: 20px;
	}
	
	footer.navigation div.container div.footer-block
	{
		width: 100%;
		max-width: 100%;
	}
	
	footer.navigation div.container div.footer-block h1
	{
		margin: 50px auto 10px auto;
		text-align: center;
		max-width: 297px;
		/*margin-left:20px;
		margin-right:20px;*/
	}
	
	footer.navigation div.container div.footer-block li
	{
		text-align: left;
		margin-left:90px;
	}
	
	footer.navigation div.container div.footer-block li i
	{
		/*display: none;*/
		
	}
	
	footer.navigation div.container-logo p img
	{
		margin-bottom: 25px;
	}
	
	footer.navigation div.container div.footer-block .newsletter-li,
	footer.navigation div.container div.footer-block .contact-li
	{
		margin-left:20px;
		margin-right:15px;
	}	
}

.mt_10px_portrait
{
	width: 100%; max-width: 100%;
}

.mt_50px_landscape
{
	margin-top: 50px !important;
}

@media (orientation: portrait)
{
	.mt_50px_landscape
	{
		margin-top: 25px !important;
	}
	
	.mt_25px_portrait
	{
		margin-top: 25px !important;
	}
	
	.mt_10px_portrait
	{
		margin-top: 10px !important;
		
		width: 100%; max-width: 297px;
	}
}


/*-----------------------
| CONTACT FORM
+----------------------*/
div.contact_form
{
	position: fixed; 
	z-index: 55; 
	
	top: calc(50% - 290px); 
	left: calc(50% - 435px); 
	
	display: flex; 
	flex-direction: column; 
	align-items: center;
	margin: 0 auto; 
	
	width: 100%; max-width: 870px; 
	height: 630px; 
	
	padding: 50px;
	
	background-color: black;
	background-image: url('../../images/web/gear-nutrition-background-carbon.jpg');
	background-position: center center;
	background-size: cover;
	
	border-bottom: 10px #ffc800 solid;
	
	display: none;
}

div.contact_form form
{
	width: 500px; 
	margin: 50px auto 0 auto;
	
	display: flex; 
	flex-direction: column; 
	justify-content: center;
	align-items: center; 
}

div.contact_form label
{
	width: 100%; 
	
	padding: 5px 0; 
	margin-top: 25px;
	margin-bottom: 0px;
	
	font-family: inherit; 
	font-size: 14px;
	line-height: 20px; 
	color: white; 
	
	text-align: left;
}

div.contact_form input[type=email], 
div.contact_form input[type=text],
div.contact_form textarea
{
	width: 500px; 
	
	padding: 5px 0; 
	
	font-family: inherit; 
	font-size: 14px;
	line-height: 20px; 
	color: white; 
	
	background: transparent; 
	
	border: 0; 
	border-bottom: 3px #ffc800 solid;
	outline: none;
	
	resize: none;
}

div.contact_form input[type=submit],
div.contact_form input[type=button]
{
	position: relative;	
	
	padding: 5px;
	margin-top: 25px;
	
	font-family: inherit;
	font-weight: 600;
	font-size: 12px;
	color: #404040; -webkit-text-stroke: 0.5px #2d2d2d;
	
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 30px;
	border-top-left-radius: 30px;
	border-top-right-radius: 0px;
	border: 0;
	border-bottom: 3px #ffc800 solid;
	
	background-color: rgb(249,249,249);
    background: linear-gradient(0deg, rgba(249,249,249,1) 25%, rgba(207,207,207,1) 50%, rgba(247,247,247,1) 75%);
	
	cursor: pointer;
}

div.contact_form input[type=submit]:hover,
div.contact_form input[type=button]:hover
{
	background: none;
	background-color: #ffc800;
}

@media (orientation: portrait)
{
	div.contact_form
	{
		width: calc(100% - 50px);
		
		padding: 25px;
		
		top: calc(50% - 290px); 
		right: 25px;
		left: 25px;
		
	}
	div.contact_form form
	{
		width: calc(100% - 50px); 
		margin: 75px auto 0 auto;
	}
	
	div.contact_form input[type=email], 
	div.contact_form input[type=text],
	div.contact_form textarea
	{
		width: 256px;
	}
}

.shadow_around
{
	/*
	-webkit-box-shadow: 2px 3px 50px #ffc800;
	-moz-box-shadow: 2px 2px 50px #ffc800;
	box-shadow: 2px 3px 50px #ffc800;
	*/
	
	-webkit-box-shadow: 0px 10px 40px rgba(255, 200, 0, 0.5);
	-moz-box-shadow: 0px 10px 40px rgba(255, 200, 0, 0.5);
	box-shadow: 0px 10px 40px rgba(255, 200, 0, 0.5);
}

div.modal
{
	position: fixed; 
	z-index: 53;
	
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	
	background: #000000a0;
	
	display: none;
}


/*-----------------------
| SCROLL TOP
+----------------------*/
#scrollTop
{
	display: none;
	
	position: fixed;
	z-index: 35;
	right: 30px;
	bottom: 40px;
	
	width: 52px;
	height: 52px;
	padding: 15px;
	
	font-size: 18px;
	line-height: 100%;
	color: #ffc800;
	
	border: 2px #ffc800 solid;
	border-radius: 99px;
	outline: none;
	
	background-color: black;
	
	cursor: pointer;
	
	transition: 0.5s;
}

#scrollTop:hover
{
	color: white;
	background-color: #ffc800;
}

.mt25px
{
	margin-top: 25px;
}

.fa-sun:before
{
	content: "\f185";
}


.leaflet-control-attribution svg.leaflet-attribution-flag { display: none !important; } 