.user_profile{
    position: relative;
    text-align: center;
}
.user_profile_bg{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    width: 100%;
    height: 18rem;
    z-index: -10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.user_profile_bg > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.user_profile-detials{
    padding-top: 12rem;
}
.user_profile-img{
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    padding: 0.2rem;
    background-color: #e74c3c;
    border-radius: 50%;
}
.user_profile-name{
    margin: 0.5rem 0;
    font-size: 2.3rem;
}
.user_profile-about{
    font-size: 1.3rem;
    width: 50%;
    margin: auto;
}
.user_profile-socialMedia{
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.user_profile-socialMedia > i{
    font-size: 2rem;
    cursor: pointer;
    background: rgb(185, 184, 184);
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 0.6rem 0.8rem;
    border-radius: 20%;
}
.user_profile-socialMedia > i:not(:last-child){margin-right: 2rem;}

.user_profile-status{
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}
.user_profile-status a{
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
    padding: 0 3rem;
}
.user_profile-status i{
    margin-right: 0.7rem;
    color: #3d3d3d;
}
.user_profile-status a:not(:last-child){
    border-right: 1px solid #3d3d3d;}
.user_profile-status span{
    display: block;
}
.user_profile-contactInfo{
    margin: 2rem 0;
}
.user_profile-contactInfo > span{
    font-size: 1.3rem;
}
.user_profile-contactInfo > span > i{
    color: #3d3d3d;
    margin-right: 1rem;
}  


/* User Profile Tab */
.user_profile_container--tabs {
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.user_profile_container--tabs .nav-tabs { 
    display: flex;
    justify-content: center;
    list-style-type: none;
    position: relative;
}
.user_profile_container--tabs .nav-tabs > li:not(:last-child){margin-right: 2rem;}

.user_profile_container--tabs .nav-tabs > li > a {
  text-decoration: none;
  color: #000;  
  padding: 1rem;
  font-size: 1.5rem;
  border: 1px solid transparent;
  border-radius: 12px;
}
.user_profile_container--tabs .nav-tabs > a{
    position: absolute;
    top: 50%;
    left: 5rem;
    text-decoration: none;
    color: #000;
    font-size: 1.4rem;
    display: block;
    margin-right: 1rem;
}
.user_profile_container--tabs .nav-tabs > a:hover{
    text-decoration: underline;
}
.user_profile_container--tabs .nav-tabs > a > span{
    margin-left: 1rem;
}
.user_profile_container--tabs .nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.user_profile_container--tabs .nav-tabs > li.active > a,
.user_profile_container--tabs .nav-tabs > li.active > a:hover,
.user_profile_container--tabs .nav-tabs > li.active > a:focus {
  color: white;
  cursor: default;
  background-color: #e74c3c;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.user_profile_container--tabs .tab-content {
  float: left;
  width: 100%;
}
.user_profile_container--tabs .tab-content > .tab-pane {
  display: none;
}
.user_profile_container--tabs .tab-content > .tab-pane.active {
  display: block;
}
.user_profile_container--tabs .tab-content > .active {
  display: block;
}