
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container
{
	position: relative;
	width: 600px;
	height: 600px;
	border: 2px solid #fff;
	border-radius: 50%;
}

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


.container .icon .imgBx.active
{
	box-shadow: 0 0 0 4px #222,
	0 0 0 12px #ff1d50;
}

.container .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: 60px;
	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;
	pointer-events: none;
}
@keyframes animate_01 
{
	0%
	{
		rotate: 0deg;
	}
	100%
	{
		rotate: 360deg;
	}
}

.content::after
{
	content: '';
	position: absolute;
	inset: 120px;
	border: 4px solid transparent;
	border-left: 4px solid #ff1d50;
	border-right: 4px solid #fff;
	border-radius: 50%;
	animation: animate_02 2.5s linear infinite;
	z-index: 1;
	pointer-events: none;
}
@keyframes animate_02 
{
	0%
	{
		rotate: 0deg;
	}
	100%
	{
		rotate: 360deg;
	}
}

.contentBx
{
	position: absolute;
	transform: scale(0);
	transition: 0.5s;
	text-align: center;
	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;
}
.content .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;
	color: #fff;
	line-height: 1em;
	text-transform: uppercase;
	text-shadow: 
        1px 1px 2px rgba(0, 0, 0, 0.5),   /* Light shadow */
        2px 2px 4px rgba(0, 0, 0, 0.4),   /* Slightly darker shadow */
        3px 3px 6px rgba(0, 0, 0, 0.3);   /* Darker shadow */
}
.contentBx .card .textBx h2 span
{
	font-size: 0.65em;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.content .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: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #444;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: 0.5s;
}
.contentBx .card .textBx .sci li a:hover 
{
	background: #2196f3;
}