.profile-card {
    background-color: white;
    margin-bottom: 10px;
    border-radius: 3%
}

.profile-pic {
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    max-width: 110px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}


.profile-info {
    color: #BDBDBD;
    padding: 30px;
    position: relative;
    margin-top: 15px;
}

.profile-info h5 {
    color: #1A374D;
    letter-spacing: 4px;
    padding-bottom: 12px;
}

.profile-info span {
    display: block;
    font-size: 15px;
    color: #4CB493;
    letter-spacing: 2px;
}

.profile-info a {
    color: #4CB493;
}

.profile-info i {
    padding: 15px 35px 0px 35px;
}


.profile-card:hover .profile-pic {
    transform: scale(1.1);
}

.profile-card:hover .profile-info hr {
    opacity: 1;
}




/* Underline From Center */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 52%;
    right: 52%;
    bottom: 0;
    background: #FFFFFF;
    border-radius: 50%;
    height: 3px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.profile-card:hover .hvr-underline-from-center:before,
.profile-card:focus .hvr-underline-from-center:before,
.profile-card:active .hvr-underline-from-center:before {
    left: 0;
    right: 0;
    height: 1px;
    background: #CECECE;
    border-radius: 0;
}


.account-settings-fileinput {
    position: absolute;
    visibility: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Tab active */
.nav-link.active {
    color: #fff;
    background-color: transparent;
    transform: translate3d(0px, 0px, 0px);
    box-shadow: 0 1px 5px 1px #ddd;
    background: #fff;
}

/* End if tab active */

/* Circle icon box */
.circle-icon {
    display: inline-block;
    border-radius: 60px;
    padding: 0.5em 0.6em;
}

/* End of circle icon box */