@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'montserrat', sans-serif;
}

/* body{
	background: seagreen;
} */

.carousel {
	height: 100vh;
	padding: 0 5%;	
	background-color: #51a76e;
	
}


.list-img .item {
	position: relative;
	width: 100%;
	/* height: 100%;	 */
	background-color: #080755;		
	transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	visibility: hidden;
	transition: all;
}

@keyframes slidein2 {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

@keyframes slidein {
	0%{
		opacity: 0;
	}40%{
		opacity: .6;
	}70%{
		opacity: 1;
	}
}


.item img {
	position: absolute;
	right: 0;
	height: 100%;
	background-color: transparent;
	pointer-events: none;
	filter : drop-shadow(0 0 10px rgba(0,0,0,.5));	
}

.img_slide {
	animation: 1s slidein;
}

.navigation {
	position: absolute;
	bottom: 7%;
	left: 50%;
	transform: translateX(-50%);
}

.navigation span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	margin: 0 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	font-size: 50px;
	color: #fff;
}