@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #585c68;
    font-size: 14px;
    line-height: 22px;
    color: #555555;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 800px;
    height: auto;
    display: flex;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.container .box-left {
    width: 280px;
    background-color: #2f60b3;
}

.container .box-left .profile {
    width: 100%;
    height: 280px;
    background-color: #88b0d1;
}

.container .box-left .profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .box-left .content {
    padding: 0 25px;
}

.container .resume-item {
    padding: 25px 0;
    border-bottom: 2px solid #000000;
}

.container .title {
    margin-bottom: 20px;
}

.container .box-left .bold {
    color: #ffffff;
}

.container .box-left .regular {
    color: #d9e1e4;
    font-size: 14px;
    margin-top: 5px;
}

.bold {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.container .box-left ul li {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.container .box-left ul li:last-child {
    margin-bottom: 0;
}

.container .box-left ul li .icon {
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    color: #353e4e;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .box-left ul li .data {
    color: #ffffff;
    font-size: 13px;
}

.container .box-right {
    width: 520px;
    background-color: #e3ebf4;
    padding: 40px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333e51;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #333e51;
}

.about p {
    margin-bottom: 15px;
    text-align: justify;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.skill-item {
    width: 100%;
    margin-bottom: 15px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #d9e1e4;
    font-size: 13px;
}

.skill-bar {
    height: 6px;
    background-color: #2a3342;
    border-radius: 3px;
    overflow: hidden;
}

.skill-per {
    height: 100%;
    background-color: #ffffff;
    border-radius: 3px;
}

/*syling bagian eksperien */
.experience-list {
    position: relative;
    padding-left: 20px;
}

.experience-list:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #5469ac;
}

.experience-item {
    position: relative;
    margin-bottom: 25px;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.exp-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.exp-date {
    font-size: 13px;
    font-weight: 600;
    color: #333e51;
    background-color: #5469ac69;
    padding: 3px 8px;
    border-radius: 4px;
}

.exp-bullet {
    color: #333e51;
    font-size: 20px;
    margin-left: 10px;
}

.exp-content {
    padding-left: 0;
}

.exp-title {
    font-size: 16px;
    font-weight: 700;
    color: #333e51;
    margin-bottom: 5px;
}

.exp-company {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

.exp-description {
    font-size: 13px;
    text-align: justify;
    color: #555;
}

/* styling bagian edukasi */
.education-list {
    position: relative;
    padding-left: 20px;
}

.education-list:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #5469ac;
}

.education-item {
    position: relative;
    margin-bottom: 25px;
}

.edu-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.edu-date {
    font-size: 13px;
    font-weight: 600;
    color: #333e51;
    background-color: #5469ac69;
    padding: 3px 8px;
    border-radius: 4px;
}

.edu-bullet {
    color: #333e51;
    font-size: 20px;
    margin-left: 10px;
}

.edu-content {
    padding-left: 0;
}

.edu-title {
    font-size: 16px;
    font-weight: 700;
    color: #333e51;
    margin-bottom: 5px;
}

.edu-institution {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
}

.edu-description {
    font-size: 13px;
    text-align: justify;
    color: #555;
}

/* bagian responsive design */
@media (max-width: 850px) {
    .container {
        width: 95%;
        flex-direction: column;
    }
    
    .container .box-left,
    .container .box-right {
        width: 100%;
    }
    
    .container .box-left .profile {
        height: 250px;
    }
    
    .experience-list:before,
    .education-list:before {
        display: none;
    }
    
    .experience-list,
    .education-list {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 20px auto;
    }
    
    .container .box-right {
        padding: 20px;
    }
    
    .container .box-left .content {
        padding: 0 15px;
    }
    
    .exp-header,
    .edu-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .exp-bullet,
    .edu-bullet {
        margin-left: 0;
        margin-top: 5px;
    }
}