.contentArea{
    padding-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.profileFrame{
    width: 80%;
    height: auto;
    background-color: rgb(248, 246, 246);
    margin-bottom: 40px;
    /* box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0, 0.19); */
    box-sizing: border-box;
    padding: 5px 10px 5px 40px;
    display: flex;
    justify-content: space-between;
    
}

.profile-picture-frame{
    width: 230px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.profile-pic{
    width: 100%;
    height: 83%;
    
}
.profile-pic img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0, 0.19);
}
.name-frame{
    width: 100%;
    height: 15%;
    border-radius: 5px;
    margin-top: 2%;
    background-color: darkblue
}

.managementMainPageTitle{
	width: 95%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-align: center;
	font-size: 12px;
	color:#FFFFFF;
}
.managementMainPageName{
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	color:#FFFFFF;
}

.profile-detail-frame{
    width: 75%;
    height: 100%;
    box-sizing: border-box;
}

.profile-detail-frame ul{
    padding: 5px 20px;
    margin-left: 70px;
}

.profile-detail-frame ul li{
    height: 50px;
    font-size: 20px;
}

.managementProfileTitle{
	width: 100%; 
	height: auto; 
	text-align: left; 
	font-size: 30px; 
	font-weight: bold; 
	color:#030572;
	font-family: "Algerian", Monaco, monospace;
	margin-top: 5px;
	padding-top: 0;
	padding-bottom: 0;
}
.managementProfileSubTitle{
	width: 100%; 
	height: auto; 
	text-align: left; 
	font-size: 20px; 
	font-weight: bold; 
	color:#030572;
	font-family: "Arial Black", Monaco, monospace;
}

.profile-text2{
    font-size: 18px;
    line-height: 22px;
    padding-right: 20px;
}
.profile-text3{
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    padding-right: 20px;
    padding-left: 100px;
}



@media only screen and (max-width:600px){
    .middleSection2{
        margin-top: 100px;
    }  
    .profileFrame{
        width: 90%;
        height: auto;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        padding: 0px;
    }
    .contentArea{
        padding-top: 10px;
    }
    .profile-detail-frame{
        width: 100%;
        height: auto;
    }

    .profile-detail-frame ul{
        padding: 5px 10px;
        margin-left: 30px;
    }
    
    .profile-detail-frame ul li{
        height: auto;
        font-size: 15px;
    }


    .profile-picture-frame{
        width: 90%;
        margin-top: 20px;
    }
    .name-frame{
        width: 100%;
        height: 15%;
    }
    
    .profile-text3{
        width: 90%;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 20px;
    }
    
}