@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body 
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #2f363e;
	gap: 100px;
}
a{
	text-decoration: none;
}
.popup{
	color: #bcbec0;
}
.container 
{
	position: relative;
	min-width: 350px;
	min-height: 500px;
	border-radius: 30px;
	padding: 50px;
	
	background: #2f363e;
	box-shadow: 25px 25px 75px rgba(0,0,0,0.25),
  10px 10px 70px rgba(0,0,0,0.25),
  inset 5px 5px 10px rgba(0,0,0,0.5),
  inset 5px 5px 20px rgba(255,255,255,0.2),
  inset -5px -5px 15px rgba(0,0,0,0.75);
}
.container h3 
{
	color: #dfe0e1;
	font-weight: 700;
	font-size: 1.2em;
	margin-bottom: 20px;
}
.container .list 
{
	position: relative;
	display: flex;
	align-items: center;
	margin: 20px 0;
	cursor: pointer;
	transition: 0.5s;
}
.container .list::before 
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 45px;
	border-radius: 22.5px;
	background: #1f83f2;
	box-shadow: 5px 5px 7px rgba(0,0,0,0.25),
  inset 2px 2px 5px rgba(255,255,255,0.25),
  inset -3px -3px 5px rgba(0,0,0,0.5);
	transition: 0.5s;
}
.container .list:hover::before 
{
	width: 100%;
}
.container .list:last-child 
{
	margin-bottom: 0;
}
.container .list .rank 
{
	position: relative;
	min-width: 45px;
	height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 10px;
}
.container .list .rank::before 
{
	content: '';
	position: absolute;
	top: 7.5px;
	left: 7.5px;
	width: 30px;
	height: 30px;
	background: #2f363e;
	border-radius: 35px;
	transform: scale(0);
	transition: 0.5s;
}
.container .list:hover .rank::before 
{
	transform: scale(1);
}
.container .list .rank span 
{
	position: relative;
	color: #fff;
	font-weight: 600;
	font-size: 1em;
	transition: 0.5s;
}
.container .list:hover .rank span 
{
	color: #fff;
}
.container .list .creator 
{
	position: relative;
	line-height: 1.15em;
}
.container .list .creator h4 
{
	font-weight: 600;
	color: #bcbec0;
	transition: 0.5s;
}
.container .list .creator p 
{
	font-weight: 400;
	font-size: 0.85em;
	color: #95999d;
	transition: 0.5s;
}

.container .list:hover .creator h4, 
.container .list:hover .creator p 
{
	color: #fff;
}
.contact-us{
	position: absolute;
	bottom : 10%;
	left:5%;
}
.more-projects{
	position: absolute;
	bottom : 25%;
	left:5%;
}