	/* GLOBAL
----------------------- */ 
*{
	box-sizing: border-box;
	transition: all 0.3s linear 0s;
	outline: none;
}
body{
	background: #fff;
	padding: 0px;
	margin: 0px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	color: #121212;
	font-size: 14px;
}
html {
	overflow-x: hidden;
}

p{
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 20px;
}
a{ 
	text-decoration: none;
}
ul {
	margin:0;
	padding:0;	
}
h1,h2,h3,h4,h5,h6{
	margin: 0px;
	padding: 0px; 
	line-height: normal;
	font-weight: 400;
}
.h3, h3{
	font-size: 22px;
	line-height: 22px;
}
.h4, h4{
	font-size: 18px;
}
img{
    border: none;
    height: auto;
    max-width: 100%;
    outline: none;
}
input,select,textarea {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}
b,strong {
	font-weight: 700;
}
.col-1{
	width: 8.33333333%;
    float: left;
    padding: 0 15px;
}
.col-2 {
    width: 16.66666667%;
    float: left;
    padding: 0 15px;
}
.col-3 {
    width: 25%;
	float: left;
	padding: 0 15px;
}
.col-4 {
    width: 33.33333333%;
	float: left;
	padding: 0 15px;
}
.col-5 {
    width: 41.66666667%;
    float: left;
    padding: 0 15px;
}
.col-6{
	width: 48%;
	margin: 0 4% 0 0;
	float: left;
}
.col-12{
	float: left;
	width: 100%;
}
.col-6+.col-6{
	margin:0;
}
.btn{
	font-family: 'Lato', sans-serif;
	color: #fff;
    font-weight: 400;
    position: relative;
    font-size: 14px;
    padding: 12px 30px;
    border: none;
    text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.btn:before {
   content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ed1c24;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btnt:hover, .btn:focus, .btn:active {
  color: white;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.text-center{
	text-align: center;
}
.header{
	background: #fff;
}
.container{
	max-width: 1100px;
	margin: 0px auto;
}

.row{
	padding: 0 15px;
}
.pad-35{
	padding: 0 35px;
}
.header h1{
	float: left;
	padding: 13px 0 0;
}
.clearfix{
	clear: both;
}
.clearfix:after,
.clearfix:before {
	content: "";
	display: table;
	clear: both;
}
.pull-left{
	float: left;
}
.pull-right{
	float: right;
}
/* Top Header */
.logo {
    margin: 0 0 -25px;
}
.top-header{
	padding: 0;
	background: #f5f5f5;
	border-bottom: #eaeaea solid 1px;
}
.top-header{
	padding: 0;
}
.top-header ul{
	list-style: none;
	float: left;
	border-right: #eaeaea solid 1px;
}
.top-header ul li{
	float: left;
	border-left: #eaeaea solid 1px;
}
.top-header ul li a{
	color: #999;
	font-size: 18px;
	padding: 5px 10px;
	display: inline-block;
}
.top-header ul li:hover a{
	background: #fff;
	color: #ed1c24;
}


/* Header */
.mid-header{
	background: #fff;
	padding: 15px 0 0 0; 
}
.h-right{
	margin: 15px 0 0 0;
}
.h-block{
	text-align: left;
    float: left;
    /*border-left: 2px solid #eee;*/
    padding: 5px 30px;
}

.h-block > h4{
	color: #aaa;
	font-size: 13px;
}
.h-block > h5{
	color: #333;
	font-size: 15px;
	font-weight: 700;
	margin: 3px 0 0 0;
}
.h-block > h5 a{
	color: #333;
}
.h-block > h5 a:hover{
	color: #b13225;
}
.h-block > h4 > i{
	color: #ed1c24;
	font-size: 14px;
}
.req{
	background: #808285;
	border-radius: 2px;
}

/* Navigation */
.nav{
	border-bottom: #ed1c24 solid 15px;
}
.nav > .container:before{
	content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 50%;
    height: 35px;
	background: #ed1c24;
}
.menu{
	position: relative;
	background: #ed1c24;
	height: 35px;
	margin-left: 26%;
	float: left;
}
.menu:before{
	content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-bottom: 35px solid #ed1c24;
    border-left: 35px solid transparent;
    position: absolute;
    left: -35px;
}
.menu ul{
	list-style: none;
}
.menu ul li{
	float: left;
	padding: 15px 0 0;
}
.menu ul li a{
	position: relative;
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
	-webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}
.menu ul li a:before {
    position: absolute;
    top: 2px;
    left: 50%;
    color: transparent;
    content: ".";
    text-shadow: transparent 0px 0px;
    font-size: 24px;
    transform: translateX(-50%);
    pointer-events: none;
    transition: text-shadow 0.3s, color 0.3s;
}
.menu ul li a:hover:before, .menu ul li a:focus:before,
.menu ul li a.active:before  {
    color: #fff;
    text-shadow: 10px 0 #fff, -10px 0 #fff;
}
.menu ul li a:hover,
.menu ul li a.active{
	color: rgba(255,255,255,0.8);
}
.menu ul li:last-child a{
	border: none;
}

/* Social */
.social{
	color: #fff;
	position: relative;
    top: 10px;
}
.social a{
	color: #ed1c24;
    display: inline-block;
    font-size: 20px;
    position: relative;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 5px 0;
	margin: 0 0 0 10px;
}
.social a:hover{
	color: #fff;
	background: #bd1a20;
}
/* Heading */
.abt-services{
	text-align: center;
}
.abt-services p{
	padding: 0 10%;
}
.main-heading {
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    position: relative;
	font-size: 36px;
    margin: 0 0 50px;
}
.main-heading:before {
    content: "";
    color: #ffffff;
    background-color: #ffffff;
    width: 101%;
    position: absolute;
    height: 17px;
    left: 0;
    bottom: -10px;
    z-index: 1;
}
.main-heading:after {
    content: "";
    color: #ffffff;
    background-color: #ed1c24;
    width: 100%;
    position: absolute;
    height: 17px;
    left: 0;
    bottom: -15px;
    -webkit-transform: skew(0deg, -0.8deg);
    -moz-transform: skew(0deg, -0.8deg);
    -ms-transform: skew(0deg, -0.8deg);
    -o-transform: skew(0deg, -0.8deg);
    transform: skew(0deg, -0.8deg);
}
/* flexslider */
.flexslider{
	border-bottom: #fff solid 1px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}

.flexslider img{
	width: 100%;
}
.flexslider.loading {
	height: 400px; 
	background: #fff url(../images/loading.gif) no-repeat center center;
}

/* Content */
.services{
	padding: 40px 0 30px;
}
.services .text-center p{
	padding: 0 15%;
}
.ser-row{
	margin: 40px 0 0 0;
}
.icon-box {
	width: 100%;
	margin-bottom: 30px;
}

.icon-box .icon-place {
	position: relative;
	float: left;
	width: 80px;
	height: 80px;
	text-align: center;
	background-color: #fdb813;
	color: #fff;
	font-size: 36px;
	line-height: 80px;
}

.icon-box .icon-place:after {
	content: "";
	color: #ffffff;
	background-color: #fdb813;
	width: 100%;
	position: absolute;
	height: 20px;
	left: 0;
	bottom: -5px;
	-webkit-transform: skew(0deg, 4deg);
	-moz-transform: skew(0deg, 4deg);
	-ms-transform: skew(0deg, 4deg);
	-o-transform: skew(0deg, 4deg);
	transform: skew(0deg, 4deg);
	z-index: 1;
}

.icon-box .icon-place,
.icon-box .icon-place i,
.icon-box .icon-place:after {
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;	
	-o-transition:all 0.5s ease;	
	transition:all 0.5s ease;
	line-height: 80px;
}

.icon-box:hover .icon-place,
.icon-box:hover .icon-place:after {
	background-color: #ed1d24;
}

.icon-box:hover .icon-place i {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.icon-box:hover .icon-place {
	-webkit-transform: translate(0, 15px);
	-moz-transform: translate(0, 15px);
	-ms-transform: translate(0, 15px);
	-o-transform: translate(0, 15px);
	transform: translate(0, 15px);
}

.icon-box .icon-content {
	position: relative;
	background: #fafafa;
	margin-left: 80px;
	padding: 15px 20px 30px;
}

.icon-box .icon-content:after {
	content: "";
	color: #ffffff;
	background-color: #fafafa;
	width: 100%;
	position: absolute;
	height: 33px;
	left: 0;
	bottom: -10px;
	-webkit-transform: skew(0deg, -4deg);
	-moz-transform: skew(0deg, -4deg);
	-ms-transform: skew(0deg, -4deg);
	-o-transform: skew(0deg, -4deg);
	transform: skew(0deg, -4deg);
	z-index: 1;
}
.icon-box .icon-content h4 {
	margin: 0 0 10px;
	font-weight: 700;
}
.icon-box .icon-content p{
	color: #666;
	margin: 0;
	text-align: justify;
}

.icon-box-2 {
	position: relative;
	margin-bottom: 0;
	width: 100%;
}

/* Fact Counter */
.fact-counter{
	/*background: #ed1c24;
	margin: 0;
	padding: 35px 0;*/
	background: url("../images/btm-bg.png") no-repeat;
	padding: 185px 0;
}
.fact-counter .col-3{
	border-right: #fff solid 1px;
}
.fact-counter .col-3:last-child{
	border: none;
}
.count-outer{
	color: #fff;
}
h3.counter-title{
	text-transform: uppercase;
}
h4.count-text{
	font-weight: 700;
	font-size: 50px;
}

/* Mid-Section */
.items-group{
	padding: 0 0 50px;
}
.items-group h2{
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 30px;
	padding: 0 0 15px;
	text-transform: uppercase;
	background: url("../images/abt-btm.png") no-repeat left bottom;
}

.list-item{
	margin: 0 0 30px;
}
.list-item  .list-icon {
    float: left;
    font-size: 30px;
	color: #ed1c24;
}
.list-item .list-right {
    padding: 5px 0  0;
    margin-left: 50px;
    word-wrap: break-word;
}
.list-right h4{
	color: #ed1c24;
	font-size: 22px;
	font-weight: 400;
	margin: 0 0 10px;
	line-height: 18px;
}
.list-right h4 a{
	color: #b13225;
	font-size: 22px;
	font-weight: 400;
}
.list-right .desc{
	font-size: 13px;
	line-height: 18px;
}

/* Abt Us */
.chart-box {
    position: relative;
    text-align: center;
}
.chart-box h5{
	font-size: 20px;
	margin: 20px 0 5px 0;
}
.chart-box p{
	color: #999999;
	margin: 0;
}

/* Footer */
.footer{
	background: #222222 url(../images/foot-map.png) no-repeat center  center;
	padding: 30px 0 0 0;
}
.foot-box ul{
	list-style: none;
}
.foot-box ul li,
.foot-box ul li a{
	color: #aaa;
}
.foot-box ul li a:hover{
	color: #fdb813;
}
.foot-box ul li{
	margin: 0 0 12px;
}
.foot-box:nth-child(2) ul li:before{
   font-family: FontAwesome;
   content: "\f101";
   display: inline-block;
   padding-right: 3px;
   vertical-align: middle;
   color: #fdb813;
}
.foot-box ul li i{
	color: #fdb813;
	display: inline-block;
	padding-right: 3px;
}
.foot-box{
	color: #aaa;
}
.foot-box h3{
	font-size: 22px;
	color:#fff;
	font-weight: 500;
	margin: 0 0 20px;
	padding: 0 0 10px;
	position: relative;
	background: url("../images/foot-brdr.png") no-repeat left bottom;
}
.foot-box h3 span{
	color: #fdb813;
}

/* Copyright */
.copy{
	background: #2a2a2a;
	padding: 10px 0;
	margin: 40px 0 0 0;
	font-size: 13px;
	color: #999;
	border-top: #363636 solid 1px;
}	
.copy a{
	color: #999;
}
.copy a:hover{
	color: #ed1d24;
}

/************************ 
	ABOUT US
************************/
.inner-banner {
	background-image: url(../images/abt-banner.jpg);
    /*background-attachment: fixed;*/
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 75px 0;
	border-bottom: #fff solid 1px;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
}
.inner-banner h1 {
    display: inline-block;
    margin: 0px;
	font-size: 28px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
}
.inner-banner .paging,
.inner-banner .paging a{
	color: #fff;
	font-size: 13px;
	margin: 0 2px;
}
.inner-banner .paging a:hover{
	
}
.content {
    padding: 40px 0 0;
}
h5{
	color: #999;
	font-size: 18px;
	text-transform: uppercase;
}

/* Our Team */
.our-team{
	background: #f5f5f5;
	border-bottom: #eeeeee solid 1px;
	border-top: #eeeeee solid 1px;
	padding: 30px 0 40px;
}
.content h2{
	font-size: 28px;
	text-transform: uppercase;
	margin: 0 0 30px;
	padding: 0 0 15px;
	background: url(../images/h2-brdr.png) no-repeat left bottom;
}

.staff {
	position: relative;
	background: #ffffff;
	margin: 0 3% 0 0;
	width: 22%;
	float: left;
}
.last{
	margin-right: 0 !important; 
}

.staff .staff-image-container {
	position: relative;
	z-index: 1;
}

.staff-image-overlay {
	color: #fff;
	padding: 40px;
	text-align: center;
	line-height: 24px;
}

.staff .staff-social {
	position: absolute;
	top: 25px;
	/* left: -50px; */
	left: -25px;
	height: auto;
	width: 50px;
	background-color: #ed1d24;
	color: #fff;
	text-align: center;
	padding: 10px 0;

	-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;
	
	-webkit-transform: translate(25px,0) rotateY(90deg);
	-moz-transform: translate(25px,0) rotateY(90deg);
	-ms-transform: translate(25px,0) rotateY(90deg);
	-o-transform: translate(25px,0) rotateY(90deg);
	transform: translate(25px,0) rotateY(90deg);
	/* z-index: -1; */
	z-index: 0;
	display: none;
}

.staff .staff-social:after {
	position: absolute;
	background-color: #ed1d24;
	content: "";
	width: 100%;
	height: 15px;
	left: 0;
	bottom: -8px;
	-webkit-transform: skew(0deg, 15deg);
	-moz-transform: skew(0deg, 15deg);
	-ms-transform: skew(0deg, 15deg);
	-o-transform: skew(0deg, 15deg);
	transform: skew(0deg, 15deg);
	z-index: -1;
}

.staff:hover .staff-social {
	-webkit-transform: translate(0,0) rotateY(0deg);
	-moz-transform: translate(0,0) rotateY(0deg);
	-ms-transform: translate(0,0) rotateY(0deg);
	-o-transform: translate(0,0) rotateY(0deg);
	transform: translate(0,0) rotateY(0deg);
}

.staff .staff-social a {
	display: inline-block;
	width: 50px;
	height: 40px;
	font-size: 18px;
	color: #fff;
}

.staff .staff-social a:hover {
	
}

.staff .staff-image-container img {
	max-width: 100%;
	height: auto;
}

.staff .staff-image-overlay {
	display: none;
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	background-color: rgba(0,0,0,0);
	opacity: 0;
	-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;
}

.staff:hover .staff-image-overlay {
	background-color: rgba(0,0,0,0.5);
	opacity: 1;
}

.staff .staff-container:before {	
	position: absolute;
	background-color: #ffffff;
	content: "";
	width: 100%;
	height: 20px;
	left: 0;
	top: -10px;
	-webkit-transform: skew(0deg, 3deg);
	-moz-transform: skew(0deg, 3deg);
	-ms-transform: skew(0deg, 3deg);
	-o-transform: skew(0deg, 3deg);
	transform: skew(0deg, 3deg);
	z-index: 1;
}

.staff .staff-container {
	padding: 10px 20px 20px;
	position: relative;
	background: #fff;
	z-index: 1;
}

.staff .staff-container h4 {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.staff .staff-container p {
	margin-bottom: 0;
	color: #666;
}

.staff:after {
    position: absolute;
    background-color: #ed1d24;
    content: "";
    width: 100%;
    height: 6px;
    left: 0;
}

/* Tabber */
.abt-tab #tabs{
	text-align: left;
}
.abt-tab .ui-widget-content h3{
	font-size: 17px;
	background: #f5f5f5;
	padding: 5px 10px;
	margin: 5px 0 0 0;
	font-weight: 400;
}
.abt-tab .ui-widget-content h3 .fa{
	color: #ed1d24;
	margin: 0 5px 0 0;
}
/* Partners */
.partners{
	padding: 30px 0 0 0;
	display: none;
}
.p-logo {
    padding: 30px 0;
	background: #f5f5f5;
    text-align: center;
    display: block;
    border-right: #eee solid 3px;
	float: left;
	width: 22%;
	margin: 0 3% 0 0;
}
#owl-demo .item{
  margin: 3px;
  float: left;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}

/* Contact Us */
.con-map{
	float: left;
    width: 100%;
}
.con-map iframe{
	max-width: 100%;
}
.con-left {
    float: left;
    width: 65%;
	margin: 30px 0 0 0;
}
.con-left p{
	font-size: 15px;
	line-height: 22px;
}
.con-right {
     background: #f5f5f5;
    float: right;
    margin: 30px 0 0;
    padding: 30px 20px 20px;
    width: 28%;
	border: 1px solid #eaeaea;
}
.con-right  p{
	font-size: 15px;
	line-height: 22px;
	margin: 0 0 22px;
	padding: 0 0 8px 35px;
	clear: both;
}
.con-right  p.loc{
	background: url("../images/loc-icon.png") no-repeat left top;
}
.con-right  p.e-mail{
	background: url("../images/email-icon.png") no-repeat left top;
}
.con-right  p.ph{
	background: url("../images/ph-icon.png") no-repeat left top;
}
.full-row {
    float: left;
    width: 100%;
	margin: 0 0 20px;
}
.full-row label{
	display: block;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px;
}
.full-row input[type="text"],
.full-row input[type="email"],
.full-row textarea{
    -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.075);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.075);
	line-height: 16px;
    font-size: 16px;
    padding: 10px 5px;
    border: 1px solid #a9aab1;
	width: 99.5%;
	background: #f5f5f5;
}
.full-row input[type="text"]:focus,
.full-row input[type="email"]:focus,
.full-row textarea:focus{
	border-color: #ed1c24;
}
.full-row textarea{
	height: 100px;
}
.full-row input[type="submit"]{
	box-shadow: 0 -5px 0 0 rgba(0, 0, 0, 0.15) inset;
	 background-color: #ed1c24;
    color: #fff;
	border: none;
	padding: 10px 30px 15px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	cursor: pointer;
}
.full-row input[type="submit"]:hover{
	background: #808285;
}

.add{
	float: left;
	width: 100%;
	margin: 0 0 30px;
}
.add h4{
	font-weight: 700;
    font-size: 16px;
    margin: 0 0 15px;
    position: relative;
    background: #ed1c24;
    color: #fff;
    padding: 5px 10px;
    line-height: 20px;
}
/*.add h4:before {
    content: "";
    color: #f5f5f5;
    background-color: #f5f5f5;
    width: 100%;
    position: absolute;
    height: 10px;
    left: 0;
    bottom: -10px;
    z-index: 1;
}
.add h4:after {
    content: "";
    color: #f5f5f5;
    background-color: #ed1c24;
    width: 100%;
    position: absolute;
    height: 10px;
    left: 0;
    bottom: -15px;
    -webkit-transform: skew(0deg, -0.8deg);
    -moz-transform: skew(0deg, -0.8deg);
    -ms-transform: skew(0deg, -0.8deg);
    -o-transform: skew(0deg, -0.8deg);
    transform: skew(0deg, -0.8deg);
}*/
.add p a{
	color: #121212;
	text-decoration: underline;
}
.add p a:hover{
	color: #ed1c24;
}
.add p.loc .fa{
	margin: 3px 10px 60px 0;
}
.add .fa{
	font-size: 18px;
	margin: 3px 10px 10px 0;
	float: left;
}

/* Product Page */
.tab {
    float: left;
    width: 100%;
	margin: 0 0 40px;
}
.tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
	float: left;
    width: 100%;
    text-align: center;
}
.tab ul li {
    display: inline-block;
	margin: 0 5px;
}
.tab ul li a {
	display: block;
    color: #121212;
	font-size: 13px;
	text-transform: uppercase;
	border: 1px solid #d9d9da;
	padding: 7px 20px;
	font-weight: 600;
}
.tab ul li a:hover,
.tab ul li.active a{
	color: #fff;
	background: #ed1c24;
	border: #ed1c24 solid 1px;
}
.tab-content{
	float: left;
	width: 100%;
}
.p-content{
    background: #f5f5f5;
    border-bottom: #eeeeee solid 1px;
    border-top: #eeeeee solid 1px;
    padding: 30px 0 0;
}
.prdct{
    position: relative;
    background: #ffffff;
    margin: 0 4% 50px  0;
    width: 21%;
    float: left;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(51,51,51,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(51,51,51,0.5);
	box-shadow: 0px 0px 5px 0px rgba(51,51,51,0.5);
}

.prdct.last{
	margin-right: 0px;
}
.prdct-img{
	position: relative;
    z-index: 1;
}
.prdct-desc{
    padding: 10px 15px 20px;
    position: relative;
    background: #fff;
    z-index: 1;
}
/*.prdct-desc:before {
    position: absolute;
    background-color: #ffffff;
    content: "";
    width: 100%;
    height: 20px;
    left: 0;
    top: -10px;
    -webkit-transform: skew(0deg, 3deg);
    -moz-transform: skew(0deg, 3deg);
    -ms-transform: skew(0deg, 3deg);
    -o-transform: skew(0deg, 3deg);
    transform: skew(0deg, 3deg);
    z-index: 1;
}
.prdct:after {
    position: absolute;
    background-color: #ed1d24;
    content: "";
    width: 100%;
    height: 6px;
    left: 0;
}*/
.prdct-desc h4{
	color: #ed1d24;
	font-weight: 600;
	font-size: 17px;
	margin: 10px 0 20px;
}
.prdct-desc ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.prdct-desc ul li{
	font-size: 14px;
    line-height: 20px;
    padding-bottom: 3px;
    padding-left: 17px;
    position: relative;
}
.prdct-desc ul li:before{
	content: "\f138";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	text-decoration: inherit;
	position: absolute;
	left: 0;
	top: 1px;
}
.devices {
    float: left;
    width: 100%;
}
.devices .main-heading:before {
	background-color: #f5f5f5;
}
/* Gallery */
.gallery{
	background: #f5f5f5;
    border-bottom: #eeeeee solid 1px;
    border-top: #eeeeee solid 1px;
    padding: 30px 0 40px;
}

.hover_pack {
	float: left;
	width: 100%;
}
.hover_pack.left{
	margin-left: 3.33333%;
}
.hover_pack li{
	margin: 20px 3.5% 20px 0;
	width: 31%;
	float: left;
	list-style: none;
	border: #fff solid 1px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(51,51,51,0.5);
    -moz-box-shadow: 0px 0px 5px 0px rgba(51,51,51,0.5);
    box-shadow: 0px 0px 5px 0px rgba(51,51,51,0.5);
}
.hover_pack li img{
	width: 100%;
}
.hover_pack li:nth-child(3n){
	margin-right: 0px;
}
.hover_pack li a{
	position:relative;
	display:block;
	vertical-align:top;
	overflow:hidden;
}

.b_btn h4{
	text-transform: capitalize;
	font-size: 2em;
	font-weight: 600;
}
.b_btn p{
	font-size: 1em;
}

/*-- b-link-stripe --*/

.b-wrapper{
	position:absolute;
	width: 80%;
	bottom: 40px;
	left:10%;
	
	overflow:hidden;
	
    padding: 0;
    margin: 0;
}
.b-wrapper span{
	text-transform: uppercase;
	font-size: 17px;
	display: inline-block;
	font-weight: 600;
	 padding: 5px;
	 color:#fff;
	 background: rgba(237,28,36,0.9);
}
.b-wrapper p {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    margin: 5px 0 0 0;
    background: rgba(0,0,0,0.3);
    padding: 5px;

}
.b-animate-go{
	text-decoration:none;
}
.b-animate img{
	display: -webkit-inline-box;
}
.b-animate-go:hover .b-animate{
	visibility:visible;
}
.b-from-left{
	position:relative;
	left:-100%;
}
.b-animate-go:hover .b-from-left{
	left:0;
}
.main-gal{
	float: left;
	width: 100%;
}
.gal{
	float: left;
	width: 23%;
	margin: 0 2.66% 25px 0;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(51,51,51,0.4);
    -moz-box-shadow: 0px 0px 4px 0px rgba(51,51,51,0.4);
    box-shadow: 0px 0px 4px 0px rgba(51,51,51,0.4);
}
.gal:nth-child(4n){
	margin-right: 0;
}
.gal img{
	border: #fff solid 4px;
}