@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* profile card */
.elementry-profile_card {
	font-family: 'Poppins', sans-serif;
	background: #d6d3d1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px 30px;
	border-radius: 5px;
}

/* image */
.elementry-profile_card .image {
    all: unset;
	margin: 10px 0;
	height: 120px;
	width: 120px;
	background: #3f3f46;
	padding: 5px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.elementry-profile_card .image img {
	height: 100%;
	width: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
}

/* title */
.elementry-profile_card .title {
    all: unset;
	margin: 10px 0 0;
	color: #3f3f46;
	font-size: 18px;
	font-weight: 600;
}

/* description */
.elementry-profile_card .desc {
    all: unset;
	margin-top: 8px;
	font-size: 16px;
	font-weight: 400;
    line-height: 24px;
}

/* buttons */
.elementry-profile_card .btns {
	margin-top: 20px;
	margin-bottom: 5px;
	display: flex;
	justify-content: space-between;
	width: 100%;
    column-gap: 10px;
}
.elementry-profile_card .btns a {
    all: unset;
    background: #3f3f46;
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border: 2px solid #3f3f46;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.3s linear;
    text-align: center;
}
.elementry-profile_card .btns a:hover {
	color: #fff;
}
.elementry-profile_card .btns a:first-child {
	background: none;
    color: #3f3f46;
}
.elementry-profile_card .btns a:first-child:hover {
	background: #3f3f46;
	color: #fff;
}