* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s;
}



.card {
    max-width: 250px;
    margin: 140px auto 0;
    background-color: #003040;
    box-shadow: 0 10px 90px #00000024;
    text-align: center;
    font-size: 20px;
    border-radius: 15px;
}

.card p,a {
    font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}
.card p {
	margin-bottom: 10px;
}
.card .card-header {
    position: relative;
    height: 60px;
}


.card .card-header .profile-img {
    width: 160px;
    height: 160px;
    border-radius: 1000px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #1b921f;
    box-shadow: 0 0 20px #00000033;
}

.card .card-header .profile-img:hover {
    width: 180px;
    height: 180px;
    border: 8px solid #1b921f;
}


.card .card-body {
    padding: 10px 10px;
}

.card .card-body .name {
    margin-top: 40px;
    font-size: 13px;
    font-weight: bold;
    color: #71b9fd;
}

.card .card-body .name:hover {
    margin-top: 30px;
    font-size: 18px;
    color: #71b9fd;
}

.card .card-body .mail {
    font-size: 14px;
    color: #c2bdbd;
	font-weight: bold;
}


.card .card-body .job {
    margin-top: 10px;
    font-size: 12px;
	font-weight: bold;
}


.card .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.card .social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #1b921f;
    color: #ffffff;
    font-size: 20px;
    border-radius: 100%;
    text-decoration: none;
    margin: 0 13px 30px 0;
}

.card .social-links .social-icon:last-child {
    margin-right: 0;
}

.card .social-links .social-icon:hover {
    background-color: #1b921f;
    height: 50px;
    width: 50px;
    text-decoration: none;
}


.card .card-footer {
    background-color: #1b921f;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.card .card-footer .count {
    font-size: 14px;
}

.card .job{
	color: #fdfdfd;
}


@media screen and (max-width: 575px) {
    .card {
        width: 96%;
    }

    .card .card-body {
        padding: 10px 20px;
    }
}
