@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 10%;
	overflow: hidden;
}


.carousel .box-info {
	position: absolute;
	top: 50%;
	width: 650px;
	height: 250px;
	transform: translateY(-50%);	
	overflow: hidden;		
}


.box-info .list-info {
	transition: .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.list-info .info {
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	height: 250px;	
}

.info h2 {
	font-size: 50px;
	line-height: 1;
}

.info p {
	font-size: 16px;
	margin: 20px 0;
}

.info .btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 50px;
	background-color: transparent;
	border: 2px solid #fff;
	border-radius: 40px;
	box-shadow:0 0 10px rgba(0, 0, 0, .3);
	text-decoration: none;
	color: #fff;
	font-weight: 600;
}


.carousel .list-img {
	height: 100%;
	transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.list-img .item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}

.item img {
	position: absolute;
	right: 0;
	pointer-events: none;
	filter : drop-shadow(0 0 10px rgba(0,0,0,.5));
}

.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;
}


.bgbox .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bgbox .bg:nth-child(1) {
	background: linear-gradient(360deg, #408e20, #9acd31);
}

.bgbox .bg:nth-child(2) {
	background: linear-gradient(360deg, #550802, #f40401);
}

.bgbox .bg:nth-child(3) {
	background: linear-gradient(360deg, #696901, #ffff03);
}

.bgbox .bg:nth-child(4) {
	background: linear-gradient(360deg, #823043, #fac0cb);
}

.bgbox .bg:nth-child(2),
.bgbox .bg:nth-child(3),
.bgbox .bg:nth-child(4) {
	clip-path: circle(0% at 50% 50%);
}

.bgbox .bg:nth-child(2).active,
.bgbox .bg:nth-child(3).active,
.bgbox .bg:nth-child(4).active {
	clip-path: circle(75% at 50% 50%);
}