.why-stage {
	position: relative;
	width: 580px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.why-stage__img {
	display: block;
	aspect-ratio: 580 / 544;
	width: 100%;
	height: auto;
}

.why-stage__items {
	position: absolute;
	z-index: 2;
	inset: 0;
}

.why-stage__item {
	position: absolute;
	width: 16px;
	height: 16px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	translate: -50% -50%;
}

.why-stage__item.active .why-stage__item__pop {
	translate: 0 0;
	opacity: 1;
	scale: 1;
}

.why-stage__item.active figure:before,
.why-stage__item.active figure:after {
	animation: none;
}

.why-stage__item figure {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #FFF;
	border: 4px solid var(--bs-orange, #fc6a28);
	pointer-events: none;
}

.why-stage__item figure:before,
.why-stage__item figure:after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 0 4px var(--bs-orange, #fc6a28);
	border-radius: 50%;
	z-index: -1;
	animation: whyDotsAnim 1s ease infinite;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}

.why-stage__item figure:after {
	animation-delay: 0.3s;
}

@keyframes whyDotsAnim {
	from {
		scale: 1;
		opacity: 1;
	}

	to {
		scale: 3;
		opacity: 0;
	}
}

.why-stage__item__pop {
	position: absolute;
	background: #FFF;
	border-radius: 8px;
	padding: 10px 20px;
	box-shadow: 0 7px 30px 5px rgba(0, 0, 0, 0.2);
	width: fit-content;
	text-align: left;
	pointer-events: none;
	transition: all 0.3s ease;
	opacity: 0;
	scale: 0.9;
}

.why-stage__item__pop strong {
	display: block;
	font-size: 18px;
	color: var(--bs-orange, #fc6a28);
	line-height: 1;
	font-weight: bold;
	margin-bottom: 0.2em;
	white-space: nowrap;
}

.why-stage__item__pop small {
	display: block;
	color: #858785;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
}

.why-stage__item__pop--top-right {
	bottom: 8px;
	left: 8px;
	transform-origin: left bottom;
}

.why-stage__item__pop--top-left {
	bottom: 8px;
	right: 8px;
	transform-origin: right bottom;
}

.why-stage__item__pop--bottom-right {
	top: 8px;
	left: 8px;
	transform-origin: left top;
}

.why-stage__item__pop--bottom-left {
	top: 8px;
	right: 8px;
	transform-origin: right top;
}


.why-stage__item:nth-child(1) {
	top: 24%;
	left: 52%;
}

.why-stage__item:nth-child(2) {
	top: 40%;
	left: 35%;
}

.why-stage__item:nth-child(3) {
	top: 57%;
	left: 9%;
}

.why-stage__item:nth-child(4) {
	top: 59%;
	left: 89%;
}

.why-stage__item:nth-child(5) {
	top: 91%;
	left: 42%;
}

.why-stage__item:nth-child(6) {
	top: 85%;
	left: 84%;
}

@media (width<500px) {
	.why-stage__item:nth-child(1) .why-stage__item__pop {
		left: -40px;
	}

	.why-stage__item:nth-child(5) .why-stage__item__pop {
		right: -40px;
	}
}



/* gls-can */
.gls-can {}

.gls-can__img {
	width: 160px;
	height: auto;
	aspect-ratio: 1 / 1;
}

@media (width<500px) {
	.gls-can__img {
		width: 100px;
	}

}

/* gls-can */


/* s-use-spheres */
.use-spheres-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
}

.use-sphere {
	display: flex;
	gap: 0;
	background: var(--bs-orange);
	color: #FFF;
	border-radius: var(--bs-border-radius-xl);
}

.use-sphere:nth-last-child(2),
.use-sphere:nth-last-child(4) {
	background: var(--bs-primary);
}

.use-sphere:nth-last-child(3) {
	grid-row: span 2;
	background: #FFF;
	color: var(--bs-dark);
	flex-direction: column;
}

.use-sphere:nth-last-child(3) .use-sphere__img {
	aspect-ratio: 1035 / 470;
	width: 100%;
}

.use-sphere__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	padding: 24px;
	flex: 1;
}

.use-sphere__descr {
	font-size: 16px;
}

.use-sphere__img {
	display: block;
	object-fit: contain;
	width: 220px;
	max-width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
}

@media (width<1200px) {
	.use-spheres-grid {
		gap: 1rem;
		grid-template-columns: 1fr 1fr;
	}

	.use-sphere {
		flex-direction: column;
	}

	.use-sphere:nth-last-child(3) {
		grid-row: span 1;
	}

	.use-sphere:nth-last-child(3) .use-sphere__img {
		height: 100px;
	}

	.use-sphere__content {
		justify-content: flex-start;
		padding-bottom: 0;
	}

	.use-sphere__img {
		width: 120px;
		height: 120px;
		margin-left: auto;
		margin-right: auto;
	}

	.use-sphere__descr {
		font-size: 14px;
	}
}

@media (width<500px) {
	.use-spheres-grid {
		grid-template-columns: 1fr;
	}

	.use-sphere__content {
		padding: 15px;
		padding-bottom: 0;
	}
}

/* s-use-spheres */