*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    color: #333332;
    font-family: Lora, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
}

.skill-set li:hover {
    background: #3498db;
}

h1 {
    color: rgba(0, 0, 0, .75);
}

.wrapper {
    height: 100%;
}

.left {
    background-color: rgba(0, 0, 0, .025);
    border-right: 1px solid rgba(0, 0, 0, .05);
    float: right;
    height: 100%;
    margin-left: -1px;
    min-width: 256px;
    position: fixed;
    width: 33.33%;

}

.right {
    float: right;
    height: 100%;
    position: relative;
    width: 66.66%;
}


.name-hero {
    background: rgba(0, 0, 0, .001);
    bottom: 0;
    height: 290px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
}

.me-img {
    background: url(https://media-exp1.licdn.com/dms/image/C4E03AQGnLq_IB_mf8Q/profile-displayphoto-shrink_400_400/0/1631022739752?e=1648684800&v=beta&t=eICUjHeH_g9GQEItmEMK1j2gCADwqfjrlccSD_5za58) no-repeat center center;
    background-size: 100%;
    background-position: 0px;
    border-radius: 100%;
    height: 150px;
    margin: 0 auto;
    position: relative;
    width: 150px;
}

.profile-img {
    margin: 0 auto 20px;
    position: relative;
    width: 200px;
    height: 200px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.name-hero h1 {
    font-family: Open Sans, sans-serif;
    font-size: 1.5em;
    text-align: center;
}

.name-hero h1 em {
    color: rgba(0, 0, 0, .3);
    font-style: normal;
    font-weight: 700;
}

.name-hero p {
    color: rgba(0, 0, 0, .75);
    font-size: .75em;
    line-height: 1.5;
    margin: 0 8px 0 0;
    text-align: center;
}

.name-hero .name-text {
    margin: 0 auto;
    width: 85%;
}

.inner {
    margin: 0 auto;
    max-width: 975px;
    padding: 3em;
}

.inner h1 {
    font-size: 1.75em;
}

.inner p {
    color: rgba(0, 0, 0, .5);
}

.inner p em {
    color: rgba(0, 0, 0, 1);
    font-style: normal;
}

.inner section {
    margin: 70px auto;
}

.company-header {
    color: rgba(0, 0, 0, .85) !important;
    font-weight: 600;
    margin-top: 1.5em;
}

.company-header .date-range {
    color: #3498db;
    font-weight: 700;
}

.company-header .separator {
    color: rgba(0, 0, 0, .3);
    font-weight: 400;
}

.company-header .company {
    color: #2671a3;
    font-weight: 700;
}

.company-header .title {
    color: #1c557b;
    font-weight: 600;
}

ul {
    list-style-type: disc;
    margin-top: -10px;
    max-width: 100%;
    padding-left: 40px;
}

ul li {
    display: list-item;
    list-style-type: disc;
    list-style-position: outside;
    margin: 8px 0;
    line-height: 1.5;
    color: rgba(0, 0, 0, .5);
}

.skill-set {
    list-style-type: none;
    padding: 0;
}

.skill-set li {
    background: rgba(0, 0, 0, .15);
    border-radius: 5px;
    color: #333;
    display: inline-block;
    list-style: none;
    margin: 5px 5px 0 0;
    padding: 5px;
    text-align: justify;
}

@media screen and (max-width: 48em) {

    .right,
    .left {
        float: none;
        position: relative !important;
        width: 100%;
        min-height: 500px;
    }

    .handmade {
        text-align: center !important;
        margin-top: 0px !important;
    }

    @media screen and (max-width: 75em) {
        body {
            font-size: 16px;
        }
    }

    @media screen and (max-width: 60em) {
        body {
            font-size: 14px;
        }
    }

    .clearfix:after {
        content: " ";
        /* Older browser do not support empty content */
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    .handmade {
        text-align: right;
        margin-top: 100px;
    }

    .handmade em {
        font-family: 'Shadows Into Light', cursive;
        font-size: 1.25em;
        margin-left: 5px;
    }
}
/* P
roject expandable sections */
.project-item {
    margin-bottom: 15px;
}

.project-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
}

.project-header::after {
    content: "Click to expand";
    margin-left: 10px;
    font-size: 12px;
    color: #3498db;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-weight: normal;
}

.project-header.expanded::after {
    content: "Click to collapse";
}

.project-header:hover::after {
    opacity: 1;
}

.project-header:hover {
    color: #3498db;
}

.project-header:hover .project-icon {
    color: #3498db;
}

.project-icon {
    font-size: 14px;
    transition: transform 0.3s ease, color 0.2s ease;
    color: #3498db;
    flex-shrink: 0;
}

.project-icon.rotated {
    transform: rotate(90deg);
}

.project-summary {
    margin: 5px 0 5px 20px;
    color: #555;
}

.project-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 20px;
}

.project-details.expanded {
    max-height: 1000px;
}

.project-details ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 40px;
    max-width: 100%;
}

.project-details li {
    display: list-item;
    margin: 8px 0;
    line-height: 1.5;
    color: rgba(0, 0, 0, .5);
    background: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
}

/* Skills categories */
.skills-category {
    margin-bottom: 20px;
}

.skills-category-title {
    color: rgba(0, 0, 0, .75);
    margin-bottom: 5px;
    font-size: 0.95em;
}
