.slider-area{
    /*width:100%;
	 height: 500px;
    float:left;*/
    display:block;
    width:100%;
	height:600px;
    border-bottom: 1px solid #d9d9d9;
    overflow:hidden;
	position: absolute;
}

.slider-area img{
    width:100%;
	object-fit: cover;
}
.slider-area .carousel-control {
    width: auto;
    height: auto;
    background-image: none;
    top: 45%;
}
.slider-area .carousel-control i{
    font-size:14px;
    color:#fff;
    width:30px;
    height:50px;
    line-height:50px;
    background:#000;
    text-align:center;
}
.slider-area .carousel-control i:hover{
    color:#E5C787;
}

@media  (max-width: 640px) {
 .carousel-text {
	position: absolute;
	z-index: 999;
	color: white;
	font-size: 1em !important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: yellowgreen;
	}
}

@media  (max-width: 300px) {
 	.carousel-text {
		position: absolute;
		z-index: 999;
		color: white;
		font-size: 1em !important;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: yellowgreen;
	}
}

.carousel-text {
	position: absolute;
	z-index: 999;
	color: white;
	font-size: 2em;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: yellowgreen;
	font-family: Segoe UI Black Italic;
}
	
/* Fading animation */
.fade {
  animation-name: fadeIN;
  animation-duration: 1.5s ease;
}

/*----------Zoom Slide-Start----------*/

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .item img{
  -webkit-animation: zoom 5s;
  animation: zoom 5s;	
  height:600px;
  padding:0;
  width:100%;
}
@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes animationFade {
  0% {
    transform: scale(1);
  }
  
  10% {
    transform: scale(1.05);
  }
  
  20% {
      transform: scale(1.1);
  }
  
   30% {
      transform: scale(1.15);
  }
  
  40% {
    transform: scale(1.2);
  }
  
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  
  90% {
    transform: scale(1);
  }
  
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes animationFade2 {
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
  
  50% {
    transform: scale(1.2);
  }
  
  60% {
    transform: scale(1.15);
  }
  
  70% {
      transform: scale(1.1);
  }
  
  80% {
      transform: scale(1.05);
  }
  
  90% {
    transform: scale(1);
  }
  
  100% {
    transform: scale(1);
  }
}

/*
.carousel-inner .item  {
    height: 100%;
    position: relative;
    z-index: 1;
    
    img {
      width: 100%;
      transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
      transform: scale(1.2);
    }
    
    &.carousel-inner img {
      transform: scale(1);
    }
*/

