

.discovery
{
	position: relative;
	width: 400px;
	height: 400px;
	border: 2px solid #fff;
	border-radius: 50%;
	left:32px;
	bottom: 20px;
}

.discovery .icon
{
	position:relative;
	left: -50%;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.discovery .icon .imgbx
{
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	transition: 0.5s;
	border: 1px solid #FF7350;
	box-shadow: 0 0 0 4px #125875, 0 0 0 6px #fff;
	transform: rotate(calc(360deg/6 * var(--i)));
	transform-origin: 235px;
	z-index: 100;
	overflow: hidden;
}

.discovery .icon .imgbx.active
{
	box-shadow: 0 0 0 4px #222, 0 0 0 12px #FF7350;
}

.discovery .icon .imgbx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: rotate(calc(-360deg/6 * var(--i)));
}

.discovery .icon .imgbx.active img
{
	filter: grayscale(0);
}

.content
{
	position: absolute;
	inset: 0;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.content::before
{
	content: '';
	position: absolute;
	inset: 55px;
	border: 4px solid transparent;
	border-left: 4px solid #2196f3;
	border-right: 4px solid #fff;
	border-radius: 50%;
	animation: animate_01 5s linear infinite;
	z=index:1;
}
@keyframes animate_01
{
	0%{
		rotate: 0deg;
	}
	100%{
		rotate: 360deg;
	}
}

.contentbx
{
	position: absolute;
	transform: scale(0);
	transition: 0.5s;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contentbx.active
{
	transform: scale(1);
	opacity: 1;
	transition-delay: 0.5s;
}
.contentbx .card
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 15px;
}

.contentbx .card .imgbx
{
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 10px;
	overflow: hidden;
}

.contentbx .card .imgbx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contentbx .card .textbx
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.contentbx .card .textbx h2
{
	position: relative;
	font-size: 1.25em;
	font-weight: 600;
	background-color: #125875;
	color: #fff;
	line-height: 1em;
	text-transform: uppercase;
	text-align: center;
}

.contentbx .card .textbx h2 span
{
	font-size: 0.65em;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.contentbx .card .textbx .sci
{
	position: relative;
	display: flex;
	gap: 7px;
	margin-top: 10px;
}

.contentbx .card .textbx .sci li
{
	list-style: none;
}

.contentbx .card .textbx .sci li a
{
	position: relative;
	width: 100px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FF7350;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: 0.5s;
}

.contentbx .card .textbx .sci li a: hover
{
	background: #125875;
}