/* MAIN */
section#resume {
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 70px;
    padding-top: 40px;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 1100px) {
    section#contact {
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 50px;
    }
}
@media (max-width: 650px) {
    section#contact {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 40px;
    }
}

.resume {
    width: 100%;
    position: relative;
    display: flex;
}
.resume .left {
    position: relative;
    width: 25%;
    display: flex;
    border-right: 5px solid #8d697ab1;
    flex-wrap: wrap;
    max-height: 1108px;
}
.resume .right {
    position: relative;
    width: 75%;
    display: flex;
    padding-left: 30px;
}

/* left - profile */
.resume .left .profile {
    align-content: center;
    text-align: center;
    padding: 30px 0;
    background: #8d697ab1;
    width: 100%;
}
.resume .left .profile img {
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}
.resume .left .profile p {
    font-size: 16px;
    font-weight: 600;
    color: #152842;
}
.resume .left .profile p span {
    font-size: 1.5em;
    font-weight: 800;
    color: #0c1b2f;
}

/* left - generic */
.resume .left .generic {
    padding: 15px;
    width: 100%;
    border-bottom: 3px solid #8d697ab1;
}
.resume .left .generic .line {
    justify-content: space-between;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}
.resume .left .generic .line p span {
    font-weight: 600;
    left: 0;
}

/* left - langs (see other CSS) */
.resume .left .langs {
    padding: 15px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 3px solid #8d697ab1;
    justify-content: space-between;
}

/* left - code-skills */
.resume .left .code-skills {
    padding: 15px;
    width: 100%;
    display: block;
    border-bottom: 3px solid #8d697ab1;
}
.resume .left .code-skills .skill {
    width: 100%;
    padding-bottom: 10px;
}
.resume .left .code-skills .skill .text {
    justify-content: space-between;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.resume .left .code-skills .skill .text p span {
    font-weight: 600;
}

.resume .left .code-skills .skill .progressbar {
    width: 100%;
    background: #ccd1d6;
    height: 8px;
    margin-top: 5px;
}
.resume .left .code-skills .skill .progress-value {
    position: relative;
    display: block;
    height: 100%;
    width: 0%;
    background: #8d697ab1;
}

/* left - other skils */
.resume .left .other-skills {
    padding: 15px;
    width: 100%;
    border-bottom: 3px solid #8d697ab1;
}

.resume .left .other-skills .check-list li {
    position: relative;
    list-style-type: none;
    padding-left: 20px;
    color: #152842;
    font-family: 'Century Gothic';
    font-size: 17px;
    font-weight: 600;
}
.resume .left .other-skills .check-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 11px;
    border-width: 0 3px 3px 0;
    border-style: solid;
    border-color: #8D697A;
    transform-origin: bottom left;
    transform: rotate(45deg);
}

/* left - download */
.resume .left .download {
    padding: 15px;
    width: 100%;
    display: flex;
}
.resume .left .download a {
    text-decoration: none;
    font-weight: 600;
    display: flex;
    font-size: 1.15em;
}
.resume .left .download a p {
    transition: 0.4s;
    padding-top: 0;
}
.resume .left .download a svg {
    margin-left: 10px;
    transition: 0.4s;
    width: 28px;
    height: 28px;
}

.resume .left .download a:hover p {
    color: #8D697A;
}
.resume .left .download a:hover svg {
    fill: #8D697A;
}

/* left - icons */
.resume .left .icons {
    background: #8d697ab1;
    width: 100%;
    padding: 15px;
    gap: 20px;
    display: flex;
    align-items: center;
}

.resume .left .icons svg {
    transition: 0.4s;
}
.resume .left .icons svg:hover {
    transform: translateY(-5px);
}