* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #f4f4f4;
}

img {
    width: 100%;
}

.title {
    width: 100%;
    font-weight: bold;
    height: 45px;
    display: flex;
    align-items: center;
}

.title h3 {
    margin: 0 5px;
}

.title span {
    display: inline-block;
    width: 50px;
    height: 4px;
    background-color: #017b63;
    border-radius: 10px;
}

/* Header */
header {
    display: flex;
    padding: 10px;
    align-items: center;
}

header .logo {
    width: 15%;
    margin-right: 20px;
}

header .name a {
    color: #000;
    text-decoration: none;
}

/* Header End */

/* Navigasi */
nav {
    background-color: #017b63;
    width: 100%;
    padding: 20px;
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 20px 25px;
    font-weight: bold;
}

nav ul .active {
    background-color: #06a182;
}

nav ul li a:hover {
    background-color: #06a182;
}

/* Navigasi End */



/* Main  */
/* Left Content  */
main {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

main .leftContent {
    padding: 20px;
    width: 70%;
}

main .leftContent .bigProfile {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

main .leftContent .bigProfile::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 2px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

main .leftContent .titleBigProfile {
    width: 100%;
    padding: 20px;
    position: absolute;
    bottom: 50px;
    color: #fff;
    z-index: 99;
}

main .disProfile {
    display: flex;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 2px 2px 2px grey;
}

main .gambarProfile {
    width: 40%;
}

main .titleProfile {
    width: 60%;
    padding: 10px;
}

main .leftContent a {
    text-decoration: none;
    color: #000;
}

main .titleProfile span {
    font-size: 0.8em;
    font-style: italic;
}


/* Sidebar  */
main .sidebar {
    width: 30%;
    padding: 20px;
}

main .sidebar .psb {
    width: 100%;
    margin-bottom: 30px;
}

main .side {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

main .side::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

main .side .titleSide {
    color: #fff;
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}

main .side .titleSide span {
    font-size: 0.7em;
    font-style: italic;
}

/* Main End */































/* Footer  */
footer {
    width: 100%;
    background-color: rgb(109, 108, 108);
    padding: 20px;
    height: 100px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    margin-top: 50px;
    position: relative;
}

footer .up {
    background-color: #06a182;
    color: #fff;
    padding: 10px;
    position: absolute;
    right: 5px;
    top: 0;
}

/* Footer End */