
.nav-filter {
	position: relative;
	padding: 0;
	margin: 0 0 36px 0;
	list-style: none;
	text-align: center;
}
.nav-filter li {
    float:none;
    text-align: center;
	display: inline-block;
}
.nav-filter li a {
	text-decoration: none;
	padding: 0 15px;
	cursor: pointer;
	display: block;
	position: relative;
	color: #090909;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: color 0.5s ease-out;
	-moz-transition: color 0.5s ease-out;
	-o-transition: color 0.5s ease-out;
	transition: color 0.5s ease-out;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
.nav-filter li a.active{
    color:#f0a005;
}
/*.nav-filter li a:after{
    content:"";
    position:absolute;
    width:11px;
    top:-1px;
    bottom:-1px;
    right:-12px;
    background:#fff;
}
.nav-filter li:nth-child(5) a:after{
    width:0;
    height:0;
    right:0;
}*/

/*.nav-filter .indicator {
    position: absolute;
    height: 100%;
    padding: 0;
    bottom: 0;
    background: #282828;
    -webkit-transition: width 0.5s, left 0.5s ease-out;
    -moz-transition: width 0.5s, left 0.5s ease-out;
    -o-transition: width 0.5s, left 0.5s ease-out;
    -ms-transition: width 0.5s, left 0.5s ease-out;
    transition: width 0.5s, left 0.5s ease-out;
}*/

/*----------------------------------
/* grid style
/*----------------------------------*/

.grid{
    overflow: hidden;
    padding: 0 2px 0 5px;
}

.grid .item {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 1px solid #fff;
    text-align: center;
    cursor: pointer;
}

.grid .item img {
    display: block;
	width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.grid .item:before{
    position: absolute;
    content:"";
    top: 0;
    left: 0;
    right:0;
    bottom:0;
    z-index: 1;
    opacity: 0;
    background: #f0a005;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.grid .item:after {
    position: absolute;
    content:"";
    top: 25px;
    right: 25px;
    bottom: 25px;
    left: 25px;
    border: 1px solid #fff;
    opacity: 0;
    z-index: 2;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.grid .item:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.grid .item .content{
    width:100%;
    left:0;
    overflow:hidden;
    top:50%;
    position:absolute;
    z-index: 3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
	padding:50px;
}

.grid .item h2 {
    margin: 0;
    padding:10px 0;
    color:#fff;
    font-size: 20px;
    font-weight:600;
	text-transform: uppercase;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform:translate3d(-100%,0,0);
    transform:translate3d(-100%,0,0);
}

.grid .item p {
    margin: 0 auto;
    font-size:13px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    color:#fff;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform:translate3d(100%,0,0);
    transform:translate3d(100%,0,0);
}
.grid .item:hover:before {
    opacity: 0.85;
}
.grid .item:hover:after{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.grid .item:hover p {
    opacity: 1;
    -webkit-transform:translate3d(0,0,0);
    transform:translate3d(0,0,0);
}

.grid .item:hover h2 {
    opacity: 1;
    -webkit-transform:translate3d(0,0,0);
    transform:translate3d(0,0,0);
}
.loadmore{
	margin-top: 40px;
	text-align: center;
}
.loadmore .loadmoreBtn{
	width: 176px;
	height: 53px;
	display: block;
	margin: 0 auto;
	background: #f0a005;
	padding: 0 15px;
	line-height: 53px;
	color: #fff;
	text-align: center;
	border-radius: 30px;
	border: none;
	outline: none;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	transition-duration: 0.3s;
	cursor: pointer;
}
.loadmore .loadmoreBtn:hover{
	background: #212324;
}








