@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: "Monserrat", sans-serif;
}

body {
    background-color: #585c68;
    font-size: 14px;
    line-height: 22px;
    color: #555555;
}

.container {
    width: 880px;
    height: auto;
    display: flex;
    margin: 50px auto;
}

.container .box-left {
    width: 280px;
    background-color: #333e51;

}

.container .box-left .profile {
    width: 100%;
    height: 280px;
    background-color: #7a1e1e;
}

.container .box-left .profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.container .box-left .content {
    padding: 0 25px;
}

.container .resume-item {
    padding: 25px 0;
    border-bottom: 2px solid #333e515e;
}

.container .resume-item .lang{
    padding: 0 25px;
    color: #fff;
    border-bottom: 2px solid #fafcff5e;
}

.container .title {
    margin-bottom: 20px;
}

.container .box-left .bold {
    color: #fff;
}

.container .box-left .regular {
    color: #d9e1e4;
}

.bold {
    font-weight: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.container .box-left ul li {
    display: flex;
    margin-bottom: 10px;
    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: #fff;
    color: #353e4e;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 16px;
    position: relative;
}

.container .box-left ul li .data {
    color: #d9e1e4;
}

.container .box-left .resume-skills ul li {
    display: flex;
    margin-bottom: 10px;
    color: #d9e1E4;
    justify-content: space-between;
    align-items: center;
}

.container .box-left .resume-skills ul li .skill-name {
    width: 25%;
}

.container .box-left .resume-skills ul li .skill-progress {
    width: 60%;
    margin: 0 5px;
    height: 5px;
    background-color: #ff5c5c;
    position: relative;
}

.container .box-left .resume-skills ul li .skill-progress span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
}

.container .box-left .resume-skills ul li .skill-percent {
    width: 15%;
}

.container .box-left .resume-socials .semi-bold {
    color: #fff;
    margin-bottom: 3px;
}

.semi-bold {
    font-weight: 500;
    font-size: 16px;
}

/* right design */

.container .box-right {
    width: 520px;
    background-color: #fff;
    padding: 25px;
}

.container .box-left .resume-item:last-child,
.container .box-right .resume-item:last-child {
    border-bottom: 0px;
}

.container .box-right .bold {
    color: #333e51;
}

.container .box-right ul li {
    position: relative;
}

.container .box-right ul li .date {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.container .box-right ul li .info {
    margin-bottom: 20px;
}

.container .box-right ul li:last-child .info {
    margin-bottom: 0;
}

.container .box-right .resume-work ul,
.container .box-right .resume-education ul {
    padding-left: 40px;
    overflow: hidden;
}

.container .box-right .resume-work ul li::before,
.container .box-right .resume-education ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -25px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 2px solid #333e51;
}

.container .box-right .resume-work ul li::after,
.container .box-right .resume-education ul li::after {
    content: "";
    position: absolute;
    background-color: #333e51;
    top: 14px;
    left: -21px;
    width: 2px;
    height: 100%;
}

.container .icon i,
.container .box-right .resume-hobby ul li i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container .box-right .resume-hobby ul {
    display: flex;
    justify-content: space-between;
}

.container .box-right .resume-hobby ul li {
    width: 80px;
    height: 80px;
    border: 2px solid #333e51;
    border-radius: 50%;
    position: relative;
    color: #333e51;
}

.container .box-right .resume-hobby ul li i {
    font-size: 30px;
}

.container .box-right .resume-hobby ul li::before {
    content: "";
    position: absolute;
    top: 40px;
    right: -52px;
    width: 50px;
    background-color: #333e51;
    height: 2px;
}

.container .resume-hobby ul li:last-child::before {
    display: none;
}

a:link {
    text-decoration: none;
    color:white;
}

a:visited {
    text-decoration: none;
    color:white;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
    color:white;
}