@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------
Website Design & Coding by JPG Design
Website: http://www.jpgdesign.co.za
Email: jp@jpgdesign.co.za
Tel: +27 21 558 9590 | Cell: +27 73 683 7028
Graphic Design, Branding of Promotional Gifts
and Clothing, Website Design
----------------------------------------------*/

/* ----------------------------------------------------------------- Reset ------------------------------------------------------------- */

@viewport{
    zoom: 1.0;
    width: extend-to-zoom;
}

*, html, body, div, span, applet, object, iframe,  
h1, h2, h3, h4, h5, h6, p, blockquote, pre,  
a, abbr, acronym, address, big, cite, code,  
del, dfn, em, font, img, ins, kbd, q, s, samp,  
small, strike, strong, sub, sup, tt, var,  
b, u, i, center,  
dl, dt, dd, ol, ul, li,  
fieldset, form, label, legend,  
table, caption, tbody, tfoot, thead, tr, th, td {  
     margin: 0;  
     padding: 0;  
     border: 0;  
     outline: 0;  
     font-size: 100%;
     vertical-align: baseline baseline;  
     background: transparent;
	 font-family: 'Open Sans', sans-serif;
	 -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
}

body {  
     line-height: 1;  
 }  

ol, ul {  
     list-style: none;  
 }  

blockquote, q {  
     quotes: none;  
 }  

blockquote:before, blockquote:after, q:before, q:after {  
     content: '';  
 }
   
/* remember to define focus styles! */  
:focus {  
     outline: 0;  
}  
   
/* tables still need 'cellspacing="0"' in the markup */  
 table {  
     border-collapse: collapse;  
     border-spacing: 0;  
}

.clr {
	margin: 0px;
	padding: 0px;
	border: 0px;
	clear: both;
}

img {
	max-width: 100%;
	width: 100%;
}

.img-normal-size {
	width: auto;
}

.center-it {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}


.pad20 {
	padding-bottom: 20px;
}

.pad30 {
	padding-bottom: 30px;
}

.pad40 {
	padding-bottom: 40px;
}

.pad50 {
	padding-bottom: 50px;
}

.pad60 {
	padding-bottom: 60px;
}

.pad70 {
	padding-bottom: 70px;
}

.pad80 {
	padding-bottom: 80px;
}

.pad90 {
	padding-bottom: 90px;
}

.pad100 {
	padding-bottom: 100px;
}

.mar110 {
	margin-bottom: 110px !important;
}

.mar20 {
	margin-bottom: 20px !important;
}

.mar30 {
	margin-bottom: 30px !important;
}

.mar40 {
	margin-bottom: 40px !important;
}

.mar50 {
	margin-bottom: 50px !important;
}

.mar60 {
	margin-bottom: 60px !important;
}

.mar70 {
	margin-bottom: 70px !important;
}

.mar80 {
	margin-bottom: 80px !important;
}

.mar90 {
	margin-bottom: 90px !important;
}

.mar100 {
	margin-bottom: 100px !important;
}

.mar110 {
	margin-bottom: 110px !important;
}

.grey {
	color: #3F3F40 !important;
}

.light-grey {
	color: #D1D3D4 !important;
}

.dark-red {
	color: #B91D2E !important;
}

.red {
	color: #ED1C24 !important;
}

.grey-back {
	background: #3F3F40 !important;
}

.light-grey-back {
	background: #D1D3D4 !important;
}

.light-grey-back2 {
	background: #fcfcfc !important;
}

.dark-red-back {
	background: #B91D2E !important;
}

.red-back {
	background: #ED1C24 !important;
}



sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}


.cd-top {
  display: inline-block;
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(232, 98, 86, 0.8) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .8;
}

.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

#mediaplayer {
	width:274px;
	height:19px;
	margin: 10px 0px 50px 0px;
	padding: 0px 0px 0px 0px;
}

/*
==============================================
floating
==============================================
*/

.bouncing-container {
	width: 100%;
}

.bouncing {
	animation-name: bouncing;
	-webkit-animation-name: bouncing;

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes bouncing {
	0% {
		transform: translateY(0%);	
	}
	50% {
		transform: translateY(8%);	
	}	
	100% {
		transform: translateY(0%);
	}			
}

@-webkit-keyframes bouncing {
	0% {
		-webkit-transform: translateY(0%);	
	}
	50% {
		-webkit-transform: translateY(8%);	
	}	
	100% {
		-webkit-transform: translateY(0%);
	}			
}


.imagedropshadow {
	padding: 5px;
	border: solid 1px #EFEFEF;
}

a:hover img.imagedropshadow {
	border: solid 1px #CCC;
	-moz-box-shadow: 1px 1px 5px #999;
	-webkit-box-shadow: 1px 1px 5px #999;
        box-shadow: 1px 1px 5px #999;
}

/* Slider  ---------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------- */

.tp-caption.big_white{
	position: absolute;
	color: #fff;
	text-shadow: none;
	font-weight: 800;
	font-size: 30px;
	line-height: 34px;
	font-family: 'Open Sans', sans;
	padding: 3px 4px;
	padding-top: 1px;
	margin: 0px;
	border-width: 0px;
	border-style: none;
	/*background-color:#000;*/
	letter-spacing: 0px;
}

.tp-caption h1{
	position: absolute;
	color: #666;
	text-shadow: none;
	font-weight: 400;
	font-size: 36px;
	line-height: 46px;
	font-family: 'Open Sans', sans;
/*	padding: 3px 4px;
	padding-top: 1px;
	margin: 0px;*/
	border-width: 0px;
	border-style: none;
	letter-spacing: 0px;
	text-align: left;
}

.tp-caption.white h1 {
	color: #FFF;
}

.tp-caption.white p {
	color: #FFF;
}

.tp-caption.trans-dark {
    width: 140% !important;
    height: 140% !important;
    background: rgba(68,61,55,0.9);
	background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.3) 60%) !important;
}

.tp-caption.trans-light {
    width: 140% !important;
    height: 140% !important;
    background: rgba(255,255,255,0.9);
	background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%,rgba(255,255,255,0.1) 100%) !important;
}

.tp-caption.dark-overlay {
	width: 140% !important;
    height: 140% !important;
    background: rgba(68,61,55,0.9);
	background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.4) 100%) !important;
}

.tp-caption.light-overlay {
    width: 140% !important;
    height: 140% !important;
    background: rgba(255,255,255,0.9);
	background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.4) 100%) !important;
}

.tp-caption.trans-blue {
    width: 45em;
    height: 17em;
    background: rgba(25,33,95,0.5);
}

.tp-caption.trans-gold {
    width: 180% !important;
    height: 15.07em;
    background: rgba(215,204,117,0.7);
}

.center {
	text-align: center;
}


.section-header {
    text-align: center;
    margin: 50px 0 19px;
    border-bottom: 0;
    padding-bottom: 9px;
}

.banner-slider h1 {
    font-size: 36px;
    font-weight: 300;
    margin-top: 0;
    line-height: 1.2;
}

.banner-slider h2 strong {
    display: block;
    border: none;
    padding: 0;
}

.banner-slider p {
    line-height: 1.8;
}


.trans-grey {
    width: 370px;
    height: 11.07em;
    background: rgba(68,61,55,0.9);
}

.btn-bg {
    font-size: 12px;
    border-radius: 0;
    color: #45403c;
    padding: 6px 12px ;
    cursor: default;
}

.banner-summary, .banner-heading {
    width: 385px;
    white-space: normal !important;
}

.slider-third .banner-heading {
    width: 479px;
}

.third-style {
    width: 390px;
}

.slider-third  .tp-caption .btn.btn-default {
    padding: 9px 26px;
}

.bottom-animation h2 {
    font-size: 24px;
    color: #fff;
}

.third-style h2, .third-style p {
    color: #fff;
}

.third-style h2 strong {
    font-size: 36px;
}

.third-style h2 {
    font-size: 30px;
}

.bottom-animation h2 strong {
    font-size: 36px;
}

.rev_slider_wrapper .tparrows {
    z-index: 9999;
}

/*revolution slider style*/
.tp-bullets.simplebullets.round .bullet {
    background: none;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    border-radius: 50%;
}

.tp-bullets.hidebullets {
    opacity: 1;
}

.portfolio-description-item {
	clear: both !important;
}

.portfolio-description p {
	margin: 0px 0px 0px 0px;
}

.portfolio-description p span {
	float: left;
	width: 90px;
}

.portfolio-description p span>span {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
}

/* ----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------- Typography ------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	text-align: left;
}

h1 {
	font-size: 22px;
	color: #B91D2E;
	font-weight: 400;
	text-transform: uppercase;
}

h1.line{
	border-bottom:1px solid #B91D2E;
	padding-bottom:9px;
	position:relative;
	margin:10px 0px 20px 0px;
}

h1.line.white{
	border-bottom:1px solid #FFF;
	padding-bottom:9px;
	position:relative;
	margin:10px 0px 20px 0px;
}

h1.line>span{
	width:auto;
	border-bottom:3px solid #B91D2E;
	padding-bottom:2px;
}

h1.line.white>span{
	width:auto;
	border-bottom:3px solid #FFF;
	padding-bottom:2px;
}

h2 {
	font-size: 18px;
	color: #B91D2E;
	font-weight: 200;
}


h3 {
	font-size: 20px;
	font-weight: 100;
	margin: 0px 0px 30px 0px;
	color: #B91D2E;
}

h3.line {
	border-bottom:1px solid #B91D2E;
	padding-bottom:6px;
	position:relative;
	margin:10px 0px 20px 0px;
}

h3.line>span {
	width:auto;
	border-bottom:3px solid #B91D2E;
	padding-bottom:2px;
}

span.light {
	color: #CCC;
}

h4 {
	font-size: 20px;
	font-weight: 100;
	margin: 0px 0px 30px 0px;
	letter-spacing: 1px;
	line-height: 24px;
}

h4 span {
	display: block;
	font-size: 14px;
	font-style: italic;
	margin-top: 5px;
	color: #999;
}

h4 span.q {
	display: block;
	font-size: 10px;
	font-style: italic;
	margin-top: 0px;
	line-height: 10px;
	color: #999;
}

h5 {
}

h6 {
}

p {
	font-weight: 100;
	color: #666666;
	font-size: 16px;
	line-height: 28px;
	margin: 0px 0px 36px 0px;
}

p.highlight-grey {
	background-color: #efefef;
	border: 1px solid #CCC;
	color: #333;
	padding: 10px;
	margin: 10px 0;
	font-weight: 200;
}

p.contact-large {
	text-align: center;
	font-size: 32px;
	color: #F00;
}

p a:link, p a:visited {
	color: #CB2128;
	text-decoration: none;
	font-weight: 400;
}

p a:hover, p a:active {
	color: #424242;
	text-decoration: none;
	font-weight: 400;
}


hr {
	border:0;
	margin:30px 0;
	border-top:#ddd 1px solid;
	border-bottom:#fff 1px solid;
}

.right {
	float: right;
}

.left {
	float: left;
}

a[href$='.pdf'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/pdficon.png) center left no-repeat;
}

a[href$='.xls'], a[href$='.csv'], a[href$='.xlt'], a[href$='.xlw'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/excelicon.png) center left no-repeat;
}

a[href$='.doc'], a[href$='.rtf'], a[href$='.txt'], a[href$='.wps'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/wordicon.png) center left no-repeat;
}

a[href$='.zip'], a[href$='.gzip'], a[href$='.rar'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/zipicon.png) center left no-repeat;
}

.contact-details-container {
	padding: 12px 0px 0px 0px;
}

ul.contact-details li {
	list-style-type: none;
	display: inline;
	margin: 0px 12px 0px 0px;
	padding: 22px 0px 0px 0px;
	color: #FFFFFF;
	font-size: 12px;
}

ul.contact-details li a:link, ul.contact-details li a:visited {
	color: #FFFFFF;
	font-weight: 400;
	text-decoration: none;
}

ul.contact-details li a:hover, ul.contact-details li a:active {
	color: #c9c9c9;
	font-weight: 400;
}

.list-container {
	background: #84D401;
	padding: 10px 10px;
	margin: 0px 10px 40px 10px;
	border-bottom: 8px #74BC01 solid;
	border-top: 8px #74BC01 solid;
	width: 75%;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.list-group {
	margin-bottom: 20px;
	padding-left: 0;
}

.list-group-item {
	position: relative;
  	display: block;
  	padding: 10px 15px;
  	margin-bottom: -1px;
  	background-color: #c20e14;
  	border: 1px solid #F00;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

/*.list-group-item:first-child {
	-webkit-border-top-right-radius: 10px;
	-moz-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-top-left-radius: 10px;
  	border-top-left-radius: 10px;
}

.list-group-item:last-child {
  	margin-bottom: 0;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
}*/

a.list-group-item {
  	color: #FFFFFF;
	text-decoration: none;
	padding-left: 30px;
	font-weight: 100;
	font-size: 16px;
}

.list-group-item.heading {
	padding-left: 10px;
	font-weight: 500;
	color: #FFF;
	background-color: #424242;
  	border: 1px solid #424242;
}

a.list-group-item {
  	color: #FFFFFF;
}

a.list-group-item:hover,
a.list-group-item:focus {
  	text-decoration: none;
	background-color: #424242;
  	border: 1px solid #424242;
	
}

a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  	z-index: 2;
  	color: #ffffff;
  	background-color: #9F2231;
  	border-color: #1d9d74;
}

a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
  	color: inherit;
}

a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
  	color: #9aecd2;
}


/* Social Icons ================================
================================================ */

ul.social-icons li{
	list-style-type: none;
	display: inline;
	margin: 0px 10px 0px 0px;
}

ul.social-icons li a:link, ul.social-icons li a:link, ul.social-icons li a:visited, ul.social-icons li a:visited {
	color: #FFFFFF;
}

ul.social-icons li a:hover, ul.social-icons li a:active, ul.social-icons li a:hover, ul.social-icons li a:active {
	color: #c9c9c9;
}

/* =========== End Social Icons =========================
====================================================== */

.content-container ul {
	padding: 0px 0px 30px 0px;
}

ul.r-arrow li {
	font-size: 16px;
	font-weight: 100;
	color: #666666;
	line-height: 24px;
	background: url(../images/bullets/gray-arrow-right.png) no-repeat 0px 6px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul li ul.r-dot-s li {
	background: url(../images/bullets/list-bullet-s.png) no-repeat 0px 9px;
	margin: 16px 0 0px 24px;
}

ul.r-dot-s li {
	font-size: 16px;
	font-weight: 100;
	color: #666666;
	line-height: 24px;
	background: url(../images/bullets/list-bullet-s.png) no-repeat 0px 9px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.r-dot-s li a:link, ul.r-dot-s li a:visited {
	color: #828285;
	text-decoration: none;
}

ul.r-dot-s li a:hover, ul.r-dot-s li a:active {
	color: #21275f;
	text-decoration: underline;
}

ol {
	list-style-type: lower-alpha;
}

ol.r-arrow li {
	font-size: 16px;
	font-weight: 100;
	color: #666666;
	line-height: 18px;
	background: url(../images/bullets/gray-arrow-right.png) no-repeat 0px 3px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.dot li {
	font-size: 16px;
	font-weight: 100;
	color: #666666;
	line-height: 28px;
	background: url(../images/bullets/list-bullet.png) no-repeat 0px 9px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.r-arrow-dark li {
	font-size: 16px;
	font-weight: 100;
	color: #666666;
	line-height: 28px;
	background: url(../images/bullets/bullet.png) no-repeat 0px 9px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.r-arrow li a:link, ul.r-dot li a:link, ul.r-arrow-dark li a:link, ul.r-arrow li a:visited, ul.r-dot li a:visited, ul.r-arrow-dark li a:visited {
	text-decoration: none;
	color: #333;
}

ul.r-arrow li a:hover, ul.r-dot li a:hover, ul.r-arrow-dark li a:hover, ul.r-arrow li a:active, ul.r-dot li a:active, ul.r-arrow-dark li a:active {
	text-decoration: underline;
	color: #666;
}

blockquote {
	font-size: 24px;
	font-weight: 100;
	padding: 10px;
	width: 90%;
	background-color: #ebebeb;
	border-left: #66af45 5px solid;
	margin-left: 50px;
	line-height: 34px;
	color: #666666;
	margin-bottom: 30px;
}

/* --------------------------------------------------------------- Navigation ----------------------------------------------------------- */

.tinynav { display: none; }

#navi.selected a {
	color: #e31e25;
	}
	
#navi.selected a:hover {
	color: #B91D2E;
	}

#navi {
	color: #B91D2E;
	list-style:none;
	margin-top:52px;
	padding:0;
	text-align:right;
	z-index: 6000;
	text-transform: uppercase !important;
	-webkit-transition: margin .75s;
	-moz-transition: margin .75s;
	-ms-transition: margin .75s;
	-o-transition: margin .75s;
	transition: margin .75s;
}

#navi li{
	position:relative;
	display:inline;
	background-color: #fcfcfc;
	border: 1px thin #CCC;
}

#navi a {
	display:inline-block;
	padding:17px 16px 10px 16px;
}

#navi ul {
	position:absolute;
	left:-9999px;
	margin:0;
	padding:0;
	text-align:left;
}

#navi ul li {
	display:block;
	z-index: 999999;
}

#navi li:hover ul {
	left:0;
}

#navi li:hover a {
	text-decoration:none;
	color: #e31e25;
}

#navi li:hover ul a{
	text-decoration:none;
	background:none;
	background: #fcfcfc;
}

#navi li:hover ul a:hover{
	text-decoration:underline;
}

#navi ul a{
	white-space:nowrap;
	display:block;
	border-bottom:1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

#navi a {
	color:#B91D2E;
	text-decoration:none;
	font-size: 14px;
}

#navi a:hover{
	text-decoration:underline;
}

/* hide sub menu links */
ul.sub-menu {
    display:none;
}

/* ------------------------------------------------------------------ Contact Forms -------------------------------------------------------------- */


.contact-form {
}

.form-element {
	float: left;
	padding: 5px;
	width: auto;=
}

label {
	line-height: 34px;
	width: 170px;
	float: left;
	color: #999;
}

label span {
	color: #F00; 
}

select {
	border: #03F;
}

::-webkit-input-placeholder {
   color: #CCC;
}

:-moz-placeholder { /* Firefox 18- */
   color: #CCC;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #CCC;  
}

:-ms-input-placeholder {  
   color: #CCC;  
}

.form-notice {
	margin: 10px 0px;
}

.form-notice p {
	padding: 10px;
	border: 1px #F00 solid;
	background-color: #FFFFFF;
	margin: 0px 0px 0px 0px;
	color: #F00;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
}

/* --------------------------------------------------------------- Google Map ----------------------------------------------------------- */

#googlemaps {
	height: 300px;
	border: 1px solid #666;
	margin: 10px;
}

/* ----------------------------------------------------------------- Content ------------------------------------------------------------- */

.colourbar {
	width: 100%;
	height: 10px;
	z-index: 99999999;
}

.top-menu-container {
	background-color: #65b245;
	height: 45px;
	z-index: 99999999;
}

.header-container {
	height: auto !important;
	z-index: 99999999;
	background-color: #FFF;
	border-bottom: #CCC 1px solid;
}

.logo {
	width: 100%;
  	-webkit-transition: width .75s;
	-moz-transition: width .75s;
	-ms-transition: width .75s;
	-o-transition: width .75s;
	transition: width .75s;
}

.flash-container {
	width: 100% !important;
	margin-bottom: 0px !important;
}

.leader-text-container {
	width: 100%;
	padding: 40px 0px;
	border-bottom: #CCC 1px solid;
	margin-bottom: 50px;
}

.leader-text-container.no-margin {
	margin-bottom: 0px;
}


.leader-text {
	text-align: center;
	font-size: 26px;
	font-weight: 100;
	line-height: 32px;
	color: #B91D2E;
}

img.float-right {
	float: right;
	max-width: 70% !important;
}

.white {
	color: #FFF;
}

.leader-text span {
	font-weight: 400;
	color: #964094;
}

.leader-text img {
	width: auto;
}

.flash-container {
	margin-bottom: 30px;
}

.services-container {
	margin: 0px 0px 38px 0px;
}

.product {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.product:hover {
	 transform: scale(1.2) rotate(5deg);
    -webkit-transform: scale(1.1) rotate(5deg) translate(0,-1em);
    -moz-transform: scale(1.1) rotate(5deg) translate(0,-1em);
    -o-transform: scale(1.1) rotate(5deg) translate(0,-1em);
    -ms-transform: scale(1.1) rotate(5deg) translate(0,-1em);
	 transform:  scale(1.1) rotate(5deg) translate(0,-1em);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product2:hover {
	 transform: scale(1.2) rotate(-5deg);
    -webkit-transform: scale(1.1) rotate(-5deg) translate(0,-1em);
    -moz-transform: scale(1.1) rotate(-5deg) translate(0,-1em);
    -o-transform: scale(1.1) rotate(-5deg) translate(0,-1em);
    -ms-transform: scale(1.1) rotate(-5deg) translate(0,-1em);
	 transform:  scale(1.1) rotate(-5deg) translate(0,-1em);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services-container h2 {
	margin: 20px 0 20px 0;
	font-size: 16px;
	font-weight: 400;
	height: 30px;
}

.services-container h2, .services-container p {
	text-align: center;
}

.services-container p {
	font-size: 14px;
	color: #666666;
	line-height: 18px;
	margin: 10px 0px 10px 0px;
	height: 170px;
}

.services-container p.action {
	height: 0 !important;
	font-weight: normal !important;
}

.services-container p.image {
	height: 100% !important;
	font-weight: normal !important;
}

.services-container .item {
	padding-bottom: 50px;
}

.content-container {
	width: 100%;
}

.team img {
	margin-bottom: 10px;
}

.team img:hover {
	background-color: none;
}

.team-button {
	display: block;
	text-align: center;
	margin: auto;
}

.team-content {
	padding-left: 30px;
}

.team-content p {
	margin: 0px 0px 20px 0px;
}

.facebook-container {
	margin: 0px 0px 50px 0px;
}

.client-logo-carousel {
	margin: 0px 0px 50px 0px;
}

.footer-container {
	background-color: #2c2c2c;
	height: 45px;
}

.footer-container p a:link, .footer-container p a:visited {
	color: #999;
}

.copyright-container {
	text-align: center;
	margin: 8px 0px;
}

.social-container {
	float: right;
	margin: 13px 0px;
}

.social-likes {
	margin: 10px 0px 10px 0px;
}

/* -------------------------- NEWS ------------------------------- */

.news-container {
	background: #EFEFEF;
	padding: 10px;
	border: 1px solid #dddddd;
	margin: 0px 0px 20px 0px;
}

.news-container a:link, .news-container a:visited {
	color: #FFF;
}

.news-container a:hover, .news-container a:active {
	color: #FFF;
}

.news-container:hover {
	background: #FFFFFF;
}

.news-container img {
	max-width: 130px;
	float: left;
	padding: 0px 10px 0px 0px;
}

.news-container p {
	font-size: 14px;
	margin: 0px 0px 10px 0px;
	line-height: 1.5;
}

.date {
	color: #636363;
	font-weight: 600;
	font-size: 12px !important;
}

.heading {
	background-color: #954294;
	color: #FFF;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px !important;
	padding: 5px;
}

.content {
	font-weight: 400;

}

/* -------------------------- MEDIA --------------------------- */

.media-container {
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #a7a7a7;
}

.media-container img {
	max-width: 99%;
	padding: 0px 0px 10px 0px;
	border: 1px solid #a7a7a7;
}

.media-container img:hover {
	border: 1px solid #66af45;
}

.media-container p {
	font-size: 13px;
	margin: 0px 0px 0px 0px;
	line-height: 1.3;
}

.media-container p.title {
	text-align: center;
	color: #66af45;
	font-weight: 600;
}

.media-container p.title span {
	display: block;
	font-weight: 100;
	margin: 3px 0px 0px 0px;

}

.media-container p.download {
	display: block;
	text-align: center;
	color: #66af45;
	font-weight: 600;
	margin: 10px 0px 6px 0px;
}

.media-container p.download a:link, .media-container p.download a:visited, {
	color: #66af45;
}

.media-container p.download a:hover, .media-container p.download a:active, {
	color: #000;
}



/* ------------------------------------------------------------- Global Classes ---------------------------------------------------------- */

.btn a{
	float: left;
	display: block;
	width: 125px;
	height: 38px;
	background: url(../images/order_button.jpg) no-repeat 0 0;
	margin: 60px 0px 0px 130px;
	border: 0px;
	z-index: 999;
}

.btn a:hover { 
	background-position: 0px -38px;
}

.btn a span {
	display: none;
}

/* -------------------------------------------------------------- Social Media ---------------------------------------------------------- */

#social_side {
	position:relative;
	float:left;
}

#social_side .contents {
	position:absolute;
	float:left;
	top:300px;
	z-index:2000;
}

#social_side a {
	background-repeat: no-repeat;
	display:block;
	width:54px;
	height:66px;
	text-indent:-99999px;
}

#social_side a:hover {
	background-position:right top;
}

#social_side a.facebook {
	background-image: url(../images/social_fb.png);
}

#social_side a.pinterest {
	background-image: url(../images/social_pinterest.png);
}

.blue {
	background-color: #036;
	color: #FFF !important;
	padding: 20px 0px 20px 0px;
}

.white {
	color: #FFF !important;
}

.grey {
	background-color: #ebebeb;
	padding: 30px 0px 20px 0px;
	color: #333 !important;
}

