/* tambahan EKOOOOOOO */

.body_card_hover
{
	display: flex;
	justify-content: center;
	align-items: center;
	/* min-height: 50px; */
	background: #ebf5fc;
}
.container_card_hover
{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	flex-wrap: wrap;
}
.card_hover
{
	position: relative;
	width: 320px;
	box-shadow: inset 5px 5px 5px rgba(0,0,0,0.05), inset -5px -5px 5px rgba(255,255,255,0.5), 5px 5px 5px rgba(0,0,0,0.05), -5px -5px 5px rgba(255,255,255,0.5);
	/* border-radius: 15px; */
	/* margin: 30px; */
}
.box_card_hover
{
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	background: #ebf5fc;
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	/* border-radius: 15px; */
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	overflow: auto;
}
.card_hover:hover .box_card_hover
{
	transform: translateY(-50px);
	box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.content_card_hover
{
	padding: 20px;
	text-align: center;
}
.judul
{
	/* font-size: 1.7em; */
	color: #777;
    padding-bottom: 5px;
}

.sosialmed_box
{
    justify-content: center;
	align-items: center;
    flex-direction: column;
    border: 1px solid red;
    display: flex;
}

/* login glass */
.card_box {
	height: 100vh;
	/* border: 1px solid red; */
	display: flex;
	justify-content: center;
	align-items: center;
}
.card_glass
{
    position: relative;
    width: 500px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 25px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.5);
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 auto;
	/* top: 20vh; */
}
/* .card_glass::before
{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #007BFF;
	text-align: center;
} */
.card_footer_glass {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #007BFF;
	margin: auto;
}
.card_footer_glass a {
	color: #ebf5fc;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.card_glass .content
{
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -80px;
    gap: 20px;
}
@media(max-width:670px) {
	.card_box {
		padding: 10px solid blue;
		border: 1px solid red;
		margin: 7px 0;
	}
	.card_glass
	{	
		width: 95vw;
		height: 97vh;
	}
	.card_glass .content
	{  
   		display: table-column;		
	}
	.card_footer_glass a {
		padding: 0 12px;
		font-size: 18px;
		text-align: center;
	}
	.card_glass .content .imgBx
	{
		width: 120px;
		height: 120px;
		margin: 0 auto;
	}
}
.card_glass .content .imgBx
{
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.1);
	transition: 0.5s;
}
.card_glass .content .imgBx:hover
{
    box-shadow: 0 0 0 10px rgba(255,255,255,0.1), 2px 2px 2px 20px rgba(239, 248, 198, 0.1), 2px 2px 2px 35px rgba(217, 235, 141, 0.1);
}
.card_glass .content .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card_glass .content .details
{
	/* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #111;
}
.card_glass .content .details div
{
    display: flex;
    align-items: center;
    gap: 10px;
}
.card_glass .content .details h3
{
    font-weight: 600;
}
.card_glass .content .details ion-icon
{
    font-size: 1.4em;
}
