/*
  * Bulb Stylesheet (c) 2016 Mukhtar ali <mokhtarali.com>
*/

@import url(https://fonts.googleapis.com/css?family=Raleway:400,600,300);

/* Global */
.container, 
.content-wrap {
  width: 100%;
  height: 100%;
}

body{height: 100%;color: #4d4d4d;;font-family: Raleway;font-weight:400;text-rendering: optimizelegibility-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale}
*,
*:after,
*:before {-webkit-box-sizing: border-box;-moz-box-sizing:border-box;-o-box-sizing:border-box;box-sizing: border-box;s}
input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px #A0A0A0 inset;}
::-webkit-input-placeholder {color: #4d4d4d;}
:-moz-placeholder {color: #fff;}
::-moz-placeholder {color: #fff;}
:-ms-input-placeholder {color: #fff;}
ul{padding: 0;margin: 0;list-style: none;}
.wrapper{
  width: 1200px;
  position: relative;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}
.wrapperr{width: 1200px;margin: 0 auto;}
img{width: 100%}
a {text-decoration: none;color: #4e3c3e;outline: none;cursor: pointer;}
.clearfix:after{visibility: hidden;display: block;font-size: 0;content: " ";clear: both;height: 0;}
/************** Start Navbar Here **************/
.loader {
  width: 120px;
  height: 120px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  stroke-linecap: round;
  stroke-width: 4;
  fill: none;
}
.loader .internal-circle,
.loader .external-circle {
  stroke: #fff;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.loader .internal-circle {
  stroke-dasharray: 187;
  -webkit-animation: internal 1s ease-in-out infinite;
          animation: internal 1s ease-in-out infinite;
  opacity: .4;
}
.loader .external-circle {
  stroke-dasharray: 312;
  -webkit-animation: external 1s linear infinite;
          animation: external 1s linear infinite;
  opacity: .9;
}

@-webkit-keyframes internal {
  0% {
    stroke-dashoffset: 187;
  }
  25% {
    stroke-dashoffset: 80;
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes internal {
  0% {
    stroke-dashoffset: 187;
  }
  25% {
    stroke-dashoffset: 80;
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes external {
  0% {
    stroke-dashoffset: 312;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
  }
  60% {
    stroke-dashoffset: -312;
  }
  100% {
    stroke-dashoffset: -312;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes external {
  0% {
    stroke-dashoffset: 312;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
  }
  60% {
    stroke-dashoffset: -312;
  }
  100% {
    stroke-dashoffset: -312;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
.no-js #loader {display: none;}
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #252525
}
.menu img{
  margin-bottom: 20px;
  width: 120px
}
.menu-wrap a {
  color: #a2a2a2;
  font-family: Raleway
}
.menu-wrap a.fa{
  font-family: fontawesome
}
.menu-wrap a.fa:hover{
  color: #000;
  transition: all 0.5s
}
.content-wrap {
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.3s,top 1s;;
  transition: transform 0.3s,top 1s;
}
.content {
  position: relative;
}

section::before,.content::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s;
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);
}

/* Menu Button */
.menu-button {
  position: fixed;
  top: 20px;
  z-index: 1000;
  margin: 0 1em;
  padding: 0;
  width: 2.5em;
  height: 2.25em;
  border: none;
  text-indent: 2.5em;
  font-size: 1.5em;
  color: transparent;
  background: transparent;
  outline: 0;
  top: 50%;
  left: 2%;
  transform: translate(-50%, -50%);
}
.menu-button:hover {
  opacity: 0.6;
}
/* Close Button */
.close-button {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-indent: 16px;
  border: none;
  z-index: 1001;
  background: transparent;
  color: transparent;
}
.close-button::before,
.close-button::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #95a5a6;
}
.close-button::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-button::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Menu */
.menu-wrap {
  position: fixed;
  z-index: 1001;
  width: 300px;
  height: 100%;
  font-size: 1.15em;
  -webkit-transform: translate3d(-300px,0,0);
  transform: translate3d(-300px,0,0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.menu {
  background: #fff;
  width: calc(100% - 120px);
  height: 100%;
  padding: 2em 1em;
}
.icon-list {
  width: 280px;
}
.icon-list a {
  display: block;
  padding: 0.8em 0;
}
.icon-list a i {
  opacity: 0.5;
}
.icon-list a span {
  margin-left: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.3vw
}
.icon-list .social{font-size: 15px;padding-top: 10px;margin-top: 15px;margin-left: 10px;}
.icon-list .social a{
  display: inline-block;
  padding: 5px;
}
.icon-list .social a:first-child{
  cursor: default
}
.icon-list .social a:hover{
  border-bottom: none;
}
/* Morph Shape */
.morph-shape {
  position: absolute;
  width: 120px;
  height: 100%;
  top: 0;
  right: 0;
  fill: #fff;
  z-index: 1000;
}
/* Shown menu */
.show-menu .menu-wrap {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.show-menu .content-wrap {
  -webkit-transition-delay: 0.1s ;
  transition-delay: 0.1s;
  -webkit-transform: translate3d(100px,0,0);
  transform: translate3d(100px,0,0);
}
.show-menu .content::before,.show-menu section::before {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.show-menu .content {background:rgba(0,0,0,0.5); }
.con,
.special-con {
  cursor: pointer;
}
.bar {
  display: block;
  height: 2px;
  width: 35px;
  background: #4d4d4d;
  margin: 6px 0;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.con {
  width: auto;
  margin: 0 auto;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}
.col {
  display: block;
  text-align: center;
  height: auto;
  position: relative;
  margin: 10px 5px 0;
  
}
.col h6{
  position: relative;
  font-weight: bold;
  color: #4d4d4d;
  margin: 0;
  opacity: 0;
  font-weight: 400;
  bottom: 0;
  text-align: right;
}
.middle {
}
.menu-button:hover .col h6{
  opacity: 1;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.arrow-top-fall ,.arrow-bottom-fall,.arrow-middle-fall{
  width: 25px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.menu-button:hover .arrow-top-fall {
  width: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.menu-button:hover .arrow-bottom-fall {
  width: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.menu-button:hover .arrow-middle-fall {
  width: 100px;
  -webkit-transition: width .5s; /* Safari 3.1 to 6.0 */
  transition: width .5s;
  height: 2px
}
.special-con {
  margin: 0 auto;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  -ms-transform: rotate(90deg); 
  -webkit-transform: rotate(90deg); 
  transform: rotate(90deg);
}
header{width: 100%;overflow: hidden;background: #fff;}
.navbar{height: 0;position: relative;z-index: 3;}
.navbar .med{padding-top: 2%;overflow: hidden}
.navbar .log{position: fixed;left: 30px;}
.navbar .log img{cursor: pointer;width: 90px}
.navbar nav{float: right;margin-top: 63px}
.navbar nav a{
  text-decoration: none;
  /*color: #fff;*/
  text-transform: uppercase;
  margin-left: 20px;
  font-weight: normal;
  /*border-bottom: 1px solid #fff transparent;*/
  padding:0 5px 10px 5px;
  font-weight: lighter;
  letter-spacing: 2px;
  font-size: .9375em; /* 15px / .59vw */
  font-weight: 500;
}
.navbar .trig{float: right;margin-top: 36px;display: none}
.navbar .trig .norm{
  font-weight: normal;
  color: #fff;
  line-height: 79px;
  float: left;
    margin-right: 5px;
}
.navbar .trig .norm--active{color: #eae5d6}
.mob{display: none}
.mob a{display: none}
header .bx-wrapper{height: 100%;position: relative;}
header .bx-wrapper img{max-width: initial;}
header .bx-wrapper .bx-viewport{
  box-shadow: none;
  border: 0;
  left: 0;
  background: none;
  height: 100% !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header .bxslider{height: 100%; width: 100%; top: 0;left: 0}
header .bxslider li{
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all .1s ease-in-out;
}
#bg{position: relative}
#bg img {
  max-width: 117%;
  position: absolute;
  background-size: cover;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
header .bxslider li{
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
header .bxslider li > div{
  z-index: 112;
  text-align: left;
  top: 0;
}
header .bxslider li h1,
header .bxslider li h2{
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  color: #4d4d4d;
  font-family: 'Raleway'
}
header .bxslider li h2{font-size: 40px}
header .bxslider li h1{font-size: 64px}
header .bxslider li hr{width: 10%;float: left;border: 2px solid #4d4d4d;}
.fa-angle-down {
  position: absolute;
  color: #4d4d4d;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -15%);
  -webkit-animation: jump 1.5s infinite;
          animation: jump 1.5s infinite;
}
@-webkit-keyframes jump {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes jump {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
.lft h2,.lft h1{text-align: right;}
.lft hr{float: right !important;}
.about{background:#eaeaea;}
.about-main hr,.product-main hr,.gallery-main hr,.quarries-title hr{
  border: 1px solid #000;
  width: 30px;
  float: left;
  margin: 18px 15px 18px 0
}
.about-main h1{}
.about-main{}
.about-con,.company-con{padding: 10px 70px 0;overflow: hidden;color: #484452}
.about-img{float: left;}
.about-img img:hover{opacity: .9}
.about-info{float: right;width: 46%;margin: 120px  0;}
.about-info hr{border: 1px solid #000;width: 70px;position: relative;right: 240px;}
.about-title{}
.about-title span{display: block;font-weight: 300}
.about-title h2{
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #4d4d4d
}
.about-article{}
.about-article p{
  font-size: 20px;
  line-height: 28px
}
.company{background:#fff;}
.company-main h1{}
.company-main{}
.aboutbtn{margin-top: 30px;}
.company-img{float: right}
.company-img img{width: 350px;}
.company-img img:hover{opacity: .9}
.company-info{float: left;width: 46%;}
.company-info hr{
  border: 1px solid #fff;
  width: 70px;
  position: relative;
  right: 185px;
}
.company-title{}
.company-title h4{font-size: 13px;letter-spacing: 6px;text-transform: uppercase;}
.company-title h2{font-size: 30px;text-transform: uppercase;margin-bottom: 0}
.company-article{}
.company-article p{font-size: 17px;line-height: 23px;text-align:left;}
.products-title{}
.products-title h2{
  font-size: 30px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
.products-con {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin: 50px auto;
}
.products{background: #7cacff;color: #fff}
.products-con ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}
.products-con ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 16.666%;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease;
}
.products-con ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}
.products-con ul li div a {
  display: block;
  height: 250px;
  width: 100%;
  position: relative;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  transition: all 200ms ease;
}
.products-con ul li div a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.products-con ul li div a h2 {
  text-overflow: clip;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 2px;
  top: 160px;
  text-align: left;
  color: #fff
}
.products-con ul li div a p {
  top: 160px;
  font-size: 13.5px;
}
.products-con ul li:nth-child(1) {
  background-image: url("../images/accordion1.jpg");
}
.products-con ul li:nth-child(2) {
  background-image: url("../images/accordion2.jpg");
}
.products-con ul li:nth-child(3) {
  background-image: url("../images/accordion3.jpg");
}
.products-con ul li:nth-child(4) {
  background-image: url("../images/accordion4.jpg");
}
.products-con ul li:nth-child(5) {
  background-image: url("../images/accordion5.jpg");
}
.products-con ul:hover li {
  width: 20%;
}
.products-con ul:hover li:hover {
  width: 60%;
}
.products-con ul:hover li:hover a {
  background: rgba(0, 0, 0, 0.4);
}
.products-con ul:hover li:hover a * {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 600px) {
  body {
    margin: 0;
  }

  .products-con {
    height: auto;
  }
  .products-con ul li, .products-con ul li:hover, .products-con ul:hover li, .products-con ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
}


.btn{
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  width: 250px;
  height: 50px;
  margin: 60px auto;
  overflow: hidden;
}
.btn .outline{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-width: 2px;
  fill: transparent;
}
.btn .text{
  position: relative;
  top: -40px;
  font-size: 1.1em;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.btn .outline {
  stroke-dasharray: 50 550;
  stroke-dashoffset: 200;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn:hover .outline {
  stroke-dasharray: 50 250;
  stroke-dashoffset: 500;
}

@-webkit-keyframes bounceRight {
  0% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  30% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  40%, 60%, 80%, 100% {
    -webkit-transform: translateX"("0")";
    -moz-transform: translateX"("0")";
    -ms-transform: translateX"("0")";
    -o-transform: translateX"("0")";
    transform: translateX"("0")";
  }
  50% {
    -webkit-transform: translateX"("-30%")";
    -moz-transform: translateX"("-30%")";
    -ms-transform: translateX"("-30%")";
    -o-transform: translateX"("-30%")";
    transform: translateX"("-30%")";
  }
  70% {
    -webkit-transform: translateX"("-15%")";
    -moz-transform: translateX"("-15%")";
    -ms-transform: translateX"("-15%")";
    -o-transform: translateX"("-15%")";
    transform: translateX"("-15%")";
  }
  90% {
    -webkit-transform: translateX"("-7.5%")";
    -moz-transform: translateX"("-7.5%")";
    -ms-transform: translateX"("-7.5%")";
    -o-transform: translateX"("-7.5%")";
    transform: translateX"("-7.5%")";
  }
}
@-moz-keyframes bounceRight {
  0% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  30% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  40%, 60%, 80%, 100% {
    -webkit-transform: translateX"("0")";
    -moz-transform: translateX"("0")";
    -ms-transform: translateX"("0")";
    -o-transform: translateX"("0")";
    transform: translateX"("0")";
  }
  50% {
    -webkit-transform: translateX"("-30%")";
    -moz-transform: translateX"("-30%")";
    -ms-transform: translateX"("-30%")";
    -o-transform: translateX"("-30%")";
    transform: translateX"("-30%")";
  }
  70% {
    -webkit-transform: translateX"("-15%")";
    -moz-transform: translateX"("-15%")";
    -ms-transform: translateX"("-15%")";
    -o-transform: translateX"("-15%")";
    transform: translateX"("-15%")";
  }
  90% {
    -webkit-transform: translateX"("-7.5%")";
    -moz-transform: translateX"("-7.5%")";
    -ms-transform: translateX"("-7.5%")";
    -o-transform: translateX"("-7.5%")";
    transform: translateX"("-7.5%")";
  }
}
@-o-keyframes bounceRight {
  0% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  30% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  40%, 60%, 80%, 100% {
    -webkit-transform: translateX"("0")";
    -moz-transform: translateX"("0")";
    -ms-transform: translateX"("0")";
    -o-transform: translateX"("0")";
    transform: translateX"("0")";
  }
  50% {
    -webkit-transform: translateX"("-30%")";
    -moz-transform: translateX"("-30%")";
    -ms-transform: translateX"("-30%")";
    -o-transform: translateX"("-30%")";
    transform: translateX"("-30%")";
  }
  70% {
    -webkit-transform: translateX"("-15%")";
    -moz-transform: translateX"("-15%")";
    -ms-transform: translateX"("-15%")";
    -o-transform: translateX"("-15%")";
    transform: translateX"("-15%")";
  }
  90% {
    -webkit-transform: translateX"("-7.5%")";
    -moz-transform: translateX"("-7.5%")";
    -ms-transform: translateX"("-7.5%")";
    -o-transform: translateX"("-7.5%")";
    transform: translateX"("-7.5%")";
  }
}
@keyframes bounceRight {
  0% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  30% {
    -webkit-transform: translateX"("-100%")";
    -moz-transform: translateX"("-100%")";
    -ms-transform: translateX"("-100%")";
    -o-transform: translateX"("-100%")";
    transform: translateX"("-100%")";
  }
  40%, 60%, 80%, 100% {
    -webkit-transform: translateX"("0")";
    -moz-transform: translateX"("0")";
    -ms-transform: translateX"("0")";
    -o-transform: translateX"("0")";
    transform: translateX"("0")";
  }
  50% {
    -webkit-transform: translateX"("-30%")";
    -moz-transform: translateX"("-30%")";
    -ms-transform: translateX"("-30%")";
    -o-transform: translateX"("-30%")";
    transform: translateX"("-30%")";
  }
  70% {
    -webkit-transform: translateX"("-15%")";
    -moz-transform: translateX"("-15%")";
    -ms-transform: translateX"("-15%")";
    -o-transform: translateX"("-15%")";
    transform: translateX"("-15%")";
  }
  90% {
    -webkit-transform: translateX"("-7.5%")";
    -moz-transform: translateX"("-7.5%")";
    -ms-transform: translateX"("-7.5%")";
    -o-transform: translateX"("-7.5%")";
    transform: translateX"("-7.5%")";
  }
}
.testi{
  background: url("../images/testimonials-bg.jpg") no-repeat center center;
  background-size: cover;
  min-height: 400px;;
  padding: 100px 10px;
}
.testi .bxslider{width: 100%;background-color: #afa891;display: inline-block;}
.testi .bxslider .pic{width: 20%;float:left}
.testi .bxslider .pic img{width: 100%;vertical-align: middle;opacity: .8}
.testi .bxslider .text{
  color: #fff;
  float: left;
  width: 100%;
  margin: 40px 0;
  text-align: center;
}
.testi .bxslider .text q{font-weight: 300;font-size: 30px;color: #fff}
.testi .bxslider .text cite{display: block;text-align: center;margin-top: 47px;color: #ACB1B4;text-transform: uppercase;font-style: normal;}
.testi .bx-wrapper .bx-viewport{
  box-shadow: none;
  border:none;
  left: 0;
  background: none
}
.testi .bxslider li{margin-bottom: 70px;overflow: hidden}
.footer {padding: 60px 10px;background-color: #1b1b1b;text-align: center;color: #fff;}
.footer .social h2 {text-transform: uppercase;margin: 5% 0 1%}
.footer .social hr {width: 7%;margin-bottom: 3%}
.footer .social a {padding: 0 10px;display: inline-block}
.footer .icon img {width: 120px;}
.footer .social .fa{color: #fff;}
.footer .social .fa:before {font-size: 20px}
.footer .social .fa:hover {color: #c6c0ac}
footer {
  position: fixed;
  width: 90%;
  bottom: 0;
  text-align: left;
  color: #4d4d4d;
  text-transform: uppercase;
  overflow: hidden;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);

}
footer h6{
  float: left;
  margin:0;
  line-height: 19px;
  font-family: Raleway;
  font-size: 13px;

}
footer .social{
  float: right;
}
footer .social a{
  font-size: 13px;
  color: #4d4d4d;
  padding: 0 2px
}
footer .social a:hover{
  
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}




.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}




.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
    -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
















.container {
  overflow: hidden;
  height: 100%;
}

.sections {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: moveToTop .7s ease-in-out both;
  animation: moveToTop .7s ease-in-out both;
}

.section {
  position: relative;
  width: 100%;
  height: 100%;
}
.section_1 {
  background-color: black;
}
.section_2 {
  background-color: #202020;
}
.section_3 {
  background-color: #404040;
}
.section_4 {
  background-color: #606060;
}
.section__title {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #f2f2f2;
  font-size: 5em;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.link {
  outline: none;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  line-height: 1;
  color: #000;
  display: inline-block;
}
.link--kumya {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  overflow: hidden;
  padding: 10px 10px 5px;
  line-height: 1;

}
.link--kumya:hover::after {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.link--kumya span {
  display: block;
  position: relative;
  z-index: 2
}
.link--kumya span::before {
  content: attr(data-letters);
  position: absolute;
  color: #000;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 0%;
  -webkit-transition: width 0.8s;
  transition: width 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
  transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.link--kumya:hover span::before {width: 100%;}
.link i{margin-left: 10px;}
.contact{
  background: #EAEAEA;
}  
.site-co{
   position: absolute;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  min-width: 1000px;
}
.contactform{
  overflow: hidden;
 
}
.site-co h2{
  text-align: center;
  color: #4d4d4d;
  font-size: 2em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  margin-bottom: 30px;
}
.site-co .contac{text-align: center;float: left;width: 100%}
.site-co .contac h1{font-size: 19px;text-transform: uppercase;text-align: left;margin-bottom: 20px;}
.site-co .contactform i{margin-right: 10px;}
.site-co .contac input,
.site-co .contac  textarea,
.site-co .contac select{
  width: 100%;
  outline: 0;
  padding: 10px;
  margin-bottom: 2%;
  background-color: #E0E0E0;
  border: none;
  font-family: open sans;
  font-size: 14px;
}
.site-co .contac  textarea::-webkit-input-placeholder,
.site-co .contac  input::-webkit-input-placeholder,
.site-co .contac select::-webkit-input-placeholder,
.site-co .contac select option::-webkit-input-placeholder{
  color: #959595;
}
.site-co input[type="submit"]{width: 20%;background-color: #4d4d4d;padding:10px;border: 0;color: #fff;margin-top: 10px;text-align: center;}
.site-co input[type="date"]{height: 39px}
.site-co .contac  textarea{height: 140px;resize: none}
.site-co .contac select{height: 49px;-webkit-appearance: none;-moz-appearance: none;appearance: none;padding: 16px;color:#959595 }
.site-co .info{margin: 30px 0;font-family: open sans;text-align: left}
.site-co .info hr{opacity: .3;margin: 10px 0}
.site-co .info > div{margin-top: 10px;font-size: 14px;}
.site-co .info div span{font-weight: 600;}
.site-co .info div .indent{margin-left: 27px}
.arrow{position: relative;}
.site-co form .arrow:after {
    content: "\f107";
    display: inline-block;
    vertical-align: middle;
    font-family: FontAwesome;
    right: 14px;
    position: absolute;
    top: 16px;
    color: #959595
}
.occ{width: 53%;overflow: hidden;margin: 0 auto}
.abus p{text-align: center;}
.fnt{font-size: 10px;}
.submenu{display: none;padding-left: 10px;}
.submenu li a span{font-size: .9vw;}
.submenu li a{padding: 0.4em 0;}
.formii{min-width: 700px;}
.img-container{text-align: center;margin-bottom: 20px;}
.product-info{
  width: 100%; 
  margin: 0 auto;
  background-color: #eaeaea;
  overflow: hidden;
}

.product-info p{color: #4d4d4d;font-size: 14px;}
.product-info p span{color: #61b3af;font-weight: bold;}
.product-info h5{text-align: center;margin-top: 50px;color: #4d4d4d;}
.product-info h2{margin-top: 50px;margin-bottom: 10px;color: #61b3af;font-size: 20px;}
.product-info h6{margin: 10px 0;color: #a9a9a9;}
.second .product-info h2{color: #ad3534;}
.second .product-info p span{color: #ad3534;}
.third .product-info h2{color: #a987aa;}
.third .product-info p span{color: #a987aa;}
.forth .product-info h2{color: #8199c5;}
.forth .product-info p span{color: #8199c5;}
.fifth .product-info h2{color: #96c57d;}
.fifth .product-info p span{color: #96c57d;}
.onerow{width: 45%;float: left;}
.tworow{width: 45%;float: right;}
















.projects-container {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background: #eaeaea;
}
.projects-container::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.projects-container .cd-single-project {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
  /* on mobile -  move items outside the viewport */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.projects-container .cd-single-project::after {
  /* background image */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 25vh;
  width: 100%;
  background-image: url("../images/gallery/img-1-small.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: opacity 0.5s, height 0.4s;
  -moz-transition: opacity 0.5s, height 0.4s;
  transition: opacity 0.5s, height 0.4s;
}
.projects-container .cd-single-project::before {
  /* never visible - this is used in jQuery to detect if the background image has been loaded  */
  content: 'images/gallery/img-4-small.jpg';
  display: none;
}
.projects-container .cd-single-project:nth-of-type(2) {
  top: 25vh;
}
.projects-container .cd-single-project:nth-of-type(2)::after {
  background-image: url("../images/gallery/img-1-small.jpg");
}
.projects-container .cd-single-project:nth-of-type(2)::before {
  content: 'images/gallery/img-1-small.jpg';
}
.projects-container .cd-single-project:nth-of-type(3) {
  top: 50vh;
}
.projects-container .cd-single-project:nth-of-type(3)::after {
  background-image: url("../images/gallery/img-2-small.jpg");
}
.projects-container .cd-single-project:nth-of-type(3)::before {
  content: 'images/gallery/img-2-small.jpg';
}
.projects-container .cd-single-project:nth-of-type(4) {
  top: 75vh;
}
.projects-container .cd-single-project:nth-of-type(4)::after {
  background-image: url("../images/gallery/img-3-small.jpg");
}
.projects-container .cd-single-project:nth-of-type(4)::before {
  content: 'images/gallery/img-3-small.jpg';
}
.projects-container .cd-single-project.is-loaded {
  /* move items in the viewport when background images have been loaded */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.projects-container .cd-single-project.is-full-width {
  /* selected item */
  top: 0;
  height: auto;
  z-index: 1;
  cursor: auto;
  -webkit-transition: z-index 0s 0s, top 0.4s 0s;
  -moz-transition: z-index 0s 0s, top 0.4s 0s;
  transition: z-index 0s 0s, top 0.4s 0s;
}
.projects-container .cd-single-project.is-full-width::after {
  height: 100vh;
}
@media only screen and (min-width: 1024px) {
  .projects-container::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .projects-container .cd-single-project {
    width: 20vw;
    height: 100%;
    opacity: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: width 0s;
    -moz-transition: width 0s;
    transition: width 0s;
  }
  .projects-container .cd-single-project:first-of-type::before {
    content: 'images/gallery/img-4-large.jpg';
  }
  .projects-container .cd-single-project:first-of-type::after {
    background-image: url("../images/gallery/img-4-large.jpg");
  }
  .projects-container .cd-single-project:nth-of-type(2) {
    top: 0;
    left: 20vw;
  }
  .projects-container .cd-single-project:nth-of-type(2)::before {
    content: 'images/covers/s5.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(2)::after {
    background-image: url("../images/covers/s5.jpg");
  }
  .projects-container .cd-single-project:nth-of-type(3) {
    top: 0;
    left: 40vw;
  }
  .projects-container .cd-single-project:nth-of-type(3)::before {
    content: 'images/covers/s6.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(3)::after {
    background-image: url("../images/covers/s6.jpg");
  }
  .projects-container .cd-single-project:nth-of-type(4) {
    top: 0;
    left: 60vw;
  }
  .projects-container .cd-single-project:nth-of-type(4)::before {
    content: 'images/gallery/img-3large.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(4)::after {
    background-image: url("../images/gallery/img-3-large.jpg");
  }
  .cd-single-project:nth-of-type(5) {
    left: 80vw;
    top: 0;
  }
  .projects-container .cd-single-project:nth-of-type(5)::before {
    content: 'images/covers/s7.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(5)::after {
    background-image: url("../images/covers/s7.jpg");
  }
  .projects-container .cd-single-project::after {
    height: 100vh;
    width: 100%;
    opacity: 0;
  }
  .projects-container .cd-single-project.is-loaded {
    /* show items when background images have been loaded */
    opacity: 1;
  }
  .projects-container .cd-single-project.is-loaded::after {
    opacity: 1;
  }
  .projects-container .cd-single-project.is-full-width {
    /* selected item */
    left: 0vw;
    width: 100vw;
    -webkit-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
    -moz-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
    transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
  }
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-single-project::after {
    background-attachment: fixed;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.5s;
    -moz-transition: -moz-transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
  }
  .projects-container .cd-single-project.is-loaded::after {
    opacity: 0;
  }
  .no-touch .projects-container .cd-single-project:hover::after, .projects-container .cd-single-project.is-full-width.is-loaded::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.cd-title {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 12.5vh;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.is-full-width .cd-title {
  top: 50vh;
  -webkit-transition: opacity 0s, top 0.4s;
  -moz-transition: opacity 0s, top 0.4s;
  transition: opacity 0s, top 0.4s;
}
.cd-title > * {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-title h2 {
  font-size: 2vw;
  line-height: 1.5;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}
.cd-title p {
  font-size: 1.2vw;
  color: #000;
  margin: 0;
  font-style: italic;
  line-height: 1.2;
  padding: .4em 2em;
  display: none;
  opacity: .6;
}
@media only screen and (min-width: 1024px) {
  .cd-title {
    top: 50vh;
    width: 20vw;
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-20px);
    -moz-transform: translateY(-50%) translateX(-20px);
    -ms-transform: translateY(-50%) translateX(-20px);
    -o-transform: translateY(-50%) translateX(-20px);
    transform: translateY(-50%) translateX(-20px);
  }
  .is-loaded .cd-title {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.6s, opacity 0.6s, left 0.4s;
    -moz-transition: -moz-transform 0.6s, opacity 0.6s, left 0.4s;
    transition: transform 0.6s, opacity 0.6s, left 0.4s;
  }
  .is-loaded.is-full-width .cd-title {
    left: 37.5vw;
    -webkit-transition: -webkit-transform 0.6s, opacity 0s, left 0.4s;
    -moz-transition: -moz-transform 0.6s, opacity 0s, left 0.4s;
    transition: transform 0.6s, opacity 0s, left 0.4s;
  }
  .cd-title p {
    display: block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-title h2 {
    font-size: 2vw;
  }
}

.cd-project-info {
  clear: both;
  visibility: hidden;
  opacity: 0;
  margin-top: 100vh;
  padding: 4em 0;
  cursor: auto;
  background-color: #eaeaea;
  color: #3f538e;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.is-full-width .cd-project-info {
  visibility: visible;
  opacity: 1;
}
.cd-project-info p {
  margin: 0;
  line-height: 2;
}
@media only screen and (min-width: 1024px) {
  .cd-project-info {
    position: relative;
    z-index: 1;
  }
}

.projects-container .cd-close,
.projects-container .cd-scroll {
  display: block;
  z-index: 1;
  width: 44px;
  height: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transition: -webkit-transform 1s 0s, visibility 0s 1s;
  -moz-transition: -moz-transform 1s 0s, visibility 0s 1s;
  transition: transform 1s 0s, visibility 0s 1s;
}

.projects-container .cd-close {
  position: fixed;
  top: 30px;
  right: 5%;
  background: url("../img/cd-icon-close-mobile.svg") no-repeat center center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-close {
    background-image: url("../img/cd-icon-close-desktop.svg");
  }
}

.projects-container .cd-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: url("../img/cd-icon-arrow-mobile.svg") no-repeat center center;
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-scroll {
    background-image: url("../img/cd-icon-arrow-desktop.svg");
  }
}

.project-is-open .cd-close,
.project-is-open .cd-scroll {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  transition: transform 0.4s 0s, visibility 0s 0s;
}

.project-is-open .cd-scroll {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: cd-translate 1.2s 0.4s;
  -moz-animation: cd-translate 1.2s 0.4s;
  animation: cd-translate 1.2s 0.4s;
  -webkit-animation-iteration-count: 2;
  -moz-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.no-touch .project-is-open .cd-close:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.no-touch .project-is-open .cd-scroll:hover {
  -webkit-transform: translateX(-50%) scale(1.2);
  -moz-transform: translateX(-50%) scale(1.2);
  -ms-transform: translateX(-50%) scale(1.2);
  -o-transform: translateX(-50%) scale(1.2);
  transform: translateX(-50%) scale(1.2);
}

@-webkit-keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}
@-moz-keyframes cd-translate {
  0% {
    -moz-transform: translateX(-50%) scale(1);
  }
  50% {
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}
@keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
    -ms-transform: translateY(10px) translateX(-50%) scale(1);
    -o-transform: translateY(10px) translateX(-50%) scale(1);
    transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}








/***************************
COLORS
*****************************/
section:nth-child(1) {
  background: #2ecc71;
}

section:nth-child(2) {
  background: #208e4e;
}

section:nth-child(3) {
  background: #176437;
}

section:nth-child(4) {
  background: #0d3a20;
}

body, html {
  margin: 0;
  overflow: hidden;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
}

body, .onepage-wrapper, html {
  display: block;
  position: static;
  padding: 0;
  width: 100%;
  height: 100%;
}

.onepage-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 0;
  -webkit-transform-style: preserve-3d;
}

.onepage-wrapper .section {
  width: 100%;
  height: 100%;
}

.onepage-pagination {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 5;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: -48px;
}

.onepage-pagination li {
  padding: 0;
  text-align: center;
}

.onepage-pagination li a {
  padding: 10px;
  width: 4px;
  height: 4px;
  display: block;
}

.onepage-pagination li a:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4d4d4d;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

.onepage-pagination li a.active:before {
  width: 10px;
  height: 10px;
  background: none;
  border: 1px solid #4d4d4d;
  margin-top: -4px;
  left: 8px;
}

.disabled-onepage-scroll, .disabled-onepage-scroll .wrapper {
  overflow: auto;
}

.disabled-onepage-scroll .onepage-wrapper .section {
  position: relative !important;
  top: auto !important;
}

.disabled-onepage-scroll .onepage-wrapper {
  -webkit-transform: none !important;
  transform: none !important;
  -ms-transform: none !important;
  min-height: 100%;
}

.disabled-onepage-scroll .onepage-pagination {
  display: none;
}

body.disabled-onepage-scroll, .disabled-onepage-scroll .onepage-wrapper, html {
  position: inherit;
}








.bloge{height: inherit;overflow: inherit;}
.projee .menu-button,.bloge .menu-button{top: 7%}
.content-con{
  width: 1100px;
  /* background: #EAEAEA; */
  margin: 0 auto;
  padding-top: 170px;
}
.blog{text-align: justify;overflow: hidden;}
.blog:after{
  content: '';
  display: inline-block;
  width: 100%;
}
.block-article{width: 47%;overflow: hidden;display: inline-block;margin-bottom: 20px;background: #f1f1f1;border: 1px solid #dedede;}
.article-img{width: 49%;height: 220px;background: #ccc;float: left;}
.article-info{width: 49%;float: right;position: relative;text-align: left;padding: 10px;}
.article-info h2{font-size: 23px;}
.article-info a{transition: .4s ease ;-webkit-transition: .4s ease}
.article-info a:hover{color: #7cacff;transition: .4s ease ;-webkit-transition: .4s ease}
.article-info .btn .outline{stroke: #4d4d4d;}
.article-info .btn .text{font-size: .9em;line-height: 0}
.bloge footer{position: inherit;transform: none;left: 0;margin: 0 auto;padding: 10px 0;width: 1100px;}
.bloge .navbar .log{position: inherit;margin: 0 auto;width: 92px;}
.article-content{width: 70%;background: #efefef;padding: 20px;float: left}
.article-head{border-bottom: 1px solid #d6d6d6;margin-bottom: 10px;}
.article-head h1{margin: 0}
.article-detail{overflow: hidden;color: #b9b9b9;}
.article-detail h6{margin: 10px 0;float: left;}
.article-detail h6:nth-child(2){float: right;}
.article-detail h6 i{margin-right: 5px;}
.blog aside{width: 29%;float: right;background: #4d4d4d;padding: 20px;color: #fff}
.blog aside h4{margin: 0 0 10px 0;}
.blog aside h5{margin: 10px 0}
.whii {color: #fff !important;}
.whi{border: 2px solid #fff !important;}






