/* CSS Document */

* {
	font-family: 'Maven Pro', sans-serif;
	
}
html, body {
	background: #1c1d1d;
	height: 100%;
	color: #cabfc2;
}
body{
	overflow-x: hidden;
}

#loading {
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		z-index: 9999999999;
}

#loading .loading-container {
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		width: 100%;
		z-index: 999;
}

#loading .loading-right {
		float: left;
		color: #FFF;
		width: 50%;
		text-align: right;
}

#loading .loading-left {
		float: left;
		color: #7a7a7a;
		width: 50%;
		text-align: right;
		-moz-transform: scale(-1, 1);
		-webkit-transform: scale(-1, 1);
		-o-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
		transform: scale(-1, 1);
		margin-top: 40px;
}

#loading h1,
h4 {
		-webkit-transition: opacity .25s;
		-moz-transition: opacity .25s;
		-o-transition: opacity .25s;
		-ms-transition: opacity .25s;
		transition: opacity .25s;
		font-family: "FARCRY", Verdana, Tahoma;
}

#loading h1 {
		font-size: 6vw;
}

#loading h4 {
		font-size: 3vw;
}

#loading h4:first-child {
		margin-bottom: -2vw;
}

#loading h4:last-child {
		margin-top: -1.7vw;
}
/********************loading product******************/
.wrap-loading{
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: #000;
	z-index: 99999;
}
#load {
  position:absolute;
  width:600px;
  height:36px;
  left:50%;
  top:40%;
  margin-left:-300px;
  overflow:visible;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  cursor:default;
}
.loading{
  display: flex;
  flex-direction: column;
  align-items: center;
  
  &__msg {
    font-family: Roboto;
    font-size: 16px;
  }
  
  &__dots {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin: 100px 0 30px 0;

    &__dot {
      background-color: #44BBA4;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      margin: 0 5px;
      color: #587B7F;

      &:nth-child(1) {
        animation: bounce 1s 1s infinite;
      }

      &:nth-child(2) {
        animation: bounce 1s 1.2s infinite;
      }


      &:nth-child(3) {
        animation: bounce 1s 1.4s infinite;
      }
    }
  }
}

@keyframes bounce {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.wrapper{
	height: 100%;
	background-color: #333;
}
.btnload{
	text-decoration: none;
	color: #fff;
	border: 3px solid #fff;
	font-weight: 600;
	font-size: 20px;
	line-height: 40px;
	/*display: inline-block;*/
	padding: 25px 60px;
	position: absolute;;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all 1s;

	overflow: hidden;
}
.btnload:before{
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 130px;
	background-color: #fff;

	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 1s;

	animation: wave 4s infinite linear;
}

@keyframes wave{
	0%{
		transform:translateX(-50%) rotate(0deg);
	}
	100%{
		transform:translateX(-50%) rotate(360deg);
	}
}

.btnload:hover{
	color: #333;
}

.btnload:hover:before{
	top: 15px;
}
#load div {
  position:absolute;
  width:20px;
  height:36px;
  opacity:0;
  font-family:Helvetica, Arial, sans-serif;
  animation:move 3s linear infinite;
  -o-animation:move 3s linear infinite;
  -moz-animation:move 3s linear infinite;
  -webkit-animation:move 3s linear infinite;
  transform:rotate(180deg);
  -o-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  color:#fff;
}

#load div:nth-child(2) {
  animation-delay:0.2s;
  -o-animation-delay:0.2s;
  -moz-animation-delay:0.2s;
  -webkit-animation-delay:0.2s;
}
#load div:nth-child(3) {
  animation-delay:0.4s;
  -o-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
}
#load div:nth-child(4) {
  animation-delay:0.6s;
  -o-animation-delay:0.6s;
  -moz-animation-delay:0.6s;
  -webkit-animation-delay:0.6s;
}
#load div:nth-child(5) {
  animation-delay:0.8s;
  -o-animation-delay:0.8s;
  -moz-animation-delay:0.8s;
  -webkit-animation-delay:0.8s;
}
#load div:nth-child(6) {
  animation-delay:1s;
  -o-animation-delay:1s;
  -moz-animation-delay:1s;
  -webkit-animation-delay:1s;
}
#load div:nth-child(7) {
  animation-delay:1.2s;
  -o-animation-delay:1.2s;
  -moz-animation-delay:1.2s;
  -webkit-animation-delay:1.2s;
}
#load div:nth-child(8) {
	animation-delay:1.4s;
	-o-animation-delay:1.4s;
	-moz-animation-delay:1.4s;
	-webkit-animation-delay:1.4s;
  }
  #load div:nth-child(9) {
	animation-delay:1.6s;
	-o-animation-delay:1.6s;
	-moz-animation-delay:1.6s;
	-webkit-animation-delay:1.6s;
  }
  #load div:nth-child(10) {
	animation-delay:1.8s;
	-o-animation-delay:1.8s;
	-moz-animation-delay:1.8s;
	-webkit-animation-delay:1.8s;
  }
  #load div:nth-child(11) {
	animation-delay:2s;
	-o-animation-delay:2s;
	-moz-animation-delay:2s;
	-webkit-animation-delay:2s;
  }

@keyframes move {
  0% {
    left:0;
    opacity:0;
  }
	35% {
		left: 41%; 
		-moz-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%; 
		-moz-transform:rotate(0deg); 
		-webkit-transform:rotate(0deg); 
		-o-transform:rotate(0deg);
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%; 
		-moz-transform:rotate(-180deg); 
		-webkit-transform:rotate(-180deg); 
		-o-transform:rotate(-180deg); 
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-moz-keyframes move {
	0% {
		left:0; 
		opacity:0;
	}
	35% {
		left:41%; 
		-moz-transform:rotate(0deg); 
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%; 
		-moz-transform:rotate(0deg); 
		transform:rotate(0deg);
		opacity:1;
	}
	100% {
		left:100%; 
		-moz-transform:rotate(-180deg); 
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-webkit-keyframes move {
	0% {
		left:0; 
		opacity:0;
	}
	35% {
		left:41%; 
		-webkit-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	65% {
		left:59%; 
		-webkit-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%;
		-webkit-transform:rotate(-180deg); 
		transform:rotate(-180deg); 
		opacity:0;
	}
}

@-o-keyframes move {
	0% {
		left:0; 
		opacity:0;
	}
	35% {
		left:41%; 
		-o-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	65% {
		left:59%; 
		-o-transform:rotate(0deg); 
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%; 
		-o-transform:rotate(-180deg); 
		transform:rotate(-180deg); 
		opacity:0;
	}
}


/**end loading-product*/
#facebooklike {
    width:70px;
    padding: 5px;
    position: fixed;
    top: 45%;
    right: 0px;
    z-index: 9999999;
}
/**********chart-pie******/

  .box-piesite {
	position: relative;
    font-size: 22px;
    top: 40px;
  }
  .piesite {
	position: relative;
	width: 1em;
	height: 1em;
	font-size: 80px;
	cursor: default;
	margin: auto;
  }
  .design p{
	  text-align: center;
	  text-transform: uppercase;
	  font-size: 14px;
	  font-weight: bold;
  }
  .piesite .percent {
	position: absolute;
	top: -40px;
	left: .1em;
	width: 100%;
	font-size: 20px;
	text-align: center;
	z-index: 2;
  }
  
  .piesite > #slice {
	position: relative;
	width: 1em;
	height: 1em;
	clip: rect(0px, 1em, 1em, 0.5em);
  }
  .piesite > #slice.gt50 {
	clip: rect(auto, auto, auto, auto);
  }
  .piesite > #slice > .pie {
	position: absolute;
	border: .1em solid #444;
	width: 1em;
	height: 1em;
	clip: rect(0em, 0.5em, 1em, 0em);
	border-radius: 0.5em;
  }
  li.design .piesite > #slice > .pie {
	border-color: #21d2cc;
  }
  
  .piesite > #slice > .pie.fill {
	-webkit-transform: rotate(180deg) !important;
	transform: rotate(180deg) !important;
  }
  .piesite.fill > .percent {
	display: none;
  }
  .piesite:after {
	content: '';
	display: block;
	position: absolute;
	top: .1em;
	left: .1em;
	width: .8em;
	height: .8em;
	background: #fff;
	border-radius: 100%;
	z-index: 1;
  }
  .piesite:before {
	content: '';
	display: block;
	position: absolute;
	width: 1em;
	height: 1em;
	border-radius: .5em;
	opacity: .5;
	z-index: 0;
  }
  .piesite:before {
	background:#9b9b9b;
  }
  .box-piesite ul {
	padding: 0;
  }
  .box-piesite ul li {
	display: inline-block;
	width: 95px;
  }
  .chartBarsHorizontal .chartBars .bars {
	flex-direction: column;
  }
  @media screen and (min-width: 600px) {
	.bar:before {
	  font-size: 2em !important;
	}
	.chartBars3 .bar:before {
	  font-size: 1.5em !important;
	}
  }
  .tooltip > .tooltipContent {
	display: block;
	position: absolute;
	background: none repeat scroll 0 0 #222;
	color: #F0B015;
	font-family: 'Helvetica';
	font-size: 0.8em;
	font-weight: normal;
	line-height: 1.5em;
	padding: 16px 15px;
	min-width: 200px;
	max-width: 500px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -110%);
			transform: translate(-50%, -110%);
	margin-left: 0;
	opacity: 0;
	filter: alpha(opacity=0);
	text-align: center;
	z-index: 2;
	text-transform: none;
	transition: all 0.3s ease-in-out;
  }
  .tooltip:hover > .tooltipContent {
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 99;
	-webkit-transform: translate(-50%, -130%);
			transform: translate(-50%, -130%);
	transition: all 0.2s ease;
  }
  .tooltip .tooltipContent:after {
	border-color: #222 rgba(0, 0, 0, 0);
	border-style: solid;
	border-width: 15px 15px 0;
	bottom: -15px;
	content: "";
	display: block;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
			transform: translate(-50%, 0);
	position: absolute;
	width: 0;
  }
/**********end chart-pie******/
.text-black{
	color:#000 !important;
}
video.bgVideo { 
    position: absolute;
    bottom: 0%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    -ms-transform: translateX(-50%) translateY(0%);
    -moz-transform: translateX(-50%) translateY(0%);
    -webkit-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
}
video.grayscale-video{
	-webkit-filter: grayscale(100%);
   -moz-filter: grayscale(100%);
   filter: grayscale(100%) brightness(15%);

}
.fullscreen-bg {
    position: absolute;
	width: 100%;
	height: 100%;
    overflow: hidden;
    z-index: 1;
}
.fullscreen-bg-wrap{
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.fullscreen-bg-video {
	display: flex;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
	width: 100%;
	height: 100%
}
.fullscreen-bg-video video{
	width: 1920px;
	height: 1920px;
	min-width: 100%;
	min-height: 100%;
}

.left-navigation {
	position: fixed;
	top: 50%;
	left: 2vw;
	z-index: 9;
	transform: translate(0%, -50%);
}
.left-navigation ul{
	position: relative;
	top: -50%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.left-navigation .left-nav-text {
	display: none;
	transition: all 300ms ease-out;
}
.left-navigation li:hover .left-nav-text, .left-navigation li.active .left-nav-text{
	display: inline-block;
}
.left-navigation li a:active .left-nav-text{
	display: inline-block;
}

.left-navigation li {
	padding: 8px 10px 8px 0;
	min-width: 40px;
}
.left-navigation li a {
	font-size: 14px;
	color: #b3b3b3;
}
.left-navigation .left-nav-icon {
	position: relative;
	bottom: 3px;
	display: inline-block;
	width: 8px;
	height: 1px;
	background-color: white;
	transition: all 300ms ease-out;
	margin-right: 10px;
}

.left-navigation li:hover .left-nav-icon, .left-navigation li.active .left-nav-icon{
	background-color: #183d53;
	width: 12px;
	height: 1px;
}
.left-navigation .left-nav-icon::before, .left-navigation .left-nav-icon::after{
	transition: all 300ms ease-out;
	width: 0px;
	height: 1px;
	right: 1px;
	background: #183d53;
	position: absolute;
	content: '';
}
.left-navigation li:hover .left-nav-icon::before, 
.left-navigation li:hover .left-nav-icon::after,
.left-navigation li.active .left-nav-icon::before, 
.left-navigation li.active .left-nav-icon::after
{
	width: 4px;
}
.left-navigation li:hover .left-nav-icon::after,
.left-navigation li.active .left-nav-icon::after
{
	top: 2px;
	transform: rotate3d(0,0,1,-40deg);
}
.left-navigation li:hover .left-nav-icon::before,
.left-navigation li.active .left-nav-icon::before
{
	top: -2px;
	transform: rotate3d(0,0,1,40deg);
}


::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: transparent;
}

::-webkit-scrollbar
{
	width: 4px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb
{
	background-color: #999999;
}

.next-page {
	font-size: 14px;
	position: absolute;
	bottom: 1vh;
	left: 50%;
	z-index: 99;
}
.next-page a{
	display: inline-block;
	position: relative;
	left: -50%;
	text-transform: lowercase;
	color: #b3b3b3;
	font-weight: bold;
	text-decoration: none;
	transition: all ease-out 400ms;
	letter-spacing: 7px;
	font-size: 14px;
}
.next-page a:hover{
	color: #fff;
	text-decoration: none;
}

#first-page {
	width: 100%;
	height: 100%;
}
#first-page .next-page{
	bottom: 3vh;
}
#about-page {
	position:relative;
	width: 100%;
	height: auto !important;
	display: table;
	vertical-align: middle;
	background: #000000;
	overflow-x: hidden;
	overflow-y: auto;
}
#we-work-page {
	width: 100%;
	height: 100%;
	background: linear-gradient(  rgba(0, 0, 0, 0.9),  rgba(0, 0, 0, 0.9)  ),     /* bottom, image */
    url('../images/nlk_0056_pexels-photo-89485.png');
	background-size: cover;
	min-height: 768px;
}
#we-work .owl-dots{
	position: relative;
    bottom: 30px;
	margin:0;
}
#we-work-page .we-work-header-title {
	position: absolute;
	width: 100%;
	text-align: center;
	left: 50%;
	background: #fff;
	top: 0;
	z-index: 5;
}
#we-work-page .we-work-header-title h2 {
	left: -50%;
	position: relative;
	font-size: 45px;
	font-weight: bold;
	letter-spacing: 10px;
	margin: 0;
	
	color:#000;
	text-shadow:2px 0 #000;
}


#we-work-page .we-work-table {
	display: table;
	width: 100%;
	height: 85%;
	position: absolute;
	background: linear-gradient(  rgba(0, 0, 0, 0.0),  rgba(0, 0, 0, 0.0)  );
	z-index: 2;
}
#we-work-page .we-work-table  {
	display: table-row;
}
.text-black{
	color:#000;
}
.p-100{
	padding: 50px 0 100px 0;
}
.we-work-table  .we-work-cell {
	display: table-cell;
	height:85vh;
	border-right: 1px solid rgba(255, 255, 255, 0.22);
	width: 25%;
}
.we-work-table  .we-work-cell:last-child {
	
}
.we-work-cell .content { 
	position: relative; padding-top: 15%; left: 10%; width: 75%;
}
.we-work-cell .content .we-work-title {
}
.content .we-work-title .we-work-bottom-line { 
	border-bottom: 1px solid #fff;
	width: 0px;
	margin-top: 40px;
	height: 5px;
	transition: width 0.25s ease-out;
}
.we-work-cell:hover .content .we-work-title .we-work-bottom-line { 
	width: 50px;
}
.content .we-work-title h3 {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 7px;
	margin-top: 30px;
}
 .content .we-work-description {
	margin-top: 50px; line-height: 30px; font-size: 14px;
	opacity: 0;
	overflow: hidden;
	transition: all 0.25s ease-in;
}
.first-cell .content .we-work-description{
	opacity: 1;
}

.we-work-cell:hover .content .we-work-description {
	display: block;
	opacity: 1;
	margin-top: 40px;
}
 .we-work-cell .we-work-button {
    position: absolute;
    width: 45px;
    height: 45px;
	border: 1px solid #464646;
	bottom:10vh;
	left: 10%;
    transition: border 0.25s ease-out;
}
 .we-work-cell .we-work-button.second-button {
	left: 27.5%;
}

 .we-work-cell .we-work-button.third-button {
	left: 52.5%;
}
 .we-work-cell .we-work-button.fourth-button {
	left: 77.5%;
}
 .we-work-cell:hover .we-work-button {
	border-color: #fff;
}
 .we-work-cell .we-work-button:before,
 .we-work-cell .we-work-button:after{
        content: "";
        position: absolute;
        background-color: #464646;
        transition: transform 0.25s ease-out;
}

    /* Vertical line */
 .we-work-cell .we-work-button:before{
        left: 50%;
        width: 2px;
        height: 30%;
        margin-left: -1px;
		top: 50%;
		margin-top: -15%;
}

    /* horizontal line */
 .we-work-cell .we-work-button:after{
        top: 50%;
        left: 50%;
        width: 30%;
        height: 2px;
        margin-top: -1px;
		margin-left: -15%;
}
.we-work-cell:hover .we-work-button:before,
 .we-work-cell:hover .we-work-button:after
{
        background: #fff;
}
 .we-work-cell:hover .we-work-button:before{ transform: rotate(90deg); }
.we-work-cell:hover .we-work-button:after{ transform: rotate(180deg); }
#products-page {
	width: 100%;
	height: 100%;
	background: #000000;
	
}

#products-page .products-header-title {
	position: absolute;
	left: 10%;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: bold;
	top: 1vh;
	letter-spacing: 30px;
	z-index: 5;
}
#products-page .products-table {
	display: table;
	width: 100%;
	height: 100%;
	min-height: 768px;
	position: absolute;
}
#products-page .products-table .products-row {
	display: table-row;
}
.products-table .products-row .products-cell {
	display: table-cell;
	width: 50%;
}
.products-table .products-row .products-cell.first-cell {
	background: #1c1d1d;
}
.products-table .products-row .products-cell.second-cell {
	background: #242525;
}
#products-page .products-list {
	position: relative;
	top: 6%;
	height: 90%;
	left: 9vw;
	width: 85vw;
}
#products-page .slide-products{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#products-page .slide-products .product{
	display: none;
}
#products-page .products-list .products-list-category {
	width: 2vw;
	height: 15vw;
	position: absolute;
	top: 35vh;
	left: -60vw;
	z-index: 3;
	-ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}
.products-list .products-list-category .category-name {
	position: absolute;
	display: block;
	padding-left: 10px;
	-ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
	width: 230px;
	left: -100px;
	top: 100px;
	letter-spacing: 5px
}


#products-page .products-list .products-list-layer1 {
	position: absolute;
	left: -60vw;
	top: 30vh;
	z-index: 2;
	width: 15vw;
}
#products-page .products-list .products-list-layer2 {
	position: absolute;
	left: -60vw;
	top: 35vh;
	z-index: 3;
	width: 15vw;
}
#products-page .products-list .product-image {
	position: absolute;
	width: 35vw;
	min-height: 35vw;
	background: #fff;
	z-index: 4;
	top: 10vh;
	left: -60vw;
	overflow: hidden;
}
#products-page .products-list .product-image img{
	width: 100%;
	max-width: 100%;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	transition: all 300ms ease-out;
}
#products-page .products-list .product-image:hover img{
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}
#products-page .products-list .prev-slide {
	position: absolute;
	top: 10vh;
	left: 4vw;
	z-index: 10;
}
#products-page .products-list .next-slide {
	position: absolute;
	top: calc(10vh - 23px);
	margin-top: 35vw;
	left: 49vw;
	z-index: 10;
	display: inline-block;
}
#img-product img{
	width: 100%;
}
.product .products-description {
	position: absolute;
	width: 25vw;
	right: 10vw;
	top: 35%;
}
.product .products-description .product-title {
	position: relative;
	width: 60%;
	border-left: 4px solid #676767;
	padding-left: 10px;
	letter-spacing: 10px;
	text-transform: uppercase;
	font-size: 18px;
	left: 40vw;
}
.product .products-description .product-des {
	position: relative;
	color: #999999;
	margin-top: 30px;
	text-align: justify;
	left: 40vw;
}
.product .products-description .product-view-button {
	position: relative;
	color: #676767;
	display: inline-block;
	padding: 10px 50px;
	background: #1c1d1d;
	border-width: 0 1px;
	border-color: #676767;
	text-transform: uppercase;
	left: 40vw;
	margin-top: 20px;
}
#products-page .view-all-products-link{
	font-size: 16px;
	position: absolute;
	bottom: 5vh;
	right: 16vw;
	width: 25vw;
	z-index: 999;
}
#products-page .view-all-products-link a{
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	color: #b3b3b3;
	font-weight: bold;
	text-decoration: none;
	transition: all ease-out 400ms;
	letter-spacing: 7px;
	font-size: 14px;
}
#products-page .view-all-products-link a:hover{
	color: #fff;
	text-decoration: none;
}
#clients-page {
	width: 100%;
	background:#000;
	/*background: linear-gradient(  rgba(0, 0, 0, 0.8),  rgba(0, 0, 0, 0.8)  ),     /* bottom, image 
    url('../images/nlk_0135_Layer-3.png');*/
	background-size: cover;
}
#clients-page .next-page{
	bottoM: 5vh;
}
#clients-page .clients-header-title {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 20%;
	z-index: 5;}
#clients-page .clients-header-title h2 {
	
	position: relative;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: 30px;
	margin: 0;
	padding: 0;
}
#clients-page .slide-clients-wrap {
	width: 100%;
	text-align: center;
}
#clients-page .slide-clients-wrap .slide-clients {
	width: 60vw;
	height: auto;
	margin: 0 auto;
	margin-top: 5vh;
}
#clients-listing {
	padding-bottom:60px; 
}
#clients-listing .owl-prev {
	position: absolute;
	top: 50%;
	left: -5vw;
	background: none;
	color: #999999;
	opacity: 0.5;
	font-size: 50px;
	margin-top: -25px;
	transition: all 300ms ease-out;
}
#clients-listing .owl-next {
	position: absolute;
	top: 50%;
	right: -5vw;
	background: none;
	color: #999999;
	opacity: 0.5;
	font-size: 50px;
	margin-top: -25px;
	transition: all 300ms ease-out;
}
#clients-listing .owl-next:hover {
	opacity: 1;
}
#clients-listing .owl-prev:hover {
	opacity: 1;
}
#clients-listing .client-logo {
	height: 120px;
}
#clients-listing .client-logo img{
	opacity: 0.5;
    max-width: 100%;
	width: 100%;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    margin: 0 auto;
}
#clients-listing .client-logo img:last-child{
	bottom: 0px;
	position: absolute;
}
#clients-listing .client-logo img:hover{
	    opacity: 1;
}
#clients-listing .client-logo img:active{
	    opacity: 1;
}
#we-have-page {
	width: 100vw;
	height: auto !important;
	background: #fff;
}
#we-have-page .we-have-header-title {
	
	width: auto;
	text-align: center;
	
	z-index: 5;
}
#we-have-page .we-have-header-title h2 {
	position: relative;
	font-size: 60px;
	font-weight: bold;
	text-shadow:2px 0 #000;
	color:#000;
	letter-spacing: 30px;
	margin: 0;
	padding: 100px;
}
#we-have-page .we-have-content  {
	width: 100%;
	padding: 0 0 50px 0;
	letter-spacing: 7px;
	font-size: 18px;
	font-weight: bold;
}
#we-have-page .we-have-content .we-have-margin {
	margin-top: 10vh;
	clear: both();
}
.we-have-number {
	color:#000;
	font-size: 40px;
	font-weight: 900;
}
.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 5px 5px;
    background: #c5c1c17a;
}
#contact-page {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(  rgba(0, 0, 0, 0.8),  rgba(0, 0, 0, 0.8)  ),     /* bottom, image */
    url('../images/nlk_0137_contact.png');
	background-size: cover;
}
#contact-page .contact-header-title {
	position: absolute;
	width: 80vw;
	text-align: center;
	left: 50%;
	top: 20%;
	z-index: 5;}
#contact-page .contact-header-title h2 {
	left: -50%;
	position: relative;
	font-size: 60px;
	font-weight: bold;
	letter-spacing: 30px;
	margin: 0;
	padding: 0;
}
#main-body #contact-page .contact-content {
	position: absolute;
	top: 30%;
	text-align: center;
	width: 80%;
	left: 10%;
	font-size: 18px;
	line-height: 45px;
	z-index: 2;
}
.contact-content form .contact-select, .contact-content form .contact-input-text {
	background: none;
	font-family: 'Maven Pro', sans-serif;
	-webkit-appearance:none;
	color: #969696;
	border: 0;
	line-height:1.5;
	width: 180px;
	font-size: 18px;
}
.contact-content form{
	    color: #21d2cc;
}
.contact-content form .contact-select:focus, .contact-content form .contact-select:hover, .contact-content form .contact-input-text:focus, .contact-content form .contact-input-text:hover{
	outline:none;
	border-bottom: 1px solid #21d2cc;
	
}
.contact-content form .contact-select option{
	wdith: __;
}
.contact-input-text::-webkit-input-placeholder{
	color: #969696;
}
.contact-input-text::-moz-placeholder{
	color: #969696;
}
.contact-input-text:-ms-input-placeholder{
	color: #969696;
}
.contact-input-text:-moz-placeholder{
	color: #969696;
}
.contact-content form .contact-button {
	border: 1px solid #21d2cc;
    border-width: 0px 1px;
    background: #21d2cc;
    font-family: 'Maven Pro', sans-serif;
    color: #fff;
    border-radius: 20px;
    padding: 5px 60px;
    line-height: 30px;
    margin-top: 80px;
    text-transform: uppercase;
}
#title-product-details{
	padding-top: 3em;
}
.title-product{
	font-size: 45px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 10px;
	margin: 0;
	background: #fff;
	color: #000;
	text-shadow: 2px 0 #000;
}
.title-product-home{
	font-size: 45px;
	text-align: center;
	padding: 30px 0;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 10px;
	margin: 0;
	background: #fff;
	color: #000;
	text-shadow: 2px 0 #000;
}
.h-100 {
    height: 100%!important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
#first-background {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	background: none;
	background-size: cover;
	display: table;
	vertical-align: middle;
	text-align: center;
	min-height: 768px;
	overflow: hidden;
}
#first-background .home-left{
	display: block;
	position: absolute;
	width: 30%;
	left: 20%;
	height: 50vh;
	top: 40vh;
	text-align: left;
}
#first-background .home-left h1{
	letter-spacing: 50px;
	font-size: 72px;
	font-weight: 900;
	color: #fff;
}
#first-background .home-left p{
	font-size: 21px;
	letter-spacing: 5px;
	text-transform: uppercase;
	padding: 0 0 0 5px;
}
#first-background .home-left a{
	display: inline-block;
	padding: 22px 0 10px 5px;
	font-size: 14px;
	text-transform: uppercase;
	margin: 30px 0 0 0;
	border-top: 1px solid #fff;
	color: #fff;
	width: 50%;
	text-decoration: none;
}
#first-background .home-left a:hover{
	text-decoration: none;
}
#first-background .home-left a:active{
	text-decoration: none;
}

#first-background .home-left .left-nav-icon {
	position: relative;
	bottom: 3px;
	display: inline-block;
	width: 16px;
	height: 1px;
	background-color: #fff;
	margin-left: 10px;
}

#first-background .home-left .left-nav-icon::before, #first-background .home-left .left-nav-icon::after{
	width: 4px;
	height: 1px;
	right: 1px;
	background: #fff;
	position: absolute;
	content: '';
}
#first-background .home-left .left-nav-icon::after
{
	top: 2px;
	transform: rotate3d(0,0,1,-40deg);
}
#first-background .home-left .left-nav-icon::before
{
	top: -2px;
	transform: rotate3d(0,0,1,40deg);
}

#first-background .header-text-cover {
	display: block;
	width: 50vw;
	left:25vw;
	height: 80vh;
	top: 10vh;
	position: absolute;
}
#first-background .header-text {
	display: block;
	height: 100%;
}

#effect-logo {
	height: 100%;
	width: 100%;
	border: none;
	overflow: hidden;
}
.navigation {
	z-index: 999s;
	position:absolute;
}
.navT {
	z-index:999999;
	cursor: pointer;
	background: transparent;
	width: 65px;
	height: 65px;
	right: 0;
	top: 0;
	position: fixed;
}
.navT .icon {
	-webkit-transition: all 0.25s;
	position: absolute;
	width: 25px;
	height: 1px;
	right: 25px;
	top: 30px;
	background-color:#21d2cc;
}
.navT .icon:before, .navT .icon:after {
	-webkit-transition: all 0.25s;
	width: 25px;
	height: 1px;
	right: 0;
	background:#21d2cc;
	position: absolute;
	content: '';
}
.navT .icon:before {
	top: -8px;
}
.navT .icon:after {
	top: 8px;
}
.navT:hover {
	background: none;
}
.navT:hover .icon:before {
	top: -8px;
}
.navT:hover .icon:after {
	top: 8px;
}
.navT.active .icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	background-color: transparent;
	right: 25px;
}
.navT.active .icon:before, .navT.active .icon:after {
	top: 0;
}
.navT.active .icon:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navT.active .icon:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.logo {
	top: 2vh;
	left: 2vw;
	z-index: 999999;
}
.menu-news{
	padding: 10vh 0;
	width:100%;
	text-align:center;
}
.menu-news li{
	display:contents;
}
.menu-news li a{
	font-size:50px;
	color:#fff;
	text-shadow:2px 0 #fff;
	text-transform:uppercase;
	padding:1.2rem 0;
	line-height:1;
	font-weight:bold;
	-webkit-transition: all 0.25s;
}
.menu-news li a:hover{
	text-shadow:2px 0 #21d2cc;
	text-decoration:none;
	color:#21d2cc;
}
#menu {
	z-index: 111;
	-webkit-transition: all ease-out 0.5s;
	transition: all ease-out 0.5s;
	font-size: 18px;
	font-weight: 100;
	width: 0;
	right:-100vw;
	height: 65px;
	border-bottom: 1px solid transparent;
	overflow: hidden;
	position: fixed;
	color: #fff;
}
#menu.open {
	height: 100vh;
	width: 100vw;
    left: 0;
	right:0;
    top: 0;
	background: #000000bf;
}
#menu a {
	background: none;
}
#menu a:hover {
	background: none;
}
.social-column ul{display:-webkit-box;}
.social-column li{display:inline-block;padding:0 10px;position: relative;bottom: 3vh;}
.social-column{z-index:999;position:absolute;right:10px;bottom:0%;}
.social-column i, .social-column-footer i{color:#969696;-webkit-transition: all ease-out 0.5s;transition: all ease-out 0.5s;}
.social-column a:hover,.social-column a:focus{background:transparent !important;}
.social-column i:hover, .social-column-footer i:hover{color:#ffffff;}
.copyright {
	position: absolute;
	bottom: 3vh;
	left: 2vw;
	z-index: 1;
	padding: 0 10px;
	font-size: 14px;
	text-transform: uppercase;
}

.get-in-touch {
	position: absolute;
	bottom: 3vh;
	right: 2%;
	font-size: 14px;
	text-transform: uppercase;
	z-index: 1;
}
.get-in-touch a{
	color: #ffffff;
	text-decoration: none;
	transition: all ease-out 400ms;
	opacity: 0.7;
}
.get-in-touch a:hover{
	color: #ffffff;
	text-decoration: underline;
	opacity: 1;
}
.get-in-touch img{
	margin-left: 30px;
	vertical-align: middle;
}
.about-wrap{
	display: -webkit-box;
	padding:50px 0;
	position:relative;
	vertical-align: middle;
}
.bg-white{
	background:#fff;
	color:#000;
}
.about-left{
	text-align: right;
}
.about-layer-1{
	position: relative;
	z-index: 2;
}
.about-layer-2{
	position: relative;
	z-index: 3;
	top: 1;
	right: 220px;
}
.about-layer-3{
	position: relative;
	z-index: 4;
}
.about-header{
	text-shadow:2px 0;
	-webkit-text-fill-color: #21d2cc;
    -webkit-text-stroke-width: .2rem;
    -webkit-text-stroke-color: #21d2cc;
	font-size: 70px;
	color: #21d2cc;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 20px;
}
.about-description{
	width: 400px;
	text-align: justify;
	line-height: 28px;
}
.w-100px{
	text-align:center;
	width:100px;
	float:left;
}
.w-100 p{
	color:#000;
}
.size-14{
	font-size: 14px;
	font-weight: bold;
}
.pt-3{
	padding-top:3rem;
}
.about-button{
	display: inline-block;
	margin-top: 40px;
	width: 250px;
	height: 40px;
	background: #252525;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	color: #fff;
	font-size: 16px;
	padding-top: 8px;
	text-align: center;
}
.about-button:hover{
	color: #fff;
	text-decoration: none;
}
.we-make-header-title{
	z-index: 9;
}
.we-make-header-title a:hover{
	color: rgba(0, 0, 0, 0.3);
	text-decoration: none;
}
.we-make-header-title h2{
	position: relative;
	text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 0 #000;
	color: #000;
	z-index: 9;
    letter-spacing:15px;
    margin: 0;
    padding: 70px;
}


/*prodcut-detail**/

#product-body{
	background:#fff;
	color:#000;
}
#page-project{
	height:auto !important;
}
.jarallax {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.banner{
	width:100vw;
	height:100vh;
	z-index:99;
}
.the{
	text-align: right;
}
.the span{
	position:relative;
	top: 35px;
	color:#000;
	font-size:20px;
}
.w-name h2{
	
    font-size: 60px;
    font-weight: bold;
    color: #000;
}
.wh-300{
	width:285px;
	height:285px;
}
.wh-150{
	width:142.5px;
	height:142.5px;
}
.bg-dark{
	background:#000;
}
.bg-gray{
	background:#f2f2f2;
}
.text-white{
	color:#fff !important;
}
.m-0{
	padding:0;
	margin:0;
	
}
.txt-middle h5, .txt-middle h3 {
	color:#fff ;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}
.txt-middle h5{
	font-size: 16px;
}
.position-relative{
	position:relative;
}
.name-product{
	position: absolute;
    left: 142.5px;
    bottom: 100%;

}
.explore{
	position:relative;
	top:142.5px;
}

.list-img{
	padding: 25px 0;
}
/*end prodcut-detail**/



/*prodcut**/
#project-body{
	background:#000;
	color:#fff;
}
.content-wrapper-home{
	width: 100vw;
	height: 80vh;
}
.content-wrapper{
	width: 100vw;
	height: 100vh;
}
.wrap-project-home{
	position: absolute; 
	left: 0;
	width: 80vh;
	height: calc(100vw);
	overflow-x: hidden;
	overflow-y: scroll;
	transform: rotate(-90deg);
	transform-origin: center calc(40vh);	
}
.wrap-project{
	position: absolute; 
	left: 0;
	width: 100vh;
	height: calc(100vw);
	overflow-x: hidden;
	overflow-y: scroll;
	transform: rotate(-90deg);
	transform-origin: center calc(50vh);	
}
.col-380{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: 320px;
	height: 320px;
	transform: rotate(90deg);
	margin:auto;
	text-align: center;
}
#project-body img{
	width:100%;
}
.img-page{
  position: relative;
  overflow: hidden;
}
.img-page img {
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.img-page:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project-title {
    cursor: pointer;
    position: absolute;
    bottom: -60px;
    left: 25px;
}
.des p{
	margin: 0;
}
 .project-title p {
    font-size: 38px;
	margin:0;
	color: #cabfc2;
	text-align: left;
    position: relative;
    top: 50%;
	webkit-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
    transform: rotate(270deg) translate(0%, 0%);
    transform-origin: 0% 0%;
    -ms-transform: rotate(270deg) translate(0%, 0%);
    -ms-transform-origin: 0% 0%;
    -webkit-transform: rotate(270deg) translate(0%, 0%);
    -webkit-transform-origin: 0% 0%;
    display: inline-block;
}
.project-title p .category {
    font-size: 12px;
    color: #21d2cc;
    text-transform: uppercase;
    display: block;
}
.h-100vh{
	height:100vh;
}
.h-50vh{
	height:50vh;
}
.h-40vh{
	height:40vh;
}
.products-big-number {
	position: absolute;
    right:  25px;
	webkit-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
    font-size: 200px;
    font-family: "Niagara solid", san-serif;
    top: -40px;
    color: #999999;
    opacity: 0.1;
}
.product-list:hover *{
	color:#fff;
	opacity:1;
}
.bg-base-hover{
	height:0;
	transition: height 0.3s;
    -moz-transition: height 0.3s;
    -webkit-transition: height 0.3s;
    -o-transition: height 0.3s;
}
.product-list:hover .bg-base-hover, .bg-base-hover:hover{
	height:50vh;
}
/*end product**/
@media (max-width: 566px) { 
	.left-navigation{
		display: none;
	}
	.d-none-xs{
		display: none;
	}
	.box-piesite {
		text-align: center;
	}
	.next-page{
		display:none;
	}
	.the{
		text-align: left;
		width: 20vw;
		float: left;
	}
	.t-75{
		position: relative;
		top: 20vw;
	}
	.w-name{
		width: 80vw;
	}
	.the span{
		top: 0;
	}
	.title-product h2{
		font-size: 35px;
	}
	.cat-product{
		display: none;
	}
	.design p{
		font-size:11px;
	}
	.box-piesite ul li{
		margin: 0;
	}
	.des p{
		padding: 20px;
	}
	.get-in-touch{
		display: none;
	}
	.wh-150{
		width: 20vw;
		height: 20vw;
	}
	.wh-300{
		width: 40vw;
		height: 40vw;
	}
	.explore{
		top: 20vw;
	}
	.next-page a{
		font-size: 10px;
	}
	.project-title p {
		font-size: 21px;
	}
	.we-work-cell .content .we-work-description{
		opacity:1;
		padding-left:10px;
	}
	.we-work-cell .content .we-work-title .we-work-bottom-line { 
		width: 50px;
		margin-left:10px;
	}
	#first-page{
		width: 100vw;
		height: 100vh;
	}
	#first-page .logo{
		left: 0;
	}
	#first-page .logo img{
		width: 80px;
		height: auto;
		left: 0;
	}
	#first-background{
		width: 100vw;
		height: 100vh;
		max-height: 100vh;
		min-height: 100vh;
		background-image: none;
	}

	#first-background .home-left{
		top: 10%;
		left: 5%;
		width: 90%;
	}
	#first-background .home-left h1{
		font-size: 50px;
		letter-spacing: 30px;
	}
	#first-background .home-left p{
		letter-spacing: normal;
	}
	#first-background .header-text-cover{
		
		width: 100vw;
		right: 0;
		left:0;
		top: 20vh;
		text-align: center;
	}
	section{
		min-height: none;
		position: relative;
	
	}
	#effect-logo{
		width: 100vw;
	}
	.about-header{
		text-align: left;
		margin-top:20px;
		font-size: 40px;
		letter-spacing: 20px;
	}
	.piesite .percent{
		top:30%;
	}
	.about-left{
		text-align: center;
		height: calc(270px + 138px);
	}
	.about-layer-1{
		right: auto;
		left: 0;
		
	}
	.about-layer-2{
		right: auto;
		left: 0;
		
	}
	.about-layer-3{
		right: auto;
		left: 0;
		
	}
	.about-description{
		width: auto;
	}
	.about-button{
		margin-bottom: 75px;
		text-align: center;
		position: relative;
		left: calc(50% - 125px);
	}
	.p-100 {
		padding: 20px 0 20px 0;
	}
	#we-work-page{
		height: auto;
		min-height: auto;
	}
	#we-work-page .we-work-header-title{
		position: static;
		left:0;
		text-align: center;
		
	}
	#we-work-page .we-work-table {
		display: block;
	}
	.we-make-header-title h2{
		padding: 20px;
		padding-top: 50px;
		letter-spacing:10px;
	}
	.about-wrap {
		display: block;
	}
	#we-work-page .we-work-header-title h2{
		left: 0;
		font-size: 40px;
		letter-spacing: 20px;
		z-index: 99;
	}
	#we-work-page .we-work-table{
		top: 0;
		min-height: 100px;
		height: 100%;
		position: relative;
		padding-top: 0;
	}
	#we-work-page .we-work-cell *{
		/* display: none; */
	}
	.we-work-table  .we-work-cell {
		display: block;
		border-right: 0px solid rgba(70, 70, 70, 0.4);
    	width: 90%;
	}
	 .we-work-cell .content {
		position: relative;
		padding-top:0;
		left: 10%;
		width:100%; 
	}
	 .we-work-cell .we-work-button{
		display: none;
	}
	#we-work-carousel{
		padding-top: 50px;
		padding-bottom: 90px;
		width: 90vw;
		margin: 0 auto;
		position: relative;
		top: 0;
	}
	.we-work-title img{
		display: inline-block !important;
		vertical-align: middle;
		width: auto !important;
	}
	.we-work-title h3{
		display: inline-block;
		margin-left: 10px;
		padding: 0;
		position: relative;
		top: 5px;
	}
	#we-work-carousel .we-work-description{
		margin-top: 50px;
	}
	#we-work-carousel .owl-next, #we-work-carousel .owl-prev{
		background: none;
	}
	.w-50-sm{
		width: 50vw;
	}
	.products-big-number{
		font-size: 100px;
		left: 60%;
		top: -20px;
	}
	.col-380 {
		width: 250px;
		height: 250px;
	}
	.product-list:hover .bg-base-hover, .bg-base-hover:hover{
		height: 100%;
	}
	.project-title {
		cursor: pointer;
		position: absolute;
		bottom: 25px;
		height:0;
		right: 20%;
	}
	#products-page{
		width: 100vw;
		min-height: calc(75vw + 12vh + 600px);
		height: auto;
	}
	
	#products-page .products-table {
		min-height: calc(75vw + 12vh + 600px);
	}
	#products-page .products-header-title{
		left: 3vw;
		font-size: 25px;
		letter-spacing: 5px;
		top: 3vh
	}
	#products-page .slide-products{
		position: static;
		height: auto;
	}
	#products-page .products-list{
		top: 6vh;
	}
	#products-page .products-list .prev-slide{
		top: calc(3vh + 30px);
		left: 0vw;
	}
	#products-page .products-list .next-slide{
		right: 0;
		left: auto;
		top: calc(75vw + 3vh + 40px);
		margin-top: 0;
	}
	#products-page .products-list .product-image{
		width: 75vw;
		top: calc(3vh + 30px);
	}
	#products-page .products-list .products-list-category{
		font-size: 6px;
	}
	#products-page .products-list .products-big-number {
		font-size: 15vh;
		top: -10vh;
	}
	.product .products-description{
		width: 80vw;
		left: 0;
		right: auto;
		position: static;
		margin-top: calc(75vw + 12vh + 43px);
	}
	.product .products-description .product-des {
		min-height: 40vh;
		max-height: 40vh;
		overflow-y: auto;
	}
	#products-page .products-list .products-list-layer1{
		width: 32vw;
		top: 22vh;
	}
	#products-page .products-list .products-list-layer2{
		width: 32vw;
		top: 26vh;		
	}
	#products-page .view-all-products-link{
		bottom: 6vh;
		left: 0;
		width: 100vw;
		text-align: center;
	}
	#clients-page{
		width: 100vw;
	}
	#clients-page .clients-header-title{
		position: relative;
		top: 10vh;
		text-align: center;
		width: 100vw;
		left: 0;
	}
	#clients-page .clients-header-title h2{
		font-size: 30px;
		letter-spacing: 20px;
		text-align: center;
		position: static;
		left: 0;
	}
	#clients-page .slide-clients-wrap{
		position: static;
	}
	#clients-page .slide-clients-wrap .slide-clients{
		width: 70vw;
		margin-top: 0vh;
		padding-top: 5vh;
	}
	
	#clients-listing .owl-prev {
		left: -10vw;
	}
	
	#clients-listing .owl-next {
		right: -10vw;
	}
	#clients-listing .client-logo img{
		max-width: 80%;
	}
	#we-have-page{
		width: 100vw;
		min-height: calc(100vh);
		height: auto;
		position: relative;
	}
	#we-have-page .we-have-header-title{
		top: 10vh
		
	}
	.m-0-sm{
		margin: 0;
	}
	.w-100px{
		width: 110px;
	}
	#we-have-page .we-have-header-title h2{
		font-size: 30px;
		letter-spacing: 10px;
		padding: 30px;
	}
	#we-have-page .we-have-content{
		position: relative;
		padding-bottom: 10vh;
	}
	#we-have-page .we-have-content .col-xs-6{
		margin-bottom: 30px;
	}
	#we-have-page .we-have-content img{
		width: 30px;
		height: auto;
	}
	#contact-page{
		min-height: calc(30vh + 480px);
		height: auto;
	}
	#contact-page .contact-header-title{
		top: 12vh;
		position: relative;
		left: 0;
		width: 100vw;
		text-align: center;
	}
	#contact-page .contact-header-title h2{
		font-size: 30px;
		letter-spacing: 10px;
		position: static;
		left: 0;
	}
	#main-body #contact-page .contact-content{
		position: relative;
		top: 5vh;
		width: 90%;
		left: 5%;
	}
	#main-body{
		overflow-x: hidden;
		overflow-y: scroll;
		
	}
	.w-50-sm{
		width:50%;
	}
	#menu {
		height: 100vh;
		right: -60vw;
		top: 0;
		width: 50vw;
		background: #000;
		padding-top: 0px;
		text-align: center
	}
	.menu-news li a{
		font-size: 30px;
		padding: 10px;
		text-shadow: 0 0 #fff;
	}
	#menu.open{
		right: 0;
		width: 100vw;
		background: #000;
		height: 100vh;
	}
	#main-body #contact-page .contact-content{
		top:25%;
	}
	
	.logo-details {
		width: 30px;
	}
}
@media (min-width: 567px) and (max-width: 767px) {
	.left-navigation{
		display: none;
	}
	.d-none-xs{
		display: none;
	}
	.box-piesite {
		text-align: center;
	}
	.the{
		text-align: left;
		width: 20vw;
		float: left;
	}
	.t-75{
		position: relative;
		
	}
	.w-name{
		width: 80vw;
	}
	.the span{
		top: 0;
	}
	.title-product h2{
		font-size: 35px;
	}
	.cat-product{
		display: none;
	}
	.box-piesite ul li{
		margin: 0;
	}
	.des p{
		padding: 20px;
	}
	.get-in-touch{
		display: none;
	}
	.wh-150{
		width: 75px;
		height: 75px;
	}
	.wh-300{
		width: 150px;
		height: 150px;
	}
	.explore{
		top: 75px;
	}
	
	.next-page a{
		font-size: 10px;
	}
	#first-page{
		width: 100vw;
		height: 100vh;
	}
	#first-page .logo{
		left: 0;
	}
	#first-page .logo img{
		width: 80px;
		height: auto;
		left: 0;
	}
	#first-background{
		width: 100vw;
		height: 100vh;
		max-height: 100vh;
		min-height: 100vh;
		background-image: none;
	}

	#first-background .home-left{
		top: 10%;
		left: 5%;
		width: 90%;
	}
	#first-background .home-left h1{
		font-size: 50px;
		letter-spacing: 30px;
	}
	#first-background .home-left p{
		letter-spacing: normal;
	}
	#first-background .header-text-cover{
		
		width: 100vw;
		right: 0;
		left:0;
		top: 0vh;
		text-align: center;
	}
	section{
		min-height: none;
		position: relative;
	
	}
	#effect-logo{
		width: 100vw;
	}
	.about-header{
		text-align: center;
		margin-top: 60px;
		font-size: 40px;
		letter-spacing: 20px;
	}
	.about-left{
		text-align: center;
		height: calc(270px + 138px);
	}
	.about-layer-1{
		right: auto;
		left: 0;
		
	}
	.about-layer-2{
		right: auto;
		left: 0;
		
	}
	.about-layer-3{
		right: auto;
		left: 0;
		
	}
	.about-description{
		width: auto;
		padding: 10px;
	}
	.about-button{
		margin-bottom: 75px;
		text-align: center;
		position: relative;
		left: calc(50% - 125px);
	}
	.p-100 {
		padding: 20px 0 20px 0;
	}
	#we-work-page{
		height: auto;
		min-height: auto;
	}
	#we-work-page .we-work-header-title{
		position: static;
		left:0;
		text-align: center;
		
	}
	
	.we-make-header-title h2{
		padding: 20px;
	}
	.about-wrap {
		display: block;
	}
	#we-work-page .we-work-header-title h2{
		left: 0;
		font-size: 40px;
		letter-spacing: 20px;
		z-index: 99;
	}
	#we-work-page .we-work-table{
		top: 0;
		min-height: 100px;
		height: 100%;
		position: relative;
		padding-top: 0;
	}
	#we-work-page .we-work-cell *{
		/* display: none; */
	}
	.we-work-table  .we-work-cell {
		display: block;
		border-right: 0px solid rgba(70, 70, 70, 0.4);
    	width: 90%;
	}
	 .we-work-cell .content {
		position: relative;
		padding-top:0;
		left: 10%;
		width:100%; 
	}
	 .we-work-cell .we-work-button{
		display: none;
	}
	#we-work-carousel{
		padding-top: 50px;
		padding-bottom: 90px;
		width: 90vw;
		margin: 0 auto;
		position: relative;
		top: 0;
	}
	.we-work-title img{
		display: inline-block !important;
		vertical-align: middle;
		width: auto !important;
	}
	.we-work-title h3{
		display: inline-block;
		margin-left: 20px;
		padding: 0;
		position: relative;
		top: 5px;
	}
	#we-work-carousel .we-work-description{
		margin-top: 50px;
	}
	#we-work-carousel .owl-next, #we-work-carousel .owl-prev{
		background: none;
	}
	.w-50-sm{
		width: 50vw;
	}
	.products-big-number{
		font-size: 100px;
		left: 60%;
		top: -20px;
	}
	.col-380 {
		width: 250px;
		height: 250px;
	}
	.product-list:hover .bg-base-hover, .bg-base-hover:hover{
		height: 100%;
	}
	.project-title {
		cursor: pointer;
		position: absolute;
		bottom: 25px;
	}
	.project-title p{
		font-size: 25px;
		transform: rotate(0deg) translate(0%, 0%);
    transform-origin: 0% 0%;
    -ms-transform: rotate(0deg) translate(0%, 0%);
    -ms-transform-origin: 0% 0%;
    -webkit-transform: rotate(0deg) translate(0%, 0%);
    -webkit-transform-origin: 0% 0%;
	}
	#products-page{
		width: 100vw;
		min-height: calc(75vw + 12vh + 600px);
		height: auto;
	}
	#products-page .products-table {
		min-height: calc(75vw + 12vh + 600px);
	}
	#products-page .products-header-title{
		left: 3vw;
		font-size: 25px;
		letter-spacing: 5px;
		top: 3vh
	}
	#products-page .slide-products{
		position: static;
		height: auto;
	}
	#products-page .products-list{
		top: 6vh;
	}
	#products-page .products-list .prev-slide{
		top: calc(3vh + 30px);
		left: 0vw;
	}
	#products-page .products-list .next-slide{
		right: 0;
		left: auto;
		top: calc(75vw + 3vh + 40px);
		margin-top: 0;
	}
	#products-page .products-list .product-image{
		width: 75vw;
		top: calc(3vh + 30px);
	}
	#products-page .products-list .products-list-category{
		font-size: 6px;
	}
	#products-page .products-list .products-big-number {
		font-size: 15vh;
		top: -10vh;
	}
	.product .products-description{
		width: 80vw;
		left: 0;
		right: auto;
		position: static;
		margin-top: calc(75vw + 12vh + 43px);
	}
	.product .products-description .product-des {
		min-height: 40vh;
		max-height: 40vh;
		overflow-y: auto;
	}
	#products-page .products-list .products-list-layer1{
		width: 32vw;
		top: 22vh;
	}
	#products-page .products-list .products-list-layer2{
		width: 32vw;
		top: 26vh;		
	}
	#products-page .view-all-products-link{
		bottom: 6vh;
		left: 0;
		width: 100vw;
		text-align: center;
	}
	#clients-page{
		width: 100vw;
		height: calc(20vh + 400px);
	}
	#clients-page .clients-header-title{
		position: relative;
		top: 10vh;
		text-align: center;
		width: 100vw;
		left: 0;
	}
	#clients-page .clients-header-title h2{
		font-size: 30px;
		letter-spacing: 20px;
		text-align: center;
		position: static;
		left: 0;
	}
	#clients-page .slide-clients-wrap{
		position: static;
	}
	#clients-page .slide-clients-wrap .slide-clients{
		width: 70vw;
		margin-top: 0vh;
		padding-top: 15vh;
	}
	
	#clients-listing .owl-prev {
		left: -10vw;
	}
	
	#clients-listing .owl-next {
		right: -10vw;
	}
	#clients-listing .client-logo img{
		max-width: 80%;
	}
	#we-have-page{
		width: 100vw;
		min-height: calc(100vh);
		height: auto;
		position: relative;
	}
	#we-have-page .we-have-header-title{
		top: 10vh
		
	}
	.m-0-sm{
		margin: 0;
	}
	.w-100px{
		width: 110px;
	}
	#we-have-page .we-have-header-title h2{
		font-size: 30px;
		letter-spacing: 10px;
		padding: 30px;
	}
	#we-have-page .we-have-content{
		position: relative;
		padding-bottom: 10vh;
	}
	#we-have-page .we-have-content .col-xs-6{
		margin-bottom: 30px;
	}
	#we-have-page .we-have-content img{
		width: 30px;
		height: auto;
	}
	#contact-page{
		min-height: calc(30vh + 480px);
		height: auto;
	}
	#contact-page .contact-header-title{
		top: 12vh;
		position: relative;
		left: 0;
		width: 100vw;
		text-align: center;
	}
	#contact-page .contact-header-title h2{
		font-size: 30px;
		letter-spacing: 10px;
		position: static;
		left: 0;
	}
	#main-body #contact-page .contact-content{
		position: relative;
		top: 20vh;
		width: 90%;
		left: 5%;
	}
	#main-body{
		overflow-x: hidden;
		overflow-y: scroll;
		
	}
	
	#menu {
		height: 100vh;
		right: -60vw;
		top: 0;
		width: 50vw;
		background: #000;
		padding-top: 0px;
		text-align: center
	}
	.menu-news li a{
		font-size: 30px;
		padding: 10px;
		text-shadow: 0 0 #fff;
	}
	#menu.open{
		right: 0;
		width: 100vw;
		background: #000;
		height: 100vh;
	}
	.logo-details{
		width:30px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	section {
		position: relative;
	}
	.left-navigation{
		display: none;
	}
	.box-piesite {
		text-align: center;
	}
	.get-in-touch{
		display: none;
	}
	.t-75{
		top: 142.5px;
		position: relative;
	}
	.cat-product{
		display: none;
	}
	#first-page{
		width: 100vw;
		height: 100vh;
	}
	#first-background{
		width: 100vw;
		height: 100vh;
		max-height: 100vh;
		min-height: auto;
	}
	#first-background .home-left{
		top: 10%;
		left: 20%;
		width: 50%;
	}
	#first-background .home-left h1{
		font-size: 50px;
		letter-spacing: 30px;
	}
	#first-background .home-left p{
		letter-spacing: normal;
	}
	#first-background .header-text-cover{
		width: 90vw;
		height: 50vh;
		text-align: center;
		top: 20vh;
		left: 5vw;
	}
	#effect-logo{
		max-width: 98vw;
		height: 50vh;
		min-height: auto;
		margin: 0 auto;
	}
	.about-header{
		text-align: center;
		margin-top: 10vh;
		font-size: 60px;
		letter-spacing: 20px;
	}
	.about-left{
		text-align: center;
		height: calc(270px + 138px);
	}
	.about-layer-1{
		left:0;
	}
	.about-layer-2{
		right: auto;
		left: calc(50% - 135px - 30px);
		width: 270px;
		height: 270px;
	}
	.about-layer-3{
		left: 0;
		font-size:50px;
		margin-top:50px;
	}
	.about-description{
		width: auto;
		left:0;
		padding:0 30px;
	}
	.w-100{
		width:150px;
	}
	.p-100{
		padding:0;
	}
	.h-20vh {
		height: 20vh;
	}
	.m-0-sm{
		margin: 0;
	}
	.h-100vh {
		height: auto;
	}
	.products-big-number{
		font-size: 130px; 
		left: 70%;
		top: 0;
	}
	.project-title {
		cursor: pointer;
		position: absolute;
		bottom: 30px;
    	right: 40%;
	}
	.project-title p{
		font-size: 30px;
	}
	.about-button{
		margin-bottom: 60px;
		text-align: center;
		position: relative;
		left: calc(50% - 125px);
	}
	#we-work-page{
		height: auto;
		min-height: auto;
	}
	#we-work-page .we-work-header-title{
		position: static;
		padding-top:30px;
		left:0;
		text-align: center;
		
	}
	#we-work-page .we-work-header-title h2{
		left: 0;
		font-size: 40px;
		letter-spacing: 20px;
		z-index: 99;
	}
	#we-work-page .we-work-table{
		top: 0;
		position:relative;
		padding-top:20px;
	}
	#we-work-page .we-work-cell .content{
		width:100%;
		left:0;
		padding:5px;
	}
	#we-work-carousel{
		padding-top: 50px;
		padding-bottom: 90px;
		width: 90vw;
		margin: 0 auto;
		position: relative;
		top: 0;
	}
	.we-work-title img{
		display: inline-block !important;
		vertical-align: middle;
		width: auto !important;
	}
	.we-work-title h3{
		display: inline-block;
		margin-left: 20px;
		padding: 0;
		position: relative;
		top: 5px;
	}
	#we-work-carousel .we-work-description{
		margin-top: 50px;
	}
	#we-work-carousel .owl-next, #we-work-carousel .owl-prev{
		background: none;
	}
	#products-page{
		width: 100vw;
		min-height: calc(75vw + 12vh + 400px);
		height: auto;
	}
	#products-page .products-table {
		min-height: calc(75vw + 12vh + 400px);
	}
	#products-page .products-header-title{
		left: 3vw;
		font-size: 25px;
		letter-spacing: 5px;
		top: 3vh
	}
	#products-page .slide-products{
		position: static;
		height: auto;
	}
	#products-page .products-list{
		top: 6vh;
    position: absolute;
    right: 70px;
	}
	#products-page .products-list .prev-slide{
		top: calc(3vh + 30px);
		left: 0vw;
	}
	#products-page .products-list .next-slide{
		right: 0;
		left: auto;
		top: calc(75vw + 3vh + 73px);
		margin-top: 0;
	}
	#products-page .products-list .product-image{
		width: 75vw;
		top: calc(3vh + 30px);
	}
	#products-page .products-list .products-list-category{
		font-size: 6px;
	}
	#products-page .products-list .products-big-number {
		font-size: 15vh;
		top: -10vh;
	}
	.product .products-description{
		width: 80vw;
		left: 0;
		right: auto;
		position: static;
		margin-top: calc(75vw + 12vh + 43px);
	}
	#products-page .products-list .products-list-layer1{
		width: 32vw;
		top: 22vh;
	}
	#products-page .products-list .products-list-layer2{
		width: 32vw;
		top: 26vh;		
	}
	#products-page .view-all-products-link{
		width: 50vw;
		text-align: center;
		left: 25vw;
	}
	#we-have-page{
		width: 100vw;
		height: auto;
		position: relative;
	}
	#we-have-page .we-have-header-title{
		top: 10vh
		
	}
	#we-have-page .we-have-header-title h2{
		font-size: 30px;
		letter-spacing: 10px;
		padding: 30px;
	}
	#we-have-page .we-have-content{
		position: relative;
	}
	#contact-page{
		min-height: calc(30vh + 480px);
		height: auto;
	}
	#contact-page .contact-header-title{
		top: 12vh;
		position: relative;
		left: 0;
		width: 100vw;
		text-align: center;
	}
	#contact-page .contact-header-title h2{
		font-size: 30px;
		letter-spacing: 10px;
		position: static;
		left: 0;
	}
	#main-body #contact-page .contact-content{
		position: relative;
		top: 20vh;
	}
	#main-body{
		overflow-x: hidden;
		overflow-y: scroll;
	}
	.col-380 {
		width: 300px;
		height: 300px;
	}
	.logo-details{
		width:30px;
	}
	#clients-listing .client-logo{;
		height:180px;
	}

}
@media (min-width: 992px) and (max-width: 1200px) {
	section {
		position: relative;
	}
	.box-piesite {
		text-align: center;
	}
	#we-work-page .we-work-header-title {
		top: 0%;
		width: 100%;
		left: 0;
	}
	.d-none-md{
		display: none;
	}
	#we-work-page .we-work-header-title h2{
		font-size: 35px;
		left: auto;
	}
	.product .products-description .product-des{
		height: 25vh;
		overflow: hidden;
	}
	.products-big-number{
		left: 60%;
		font-size: 135px;
	}
	.h-35-sm {
		height: 35vh;
	}
	.h-auto {
		height: auto;
	}
	.project-title {
		right: 30%;
	}
	.about-layer-1,.about-layer-3{
		left: 10vw;
	}
	#products-page .products-list .next-slide{
		left: 47vw;
	}
	#products-page .view-all-products-link{
		width: 50vw;
		text-align: center;
		left: 25vw;
	}
	#first-background .home-left{
		top: 30%;
		left: 15%;
		width: 35%;
	}
	 .we-work-cell .content{
		padding: 0;
	}
	#first-background .home-left h1{
		font-size: 50px;
		letter-spacing: 30px;
	}
	#first-background .home-left p{
		letter-spacing: normal;
	}
	#first-background .header-text-cover{
		width: 45vw;
		height: 35vw;
		text-align: center;
		top: 20%;
	}
	.col-380{
		width: 300px;
		height: 300px;
	}
	.wh-150{
		width: 110px;
		height: 110px;
	}
	.wh-300{
		width: 220px;
		height: 220px;
	}
	.explore{
		top: 70px;
	}
	.cat-product{
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 30%;
		-ms-flex: 0 0 30%;
		flex: 0 0 30%;
		max-width: 30%;
	}
	.des{
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 70%;
		-ms-flex: 0 0 70%;
		flex: 0 0 70%;
		max-width: 70%;
	}
	.logo-details{
		width:30px;
	}
	#clients-listing .client-logo{
		padding-top:60px;
		height:200px;
	}
}
@media (min-width: 1200px) {  
	section {
		position: relative;
	}
	.piesite > #slice{
		position: absolute;
	}
	.d-none-lg{
		display: none;
	}
	.logo-details{
		width:40px;
	}
	#clients-listing .client-logo{
		padding-top:60px;
		height:200px;
	}
}
.equal-width-height{
	overflow: hidden;
}

.hover-dir {
	position: relative;
}
.hover-dir a,
.hover-dir a img {
	display: block;
	position: relative;
}
.hover-dir a {
	overflow: hidden;
}
.hover-dir a div {
	position: absolute;
	background: rgba(119,93,130,0.2);
	width: 100%;
	height: 100%;
	
}
.hover-dir a img {
        -webkit-transform: scale(1, 1);
        -webkit-transition-duration: 500ms;
        -webkit-transition-timing-function: ease-out;
        -moz-transform: scale(1, 1);
        -moz-transition-duration: 500ms;
        -moz-transition-timing-function: ease-out;
        -ms-transform: scale(1, 1);
        -ms-transition-duration: 500ms;
        -ms-transition-timing-function: ease-out;
		-webkit-filter: blur(0px);
		-moz-filter: blur(0px);
		-o-filter: blur(0px);
		-ms-filter: blur(0px);
}
.hover-dir a:hover img {
        -webkit-transform: scale(1.2, 1.2);
        -webkit-transition-duration: 500ms;
        -webkit-transition-timing-function: ease-out;
        -moz-transform: scale(1.2, 1.2);
        -moz-transition-duration: 500ms;
        -moz-transition-timing-function: ease-out;
        -ms-transform: scale(1.2, 1.2);
        -ms-transition-duration: 500ms;
        -ms-transition-timing-function: ease-out;
		-webkit-filter: blur(4px);
		-moz-filter: blur(4px);
		-o-filter: blur(4px);
		-ms-filter: blur(4px);
}
.product-detail-head-link{
	font-size: 24px;
	color: #aaaaaa;
}
.product-detail-head-link:hover{
	color: #999999;

	}
	.display-table{
	display: table !important;
}
.display-table-cell{
	display: table-cell !important;
	vertical-align: middle;
}
.cat-title-2{
	font-size: 24px;
	color: #ffffff;
	text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
}
.cat-button{
	background: none;
	border: 1px solid #fff;
	width: 160px;
	height: 45px;
	font-size: 18px;
	color: #fff;
	margin-top: 50px;
	text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.3);
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
}
.cat-button:hover{
	border-color: #775d82;
	color: #775d82;
	text-shadow: 1px 0px 1px rgba(232, 209, 242, 0.7);
	box-shadow: 1px 0px 1px rgba(232, 209, 242, 0.7);
}
.equal-width-height{
	overflow: hidden;
}
.cat-title{
	font-size: 48px;
	color: #474747;
}
.cat-number{
	font-size: 150px;
	color: #775d82;
}
.block-cat-number{
	font-family: lankafont;
	font-size: 16px;
        -webkit-transition: background 0.3s linear;
        -moz-transition: background 0.3s linear;
        -ms-transition: background 0.3s linear;
        -o-transition: background 0.3s linear;
        transition: background 0.3s linear;
}
.block-cat-number-1{
	background: #f5f5f5;
}
.block-cat-number-2{
	background: #e2e2e2;
}
.block-cat-number-3{
	background: #cccccc;
}
.block-cat-number-4{
	background: #d7d7d7;
}
.block-cat-number:hover{
	background: #ffffff;
}
