@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;
}
.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;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.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;
  
  }
  
  .overlay {
    position: absolute;
    bottom: 0;
    left: 100%;
    right: 0;
    background-color: transparent;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: .5s ease;
  }
  
  .slideshow-container:hover .overlay {
    width: 100%;
    left: 0;
  }
  
  .text {
    color: #EDBE50;
    font-size: 60px;
    position: absolute;
    /* top: 80%; */
    left: 50%;
    bottom: 10%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    /* margin-bottom: 10000px; */
  }
  
  .overlay a{
    color: #070707;
  }
  
  .overlay p{
    color: #EDBE50;
    font-size: 15px;
    position: absolute;
    top: 90%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 20px;
  }
  
  @media(max-width: 700px){
    .text{
        font-size: 20px;
        text-align: center;
    }
    .overlay p{
        font-size: 10px;
        text-align: center;
    }
  }
  
  @media only screen and (max-width: 300px) {
    .overlay p {font-size: 1px;}
    .text {font-size: 11px}
  }
  
  
  * {box-sizing: border-box;}
  body {font-family: Verdana, sans-serif;}
  .mySlides {display: none;}
  img {vertical-align: middle;}
  
  /* Slideshow container */
  .slideshow-container {
  /* max-width: 1000px; */
  width: 100%;
  position: relative;
  margin: auto;
  }

  .sidebar{
    /* position: absolute; */
    z-index: 3;
  }
  
  /* Caption text */
  /* .text {
  color: #EDBE50;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  } */
  
  /* Number text (1/3 etc) */
  .numbertext {
  color: #EDBE50;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
  height: 0;
  width: 0;
  margin: 0 2px;
  background-color: #EDBE50;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  }
  
  .active {
  background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
  animation-name: fade;
  animation-duration: 1.5s;
  }
  
  
  @keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
  .text {font-size: 11px}
  }
  
  
  /* footer */
    
  .footer{
  /* position: fixed; */
  bottom: 0%;
  /* min-height: 100vh; */
  /* left: 0%; */
  /* transform: translateX(-50%); */
  width: 100%;
  /* height: 200px; */
  text-align: center;
  /* padding: 30px 0; */
  color: #EDBE50;
  /* overflow-y: hidden; */
  font-weight: 200;
  font-size: 10px;
  margin-top: 300px;
  }
    
  .footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
  }
    
  .icons .fa{
    color: #EDBE50;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
  }
  
  html, body {
  max-width: 100%;
  overflow-x: hidden;
  /* overflow-y: hidden; */
  background-color: #070707;
  }
  
  .inline{
    /* margin-top: 60px; */
    /* margin-left: 600px; */
    color: #EDBE50;
  }
  
  .header{
    text-align: center;
    font-family: 'Anton', sans-serif;
    margin-top: 50px;
    font-size: 25px;
  }
  
  .story{
    text-align: center;
    font-size: 15px;
    color: rgba(141, 141, 130, 0.596);
  }
  
  .inlinee{
    margin-top: 3%;
    text-align: center;
  }
  
  .vinlinee{
    margin-top: 3%;
    text-align: center;
  }
  
  .inlinee h4{
    color: #EDBE50;
    text-align: center;
    /* margin-left: 21%; */
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 50;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .inlinee a{
    color: rgba(141, 141, 130, 0.596);
    /* color: #EDBE50; */
    text-align: center;
    /* margin-left: 21%; */
    font-family: 'Anton', sans-serif;
  }
  
  .vinlinee h4{
    color: #EDBE50;
    text-align: center;
    /* margin-left: 21%; */
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 50;
    margin-top: 5%;
    margin-bottom: 10px;
  }
  
  .vinlinee a{
    color: rgba(141, 141, 130, 0.596);
    /* color: #EDBE50; */
    align-items: center;
    text-align: center;
    /* margin-left: 19%; */
    font-family: 'Anton', sans-serif;
  }
  
  /* .vinl{
    margin-left: -20%;
  } */
  
  
  @media(max-width: 700px){
  .text-box h1{
      font-size: 20px;
  }
  .nav-links ul li{
      display: block;
      color: #EDBE50;
  }
  .nav-links{
    position: absolute;
    background: black;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 0.5s;
  /* max-width: 100%; */
  }
  nav .fa{
      display: block;
      color: #EDBE50;
      margin: 10px;
      font-size: 22px;
      cursor: pointer;
  }
  .nav-links ul{
      padding: 30px;
  color: #EDBE50;
  }
  .nav-links ul li a{
    color: #EDBE50;
  }
  .footer{
    /* position: fixed;
    bottom: 0%; */
    /* min-height: 100vh; */
    /* left: 0%; */
    /* transform: translateX(-15%);
    width: 100%;
    height: 200px;
    text-align: center; */
    /* padding: 30px 0; */
    /* color: #EDBE50;
    font-size: 8PX; */
    margin-top: 200px;
    margin-bottom: -100px;
  }
  .mySlides img{
  margin-top: 20%;
  }
  .dot{
   margin-bottom: 0%;
  }
  .text{
  text-align: center !important;
  }
  .overlay a{
  color: #EDBE50;
  text-decoration: none;
  }
  .story{
    text-align: center;
    font-size: 10px;
  }
  .inlinee{
    margin-top: 5%;
  }
  .inlinee h4{
    text-align: center;
    /* margin-left: 21%; */
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 50;
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .inlinee a{
    /* margin-left: 35%; */
    font-size: 13px;
    /* margin-bottom: 5000px; */
    /* margin-top: 5%; */
    /* color: #EDBE50; */
  }
  .vinlinee{
    margin-top: 5%;
  }
  .vinlinee h4{
    text-align: center;
    /* margin-left: 21%; */
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 50;
    margin-top: 50px;
    margin-bottom: 10px;
  }
  .vinlinee a{
    text-align: center;
    /* margin-left: 1%; */
    font-family: 'Anton', sans-serif;
  }
  /* .vinl{
    margin-left: 20%;
    margin-right: 20%;
  } */
  /* .text:hover {
  width: 100%;
  left: 0;
  } */
  }
  
  @media(hover: none){
  .slideshow-container:hover{
    width: 100%;
    /* margin-top: 100%; */
  }
  }
  
  /* @media(hover: hover) and (pointer: fine){
  .overlay:hover{
    width: 100%;
    margin-top: 100%;
  }
  } */