  /*-- slider --*/
  #slider-container{
	position: relative;
	height: 100vh;
	overflow: hidden;
  }
  
  .slider-items{
  position:relative;
  z-index: 0;
  }
  .slider-items .slide{
  position:absolute;
  width:100%;
  transition: opacity 5s;
  }
  .slider-items .slide img{
  width:100%;
	opacity: 0;
	transition: opacity 5s;
  }
  
  .slider-items .slide.active img{
  opacity: 1;
  transition: opacity 5s;
  
  }
  .slider-items .slide.active img{
  animation: scale 5s;
  animation-fill-mode:forwards;
  
  }
  .slide.active .text{
  position: absolute;
  /* animation: slide_text 10s;
  animation-fill-mode:forwards; */
  z-index: 10;
  top: 25%;
  width: 40%;
  left: 30%;
  right: 30%;
  word-wrap: break-word;
  text-align: center;
  }
  .slide.active .text h2{
  position: relative;
  font-size: 30px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade 7s;
  animation-delay: 2s;
  animation-fill-mode:forwards;
  padding-right: 20px;
  }
  .slide.active .text h3{
  position: relative;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade 7s;
  animation-delay: 2.5s;
  animation-fill-mode:forwards;
  line-height: 40px;
  }
  .slide.active .text p{
  position: relative;
  color: #fff;
  font-weight: normal;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade 7s;
  animation-delay: 3s;
  animation-fill-mode:forwards;
  font-size: 18px;

  
  }
  .slide.active .text h3{
  color: #fff;
  font-weight: normal;
  }
  /* @keyframes slide_text{
  0%{right:-100% }
  25%{right:15% }
  75%{right:15% }
  100%{right:-100% }
  } */
   .bullets{
    position: absolute;
    bottom: 50px;
    left: 12%;
    display: flex;
    gap: 5px;
    display: none;
   }
   .bullets .bullet{
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: #f68c2a;
   }
   .bullets .bullet.active{
    background: #222;
   }
  @keyframes fade{
    0%{opacity: 0;top:-10px}
    20%{opacity: 1;top:0px}
    80%{opacity: 1;top:0px}
    100%{opacity: 0;top:-10}
    }
  @keyframes scale{
  0%{transform:scale(1) }
  50%{transform:scale(1.2) }
  100%{transform:scale(1) }
  }
  .slider-control{
  height:50px;
  z-index: 1;
  }
  .slider-control a{
    background-color: #fe7727;
    border-color: #fe7727;
  }
  #next,#prev{
  color:#fff;
  position: absolute;
  margin: 0;
  font-family: sans-serif;
	cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  display: flex;
  align-items: center;  
  justify-content: center;
  }
   #next i,#prev i{
color: #444;
   }
  #next{
  background: #fff;
  right: 50px;
  left: auto;
  }
  #prev{
  background: #fff;
  left: 50px;
  right: auto;
  }
  .disabled{
  background: #ddd !important;
  cursor:no-drop !important;
  }
  .slider-image{
    position: absolute;
    left: 10%;
    max-height: 70%;
    z-index: 1;
    bottom: 0;
  }
  /*-- end-slider --*/
