.slidercontainer{
	position: relative;

}
.wrapper{
	position: relative;
	display: flex;
	height: 50vh;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}
.label{
	position: relative;
	height: 35px;
	line-height:32px;
	width: 100%;
	top: 80%;
	text-align: center;
	overflow: hidden;
	font-family:"Montserrat", sans-serif
}
.label p{
	position: relative;
	font-size: 0.75rem;
	font-weight: 500;
	color: #000;
}
.itempanel{
	position: absolute;
	height: 1200px;
	width: 1200px;
	border-radius: 50%;
	top: 30%;
	/*border: 3px solid #eaedf4; */
	border:none;
	transition: 0.5s ease-in;

}
.itembox{
	position: absolute;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 115%;
	top: 50%;
	left: 50%;
   transform: translate(-50%,-50%) rotate(calc(var(--i)*-36deg));

}
.itembox a{
	position: relative;
	height: 15em;
	width: 15em;
	border-radius: 50%;
	line-height: 13em;
	text-align: center;
}
.itembox a i{
	position: absolute;
	font-size: 10em;
	color: blue;
	height: 1.5em;
	width: 1.5em;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: auto 0;
	border-radius: 50%;

}

.btn-controls{
	position: absolute;
	display: flex;
	min-height: 8vh;
	width: 100%;
	justify-content: center;
	top: 75%;
	gap: 15em;
}
.btn-controls .btn {
	display: block;
	color: #eaedf4;
	scale: 2;
	height:0;
	&:hover{
		cursor: pointer;
		color: #000;
	}
}
.itemimg{
	width: 100%;
}

.arrow-icon svg {
  width: 12px;
  height: 12px;
  stroke: #eaedf4;        /* Arrow color */
  transition: transform 0.3s ease;
}
