/*------------------------------------------------------------------
[Table of contents]

1. Typography
2. Header
3. Slider Search
4. Social Media
5. Footer
-------------------------------------------------------------------*/


/* Typography */
body, html, button, input, select, textarea {
	font-family: 'Roboto Slab', serif;
	color: #222;
	margin: 0;
	font-size: 14px;
	line-height: 18px; } 
	
body, html {
	overflow-x: hidden; }

/** Address `font-family` inconsistency between `textarea` and other form * elements. **/
html, button, input, select, textarea {
	/*font-family: sans-serif;*/ } 

/* H1&H3 for page titles */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Slab', serif;
	margin: 0 0 20px 0;
	color: #222;
	font-weight: 300; }

h1 {
	font-size: 26px;
	line-height: 35px; }
	
h2 {
	font-size: 24px;
	line-height: 30px; }
	
h3 {
	font-size: 22px;
	line-height: 26px; }
	
h4 {
	font-size: 18px;
	line-height: 22px; }
	
h5 {
	font-size: 16px;
	line-height: 22px; }
	
h6 {
	font-size: 14px;
	line-height: 20px; }
	
img {
	vertical-align: middle;
	height: auto; }

a {
	color: #555;
	text-decoration: none;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s; }

a:focus {
	outline: none;
	text-decoration: none; }

a:hover {
	text-decoration: none;
	color: #e13842; }

p {
	line-height: 20px;
	font-weight: 400; }

blockquote {
	padding: 5px 0 5px 25px;
	margin: 0 0 20px 20px;
	color: #AFAFAF;
	font-size: 12px;
	text-transform: uppercase; }

::selection {
	background-color: #323a45;
	color: #fff; }

::-moz-selection {
	background-color: #323a45;
	color: #fff; }
	
@font-face {
    font-family: 'ShopSharkSymbols';
    src: url('../fonts/shopsharkfont-webfont.eot');
    src: url('../fonts/shopsharkfont-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/shopsharkfont-webfont.woff') format('woff'),
         url('../fonts/shopsharkfont-webfont.ttf') format('truetype'),
         url('../fonts/shopsharkfont-webfont.svg#shopsharkfontregular') format('svg');
    font-weight: normal;
    font-style: normal; }
	
/* Button */
 /* Global Button Styles {BTN} */
.animated-button:link, .animated-button:visited {
	position: relative;
	display: block;
	margin: 30px auto 0;
	padding: 14px 15px;
	color: #fff;
	font-size:14px;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	border-radius: 0;
	/*text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);*/
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease; }

.animated-button:link:after, .animated-button:visited:after {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	z-index: -1;
	-webkit-transition: all 0.75s ease 0s;
	-moz-transition: all 0.75s ease 0s;
	-o-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s; }
	
.animated-button:link:hover, .animated-button:visited:hover {
	color: #FFF;
	text-shadow: none; }
	
.animated-button:link:hover:after, .animated-button:visited:hover:after {
	height: 450%; }
	
.animated-button:link, .animated-button:visited {
	position: relative;
	display: block;
	margin: 30px auto 0;
	padding: 14px 15px;
	color: #fff;
	font-size:14px;
	border-radius: 0;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	/*text-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(0, 0, 0, 0.2);*/
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease; }

.animated-button.btn-style {
	background: #bd2132;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	position: relative;
	border: 2px solid #bd2132;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	
	font-size: 12px;
	text-transform: uppercase;
    font-weight: normal;
    height: 45px;
    line-height: 45px;
    padding: 0 18px;
	
	/*Custom*/
	-webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    transform: translateY(-5px); }
	
.animated-button.btn-style:hover {
	color: #000 !important;
	background-color: transparent;
	text-shadow: nthree; }
	
.animated-button.btn-style i {
	margin-left: 20px; }
	
.animated-button.btn-style:hover:before {
	left: 0%;
	right: auto;
	width: 100%; }
	
.animated-button.btn-style:before {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	color: #bd2132 !important;
	background: #fff;
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1); }	
	
/*Color*/
.animated-button.btn-style.color1 {
	border-color: #fb511e;
	background: #fb511e;
	color: #fff; }

.animated-button.btn-style.color1:before {
	background: #fff;
	color: #fff !important; }
	
.animated-button.btn-style.color1:hover {
	color: #fff !important; }
	

/*	Contact Us	*/
.contact-details {
    float: left;
    font-size: 14px;
    margin-bottom: 30px;
    width: 100%;
	font-weight: 300;
	line-height: 22px; }
	
.contact-details .address-wrapper {
    display: inline-block;
    padding: 20px 0 0; }
	
.contact-details .address-row {
	padding: 0px;
	margin-top: 25px; }
	
.contact-details h3 {
    font-size: 18px;
	font-weight: 500;
    margin-top: 0;
    padding-bottom: 0px;
    padding-left: 0px;
	margin-bottom: 10px; }
	
.contact-details .address-data {
    padding-left: 0px;
	margin-bottom: 20px; }
	
.contact-details .address-wrapper .contactname {
    font-size: 14px;
	font-weight: 300;
	margin-bottom: 10px; }
	


.product-wrap .row {
	margin-bottom: 60px; }

.product-wrap ul {
	padding: 0 0 0 15px;
	margin: 0 0 0 0px;
	width: 100%;
	margin-top: 20px; }	
	
.product-wrap ul li {
	display: list-item;
	list-style: square;
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 10px;
	padding-left: 10px; }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	