:root {
    --chinese-violet: #685572;
    /* --midnight-green: #02373A; */
    --slate-gray: #5E7B88;
    --dark-slate-gray: #345761;
    /* --midnight-green: #5E7B88;
    --slate-gray: #02373A; */
    --columbian-blue: #C0D2D8;
    --violet: #3E205B;
    --new-blue: #21607C;
}
.work-section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    width: 70vw;
    margin: auto;
    height: 75vh;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .work-section {
        max-width: 100vw;
        width: 100vh;
        min-height: 100vh;
    }
    .about-me {
        width: 100vw;
    }
}

.work-section .tab-col {
    display: flex;
    flex-direction: column;
    /* justify-content: space-evenly; */
    background-color: var(--new-blue);
    color: var(--columbian-blue);
    width: 28%;
    /* height: 100%; */
}

.work-section .tab-col div {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
}

.work-section .tab-col .active {
    /* background-color: #000; */
    /* border: 3px solid var(--tekhelet); */
    
    color: #fff;
    /* animate next line */

    /* rewrite next line and add an opaque outline */
    background: linear-gradient(90deg, black 0%, var(--new-blue) 100%);
}


.work-section .info-col {
    display: flex;
    flex-direction: column;
    justify-content: start;
    /* height: 100%; */
    width: 100%;
    overflow-y: auto;
    background: var(--new-blue);
    color: white;
    padding: 0 8px;
}

.work-section .info-col .hidden {
    display: none;
}

.work-section .info-col .active {
    display: block;
}

.work-section .info-col .active .card {
    /* background-color: var(--midnight-green); */
    color: white;
    padding: 8px;
    margin: 8px 0;
    max-width: 70%;
    /* border-radius: 8px; */
    /* border-bottom: 3px dashed var(--tekhelet);  */
}

.work-section .info-col .card img {
    max-width: 100%;
}

.work-section .info-col .active .card h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.work-section .info-col .active .card h3 span {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
}

.work-section .info-col .active .card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
}