@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.btn{
  position: absolute;
  top: 25px;
  right: 25px;
  height: 45px;
  width: 45px;
  text-align: center;
  background: #1b1b1b;
  border-radius: 3px;
  cursor: pointer;
  transition: left 0.4s ease;
}

/* .btn.click{
  right: 260px;
} */
.btn span{
  color: #EDBE50;
  font-size: 28px;
  line-height: 45px;
}
.btn.click span:before{
  content: '\f00d';
}
.sidebar{
  position: fixed;
  width: 200px;
  height: 100%;
  right: -250px;
  background: #1b1b1b;
  transition: left 0.4s ease;
  z-index: 1;
}
.sidebar.show{
  right: 0px;
}
.sidebar .text{
  color: white;
  font-size: 25px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  background: #1e1e1e;
  letter-spacing: 1px;
}
nav ul{
  background: #1b1b1b;
  height: 100%;
  width: 100%;
  list-style: none;
}
nav ul li{
  line-height: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
nav ul li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav ul li a{
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 12px;
  padding-left: 40px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 3px solid transparent;
}
nav ul li.active a{
  color: #EDBE50;
  background: #1e1e1e;
  border-left-color: #EDBE50;
}
nav ul li a:hover{
  background: #1e1e1e;
}
nav ul ul{
  position: static;
  display: none;
}
nav ul .feat-show.show{
  display: block;
}
nav ul .serv-show.show1{
  display: block;
}
nav ul ul li{
  line-height: 42px;
  border-top: none;
}
nav ul ul li a{
  font-size: 12px;
  color: #e6e6e6;
  padding-left: 50px;
}
nav ul li.active ul li a{
  color: #e6e6e6;
  background: #1b1b1b;
  border-left-color: transparent;
}
nav ul ul li a:hover{
  color: #EDBE50!important;
  background: #1e1e1e!important;
}
nav ul li a span{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.4s;
}
nav ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #202020;
  z-index: -1;
  text-align: center;
}
.content .header{
  font-size: 45px;
  font-weight: 600;
}
.content p{
  font-size: 30px;
  font-weight: 500;
}

.content-carrousel img{
  z-index: -2;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------- */

/* @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

*{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background-color: black;
  margin: 0;
  padding: 0 0 200px;
}
nav{
  background: none;
}
nav:after{
  content: '';
  clear: both;
  display: table;
}
nav img{
  float: left;
  width: 100px;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 60px;
}
nav ul{
  float: right;
  margin-right: 40px;
  list-style: none;
  position: relative;
}
nav ul li{
  float: left;
  display: inline-block;
  background: none;
  margin: 0 5px;
}
nav ul li a{
  color: #EDBE50;
  line-height: 70px;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 15px;
}
nav ul li a:hover{
  color: #EDBE50;
  border-radius: 5px;
  box-shadow:  0 0 5px #EDBE50,
               0 0 10px #EDBE50;
}
nav ul ul li a:hover{
  box-shadow: none;
}
nav ul ul{
  position: absolute;
  top: 90px;
  border-top: 3px solid cyan;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
}
nav ul ul ul{
  border-top: none;
}
nav ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}
nav ul ul li{
  position: relative;
  margin: 0px;
  width: 150px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}
nav ul ul li a{
  line-height: 50px;
}
nav ul ul ul li{
  position: relative;
  top: -60px;
  left: 150px;
}

.fa{
  color: #EDBE50;
}
.show,.icon,input{
  display: none;
}
.fa-plus{
  font-size: 15px;
  margin-left: 40px;
}
@media all and (max-width: 700px) {
  nav ul{
    margin-right: 0px;
    float: left;
  }
  nav .logo{
    padding-left: 30px;
    width: 100%;
  }
  .show + a, ul{
    display: none;
  }
  nav ul li,nav ul ul li{
    display: block;
    width: 100%;
  }
  nav ul li a:hover{
    box-shadow: none;
  }
  .show{
    display: block;
    color: #EDBE50;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover{
    color: cyan;
  }
  .icon{
    display: block;
    color: white;
    position: absolute;
    top: 0;
    right: 40px;
    line-height: 70px;
    cursor: pointer;
    font-size: 25px;
  }
  nav ul ul{
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  nav ul ul a{
    padding-left: 40px;
  }
  nav ul ul ul a{
    padding-left: 80px;
  }
  nav ul ul ul li{
    position: static;
  }
  [id^=btn]:checked + ul{
    display: block;
  }
  nav ul ul li{
    border-bottom: 0px;
  }
  span.cancel:before{
    content: '\f00d';
  }
}
.content{
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
header{
  font-size: 35px;
  font-weight: 600;
  padding: 10px 0;
}
p{
  font-size: 30px;
  font-weight: 500;
} */


/* --------------------------------------------------------------------------------- */


.About{
  /* width: 100%; */
  text-align: center;
  padding: 30px 0;
}

.About h3{
  margin-bottom: 10px;
  margin-top: 0px;
  font-weight: 600;
}

.About p{
  margin-bottom: 35px;
}

.About img{
  width: 200px;
  height: 250px;
  border-radius: 5px;
}

.icons .fa{
  color: #f44336;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
  margin-top: -10vh;
}

.footer{
  font-size: 14px;
  text-align: center;
  color: #777;
  margin-top: 2vh;
  margin-bottom: 0;
}

nav img{
  width: 100px;

}

/* .samp{
  width: 100%;
height: 120px;
border: 1px solid #3b444b;
overflow: hidden;
position: absolute;
} */

/* 3D Slideshow */ 
* {
margin: 0;
padding: 0;
}

html, body {
max-width: 100%;
overflow-x: hidden;
/* overflow-y: hidden; */
background-color: #070707;
}

#slideshow {
margin: 0 auto;
/* padding-top: -500px; */
height: 600px;
width: 100%;
background-color: #070707;
box-sizing: border-box;
}

.slideshow-title {
font-family: 'Allerta Stencil';
font-size: 62px;
color: #fff;
margin: 0 auto;
text-align: center;
margin-top: 25%;
letter-spacing: 3px;
font-weight: 300;
}

.sub-heading {
padding-top: 50px;
font-size: 18px;
} .sub-heading-two {
font-size: 15px;
} .sub-heading-three {
font-size: 13px;
} .sub-heading-four {
font-size: 11px;
} .sub-heading-five {
font-size: 9px;
} .sub-heading-six {
font-size: 7px;
} .sub-heading-seven {
font-size: 5px;
} .sub-heading-eight {
font-size: 3px;
} .sub-heading-nine {
font-size: 1px;
}

.entire-content {
margin: auto;
width: 190px;
perspective: 1000px;
position: relative;
padding-top: 80px;
}

.content-carrousel {
width: 100%;
/* position: absolute; */
float: right;
animation: rotar 15s infinite linear;
/* transform-style: preserve-3d; */
}

/* .content-carrousel:hover {
animation-play-state: paused;
cursor: pointer;
} */

.content-carrousel figure {
width: 100%;
height: 320px;
/* border: 1px solid #3b444b; */
overflow: hidden;
/* position: absolute; */
}

.content-carrousel figure:nth-child(1) {
transform: rotateY(0deg) translateZ(300px); 
} .content-carrousel figure:nth-child(2) {
transform: rotateY(40deg) translateZ(300px); 
} .content-carrousel figure:nth-child(3) {
transform: rotateY(80deg) translateZ(300px); 
} .content-carrousel figure:nth-child(4) {
transform: rotateY(120deg) translateZ(300px); 
} .content-carrousel figure:nth-child(5) {
transform: rotateY(160deg) translateZ(300px); 
} .content-carrousel figure:nth-child(6) {
transform: rotateY(200deg) translateZ(300px); 
} .content-carrousel figure:nth-child(7) {
transform: rotateY(240deg) translateZ(300px); 
} .content-carrousel figure:nth-child(8) {
transform: rotateY(280deg) translateZ(300px); 
} .content-carrousel figure:nth-child(9) {
transform: rotateY(320deg) translateZ(300px); 
} .content-carrousel figure:nth-child(10) {
transform: rotateY(360deg) translateZ(300px); 
} 

.shadow {
  position: absolute;
  box-shadow: 0px 0px 20px 0px #000;
  border-radius: 1px;
}

.content-carrousel img {
  image-rendering: auto;
  transition: all 300ms;
  width: 100%;
  height: 100%;
  margin-top: 50%;
}

.content-carrousel img:hover {
transform: scale(1.2);
transition: all 300ms;
}

@keyframes rotar {
from {
  transform: rotateY(0deg);
} to {
  transform: rotateY(360deg);
}
}

 /* footer */


  
.footer p{
  /* position: fixed; */
  /* bottom: 0%; */
  /* min-height: 100vh; */
  /* left: 0%; */
  /* transform: translateX(-50%); */
  /* width: 100%; */
  /* height: 200px; */
  text-align: center;
  /* padding: 30px 0; */
  color: #EDBE50;
  font-size: 10px;
}
  
.footer h4{
  margin-bottom: 15px;
  margin-top: 20px;
  font-weight: 600;
  color: #EDBE50;
}
  
.icons .fa{
  color: #EDBE50;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

@media(max-width: 700px){
  .footer{
      /* position: fixed; */
      bottom: 0%;
      /* top: 70%; */
      /* min-height: 100vh; */
      /* left: 0%; */
      transform: translateX(-2%);
      transform: translateY(-20%);
      width: 100%;
      height: 200px;
      text-align: center;
      /* padding: 30px 0; */
      /* color: #EDBE50;
      font-size: 10PX; */
      /* margin-top: -350px; */
      /* margin-bottom: -300%; */
      /* margin-left: 20%; */
  }
  .footer h4{
    margin-bottom: 5px;
  }
  .footer p{
    font-size: 8px;
  }
  .icons .fa{
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .content-carrousel img {
      image-rendering: auto;
      transition: all 300ms;
      width: 100%;
      height: 100%;
      margin-top: 60%;
  }
}




