

#slider-main{
    width: 100%;
    overflow: hidden;
	position:absolute;
	height: auto;
	
	
}
.img-slide{
    width: 100%;
    height: auto; /*100vh;*/
	/*min-width:700px;*/
	
    z-index: 5;
    overflow-y: hidden;
	
	
	
	
}




#prev{
    z-index: 10;
    color: #000;
    position: absolute;
    background: transparent;
    border: none;
    margin-top: 40vh;
    margin-left: 3%;
    font-size: 0px !important;
}
#next{
    color: #000;
    position: absolute;
    z-index: 100;
    background: transparent;
    border: none;
    margin-top: -60vh;
    margin-left: 93.5%;
    font-size: 0px !important;
	
	
	
	
}
.circle{
	visibility:hidden;
    border: #ccc 3px solid;
    width: 0px;
    height: 0px;
    border-radius: 0px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
}
#circles{
    margin-top: -15vh;
    margin-left: 48.6%;
    position: absolute;
    z-index: 9000;
}
.image-animated{
    animation: animateImage 25s ease-in-out; /* change time according to interval set */
}


@keyframes fade {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@keyframes BlissFadeInOut {
  0% {
  opacity:0.5;
}
45% {
opacity:1;
}
55% {
opacity:0.5;
}
100% {
opacity:0.5;
}
}


@keyframes animateImage {
    /*0%{
        opacity: .95;
        transform: scale(1.2,1.2);
    }
    20%{
        opacity: 1;
        transform: scale(1,1);
    }
    80%{
        opacity: 1;
        transform: scale(1,1);
    }
    95%{
        opacity: .95;
        transform: scale(1.2,1.2);
    }
    100%{
        opacity: .95;
        transform: scale(1.2,1.2);
    }*/
	0%{
        /*opacity: .95;*/
        transform: scale(1,1);
    }
	70%{
        /*opacity: 1;*/
        transform: scale(1.2,1.2);
    }
   
    100%{
        /*opacity: .95;*/
        transform: scale(1,1);
}

@media (max-width: 767px) {
    .img-slide{
        height: 40vh;
    }
    #prev{
        font-size: 0px !important;
        margin-top: 12vh;
        margin-left: 0.5%;
    }
    #next{
        font-size: 0px !important;
        margin-top: -28vh;
        margin-left: 88%;
    }
    .circle{
        width: 0px;
        height: 0px;
        border-radius: 0px;
    }
    #circles{
        margin-top: -10vh;
        margin-left: 36%;
    }
}
