/* PROJECTS */
.projects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--gray-light);
}
.projects > h1 {
    width: 100%;
    font-size: var(--fs-36);
    font-weight: 600;
    color: var(--blue-accent);
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    max-height: 36px;
    text-align: center;
}
.projects > h1::after {
    content: '';
    background-color: var(--blue-accent);
    width: 50px;
    height: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% + 2px));
    margin-left: 10px;
}
.projects-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--gray-mid);
}
.projects-navigation > a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: var(--blue-dark);
    background-color: var(--gray-light);
    font-size: var(--fs-20);
    font-weight: 300;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.2s, flex 0.5s;
}
.projects-navigation > a:nth-of-type(2) {
    border-left: 1px dotted var(--gray-mid);
    border-right: 1px dotted var(--gray-mid);
}
.projects-navigation > a:hover {
    background-color: var(--gray-mid);
    flex-grow: 2;
}
.projects > .wrapper {
    width: 100%;
    height: 50vmin;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.projects-item {
    position: relative;
    display: flex;
    flex-flow: column;
    flex: 1;
    height: 100%;
    filter:  brightness(0.9);
    object-fit: cover;
    overflow: hidden;
    transition: flex 0.5s, filter 0.5s;
}
.projects-item:hover {
    filter: brightness(1);
    flex: 2;
}
.projects-item:hover > a {
    visibility: visible;
    opacity: 1;
}
.projects:has(.projects-item:nth-child(1):hover) .projects-navigation > a:nth-child(1),
.projects:has(.projects-item:nth-child(2):hover) .projects-navigation > a:nth-child(2),
.projects:has(.projects-item:nth-child(3):hover) .projects-navigation > a:nth-child(3) {
    background-color: var(--gray-mid);
    flex-grow: 2;
}
.projects:has(.projects-navigation > a:nth-child(1):hover) .projects-item:nth-child(1),
.projects:has(.projects-navigation > a:nth-child(2):hover) .projects-item:nth-child(2),
.projects:has(.projects-navigation > a:nth-child(3):hover) .projects-item:nth-child(3) {
    flex-grow: 2;
    filter: brightness(1);
}
.projects:has(.projects-navigation > a:nth-child(1):hover) .projects-item:nth-of-type(1) > a,
.projects:has(.projects-navigation > a:nth-child(2):hover) .projects-item:nth-of-type(2) > a,
.projects:has(.projects-navigation > a:nth-child(3):hover) .projects-item:nth-of-type(3) > a {
    visibility: visible;
    opacity: 1;
}
.projects-item > img {
    overflow: hidden;
    transition: 0.25s ease-in-out;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
}
.projects-item > a {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    background-color: var(--blue-transparent);
    color: #fff;
    font-size: var(--fs-20);
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.projects-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}
.projects-process > h2 {
    width: 100%;
    font-size: var(--fs-30);
    font-weight: 600;
    color: var(--blue-accent);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}
.projects-process > p {
    font-family: Calibri, sans-serif;
    font-size: var(--fs-18);
    text-align: center;
    color: var(--gray-shaded);
    width: 55%;
    margin-bottom: 20px;
}
.projects-process_timeline {
    position: relative;
    display: flex;
    padding: 5vmin;
    font-family: Calibri, sans-serif;
}
.projects-process_timeline::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 25px #bbbbbb77;
}
.projects-process_timeline > li {
    z-index: 1;
    display: flex;
    justify-content: center;
    max-width: 180px;
    min-width: 125px;
    padding-top: 250px;
    flex: 1 1 0;
}
.projects-process_timeline > li:nth-of-type(2n) {
    padding-top: 0;
    padding-bottom: 250px;
}
.projects-process_timeline .step {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-family: sans-serif;
    font-size: var(--fs-20);
    background-color: #fff;
    border: 5px solid var(--blue-light);
    box-shadow: 0 0 5px #bbbbbb;
}
.projects-process_timeline .details {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 25px #bbbbbb77;
    width: 100%;
    padding: 10px;
}
.projects-process_timeline .details::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(0);
}
.projects-process_timeline > li:nth-of-type(2n) .details::after {
    top: 100%;
    bottom: 0;
    transform: translateX(-50%) rotate(180deg);
}
.projects-process_timeline .details > strong {
    font-size: var(--fs-18);
    font-weight: 600;
    text-transform: capitalize;
}
.projects-process_timeline .details > span {
    font-size: var(--fs-16);
    font-family: var(--gray-shaded);
}
.projects-contact {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45vmin;
    overflow: hidden;
    color: #fff;
    letter-spacing: 1.1px;
}
.projects-contact > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    filter: brightness(0.5);
}
.projects-contact > p, .projects-contact > a {
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    text-align: center;
    font-size: var(--fs-16);
}
.projects-contact > p {
    font-size: var(--fs-24);
    margin-bottom: 7vmin;
    width: 100%;
}
.projects-contact > a {
    color: #fff;
    margin-top: 7vmin;
    background-color: var(--blue-accent);
    padding: 10px 3vmin;
    transition: background 200ms;
}
.projects-contact > a:hover {
    background-color: var(--blue-dark);
}
/* PROJECT CATEGORY PAGE */
.category {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    min-height: calc(100svh - 44px);
    padding: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--blue-mid);
    touch-action: pan-y;
    transition: background 0.2s ease-in-out;
}
.category-item {
    grid-column: span 3;
    position: relative;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transition: background 200ms;
}
.category-item:nth-child(4n) {
    border-right: none;
}
.category-item:nth-last-child(-n+4) {
    border-bottom: none;
}
.category-item:hover {
    background-color: var(--blue-transparent);
}
.category-item.active {
    background-color: var(--blue-transparent);
}
.category-item > a {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 2vmin;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    text-transform: uppercase;
    color: #fff;
}
.category-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}
/* GRID  */
.items-count-1 .item-1 { grid-column: span 12; border: none; }
.items-count-2 :is(.item-1, .item-2) { grid-column: span 6; }
.items-count-2 .item-2 { grid-column: span 6; border-right: none; }
.items-count-3 :is(.item-1, .item-2, .item-3) { grid-column: span 4; }
.items-count-3 .item-3 { border: none; }
.items-count-5 .item-1 { border-bottom: none; }
.items-count-5 .item-4 { border-right: none; }
.items-count-5 .item-5 { 
    grid-column: span 12;
    border-right: none; 
    border-bottom: none;
    border-top: 1px solid #fff;
}
.items-count-6 :is(.category-item) { grid-column: span 4; }
.items-count-6 :is(.item-4, .item-5, .item-6) { border-bottom: none; }
.items-count-6 :is(.item-3, .item-6) { border-right: none; }
.items-count-6 .item-3 { border-bottom: 1px solid #fff; }
.items-count-6 .item-4 { border-right: 1px solid #fff; }
.items-count-7 .item-4 { border-right: none; border-bottom: 1px solid #fff; }
.items-count-7 .item-5, 
.items-count-7 .item-6, 
.items-count-7 .item-7 { 
    grid-column: span 4;
    border-bottom: none; 
}
.items-count-7 .item-7 { border-right: none; }
.items-count-8 :is(.item-4, .item-8) { border-right: none; }
.items-count-8 :is(.item-5, .item-6, .item-7, .item-8) { border-bottom: none; }
.items-count-9 .item-9 { 
    grid-column: span 12;
    border-right: none; 
    border-bottom: none; 
}
.items-count-9 :is(.item-6, .item-7, .item-8) { border-bottom: 1px solid #fff; }
.items-count-10 :is(.item-7, .item-8) { border-bottom: 1px solid #fff; }
.items-count-10 :is(.item-9, .item-10) { grid-column: span 6; }
.items-count-10 .item-10 { border-right: none; }
.items-count-11 :is(.item-9, .item-10, .item-11) { 
    grid-column: span 4;
    border-bottom: none; 
}
.items-count-11 .item-8 { border-bottom: 1px solid #fff; }
.items-count-11 .item-11 { border-right: none; }
.items-count-12 :is(.item-9, .item-10, .item-11, .item-12) { border-bottom: none; }
.items-count-13 .item-13 { 
    grid-column: span 12; 
    border-right: none; 
    border-bottom: none; 
}
.items-count-13 :is(.item-10, .item-11, .item-12) { border-bottom: 1px solid #fff; }
.items-count-14 :is(.item-13, .item-14) { grid-column: span 6; }
.items-count-14 :is(.item-11, .item-12) { border-bottom: 1px solid #fff; }
.items-count-14 .item-14 { border-right: none; }
.items-count-15 :is(.item-13, .item-14, .item-14) { grid-column: span 4; }
.items-count-15 .item-12 { border-bottom: 1px solid #fff; }
.items-count-15 .item-15 { border-right: none; }

/* PROJECTS SINGLE PROJECT PAGE */
.project {
    flex-direction: column;
    background-color: #fdfdfd;
    padding: 0;
}
.project-hero {
    position: relative;
    width: 100%;
    max-width: 100vw;
    aspect-ratio: 4 / 3;
    max-height: 60svh;
    overflow: hidden;
}
.project-hero > img {
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    width: 100%;
    height: 100%;
    filter: brightness(0.75);
}
.project-hero > h1, .project-hero > ul {
    position: sticky;
    position: -webkit-sticky;
    z-index: 1;
    left: 0;
    color: var(--gray-light);
}
.project-hero > h1 {
    bottom: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5vmin;
    margin-left: 10vmin;
    font-size: var(--fs-40);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-hero > ul {
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    background-color: var(--blue-transparent);
}
.project-hero > ul > li {
    display: flex;
    align-items: center;
    border-left: 1px solid #fefefe38;
}
.project-hero > ul > li:first-of-type {
    border-left: none;
}
.project-hero > ul > li:last-of-type {
    margin-left: auto;
}
.project-hero > ul > li {
    display: block;
    padding: 3vmin;
    font-size: clamp(10px, 3vmin, 16px);
}
.project-hero > ul > li sup {
    font-size: clamp(6px, 1.5vmin, 10px);
}
.project-hero > ul > li > a {
    color: var(--gray-light);
    margin: -3vmin;
    padding: 3vmin;
}
.project-hero > ul > li > i, .project-hero > ul > li > a > i {
    margin-right: 1vmin;
}
.project-hero > ul > li:last-of-type > a > i {
    margin: 0;
}
.project-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.project-info > table {
    width: 60%;
    font-family: Calibri, sans-serif; 
    border-collapse: collapse; 
    border-spacing: 0;
}
.project-info > table tr {
    border-bottom: 1px solid var(--gray-mid) !important;
}
.project-info > table th {
    padding: clamp(5px, 2vmin, 10px) 0;
    font-size: var(--fs-28);
    text-align: left;
    font-weight: 600;
    color: var(--blue-dark);
}
.project-info > table td {
    padding: clamp(5px, 2vmin, 10px) 0;
    vertical-align: middle;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
.project-info > table td:first-child {
    color: var(--gray-dark);
    width: 40%;
}
.project-info > table td:first-of-type {
    padding-right: 10px;
    width: 40%;
}
.project-info > table td:last-child,
.project-info > table td:last-of-type {
    width: 60%;
}
.project-info > table a {
    color: var(--blue-mid);
    transition: color 200ms;
}
.project-info > table a:hover {
    color: var(--blue-accent)
}

.project-info > p {
    width: 60%;
    margin-top: 1vmin;
    font-family: Calibri, sans-serif;
    font-size: var(--fs-18);
    text-align: justify;
}
.project-slider {
    position: relative;
    max-width: 100%;
    padding: 5vmin 0;
}
.project-slider-item {
    aspect-ratio: 3 / 2;
    margin: 0 3vmin;
    max-height: 500px;
}
.project-slider-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
    filter: brightness(0.9);
}
.project-slider.is-single-image {
    display: block;
    width: 100%;
}
.project-slider.is-single-image a {
    display: block;
    width: 100%;
    margin: 0;
}
.project-slider .slick-prev, .project-slider .slick-next {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: var(--blue-accent);
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: calc(50% - 40px);
    width: 40px;
    height: 40px;
    transition: background 200ms;
}
.project-slider .slick-prev:hover, .project-slider .slick-next:hover {
    background-color: var(--blue-mid);
}
.project-slider .slick-prev {
    left: 5vmin;
}
.project-slider .slick-next {
    right: 5vmin;
}
.project-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 1vmin;
    margin-top: 2vmin;
}
.project-slider .slick-dots li button {
    font-size: 0;
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background-color: var(--gray-mid);
    transition: background 200ms;
}
.project-slider .slick-dots li.slick-active button {
    background-color: var(--blue-mid);
}
.project-slider .slick-dots li button:hover {
    background-color: var(--blue-mid);
}
.project-nav {
    display: flex;
    align-items: center;
    height: 60px;
    border-top: 1px solid var(--gray-mid);
}
.project-nav > a {
    width: 50%;
    height: 100%;
    line-height: 60px;
    font-size: var(--fs-18);
    text-transform: uppercase;
    text-align: center;
    color: var(--blue-dark);
    transition: all 300ms ease-in-out;
}
.project-nav > a:hover {
    color: var(--blue-dark);
    background-color: var(--gray-mid);
}
.project-nav > a:first-of-type {
    border-right: 1px solid var(--gray-mid);
}
.project-nav > a.disabled {
    opacity: 0.3;
    cursor: not-allowed !important;
    pointer-events: auto;
    text-decoration: none;
}
.project-nav > a.disabled:hover{
    background-color: inherit;
    color: var(--blue-accent);
}
.project-nav > a > i {
    margin: 0 1vmin;
}
/* MEDIA QUERIES */
@media screen and (max-width: 850px) {
    .project-info > table, .project-info > p {
        width: 85%;
    }
}
@media screen and (max-width: 750px) {
    .projects > h1 {
        max-height: none;
        margin-top: 30px;
    }
    .projects > h1::after {
        display: none;
    }
    .projects-navigation {
        flex-direction: column;
    }
    .projects-navigation > a {
        width: 100%;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid var(--gray-mid);
        flex: none !important;
    }
    .projects > .wrapper {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }
    .projects-item {
        width: 100%;
        height: 300px;
        flex: none !important;
        filter: brightness(1) !important;
    }
    .projects-item > a {
        visibility: visible !important;
        opacity: 1 !important;
        background-color: rgba(22, 42, 61, 0.6); 
        backdrop-filter: blur(1px);
        font-size: var(--fs-18);
    }
    .projects-item:hover > a {
        background-color: transparent !important;
        backdrop-filter: none !important;
    }
    .projects:has(.projects-item:hover) .projects-navigation > a,
    .projects:has(.projects-navigation > a:hover) .projects-item {
        flex-grow: 1 !important;
        background-color: var(--gray-light);
    }
    .projects:has(.projects-navigation > a:nth-child(1):hover) .projects-item:nth-child(1) > a,
    .projects:has(.projects-navigation > a:nth-child(2):hover) .projects-item:nth-child(2) > a,
    .projects:has(.projects-navigation > a:nth-child(3):hover) .projects-item:nth-child(3) > a {
        background-color: transparent !important;
        backdrop-filter: none !important;
    }
    .projects-process > p {
        width: 100%;
    }
    .projects-process_timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 5vmin 0;
        gap: 30px;

    }
    .projects-process_timeline::after {
        top: 0;
        left: 20px;
        width: 10px;
        height: 100%;
        transform: none;
    }
    .projects-process_timeline > li,
    .projects-process_timeline > li:nth-of-type(2n) {
        padding-top: 0;
        padding-bottom: 0;
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }
    .projects-process_timeline .step {
        position: relative;
        top: 0;
        transform: none;
        min-width: 50px;
        width: 50px;
        height: 50px;
        margin-right: 20px;
        flex-shrink: 0;
    }
    .projects-process_timeline .details {
        text-align: left;
        align-items: flex-start;
    }
    .projects-process_timeline .details::after,
    .projects-process_timeline > li:nth-of-type(2n) .details::after {
        top: 50%;
        bottom: auto;
        left: -15px;
        border-right: 15px solid #fff;
        border-left: 0;
        border-bottom: 15px solid transparent;
        border-top: 15px solid transparent;
        transform: translateY(-50%);
    }
}
@media screen and (max-width: 650px) {
    .projects-contact {
        height: 60vmin;
    }
    .projects-contact > a {
        bottom: 30%;
    }
    .project-info {
        padding: 40px 20px;
    }
    .project-info > p {
        margin-top: 2vmin;
    }
}
@media screen and (max-width: 550px) {
    .projects-process {
        padding: 40px 20px;
    }
    .projects-contact > p {
        font-size: var(--fs-24);
        font-weight: 400;
        padding: 0 20px;
        top: 40%;
    }
    .projects-contact > a {
        bottom: 25%;
    }
    .project-info > table, .project-info > p {
        width: 100%;
    }
    .project-info > p {
        margin-top: 3vmin;
    }
}
@media screen and (max-width: 450px) {
    .projects > h1::after {
        content: none;
    }
    .projects-contact {
        height: 70vmin;
    }
    .projects-contact > p {
        line-height: 1.2;
        top: 30%;
    }
    .projects-contact > a {
        bottom: 20%;
    }
    .project-hero > h1 {
        bottom: 40%;
    }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
    .category {
        grid-template-columns: repeat(12, 1fr);
    }
    .category-item {
        grid-column: span 6 !important;
        border-right: 1px solid #fff !important;
        border-bottom: 1px solid #fff !important;
    }
    .items-count-1 .item-1 {
        grid-column: span 12 !important;
        border: none !important;
    }
    .category:is([class*="items-count-2"], [class*="items-count-4"], [class*="items-count-6"], [class*="items-count-8"], [class*="items-count-10"], [class*="items-count-12"], [class*="items-count-14"], [class*="items-count-16"]) 
    .category-item:nth-last-child(-n+2) {
        border-bottom: none !important;
    }
    .category-item:nth-child(2n) {border-right: none !important;}
    .category:is([class*="items-count-3"], [class*="items-count-5"], [class*="items-count-7"], [class*="items-count-9"], [class*="items-count-11"], [class*="items-count-13"], [class*="items-count-15"]) 
    .category-item:last-child {
        grid-column: span 12 !important;
        border-right: none !important;
        border-bottom: none !important;
    }
    .items-count-5 .item-5 {
        border-top: none;
    }
}

@media (max-width: 600px) {
    .category-item {
        grid-column: span 12 !important;
        border-right: none !important;
        border-bottom: 1px solid #fff !important;
    }
    .category-item:last-child {
        border-bottom: none !important;
    }
    .items-count-5 .item-5 {
        border-top: none;
    }
}
@media (prefers-color-scheme: dark) {
    .projects {
        background-color: var(--blue-accent);
    }
    .projects > h1 {
        color: var(--gray-accent);
    }
    .projects > h1::after {
        background-color: var(--gray-accent);
    }
    .projects-navigation {
        border-color: var(--blue-mid);
    }
    .projects-navigation > a {
        background-color: var(--blue-accent);
        color: var(--gray-accent);
    }
    .projects-navigation > a:hover {
        background-color: var(--blue-dark);
    }
    .projects-navigation>a:nth-of-type(2) {
        border-left: 1px solid var(--blue-mid);
        border-right: 1px solid var(--blue-mid);
    }
    .projects:has(.projects-item:nth-child(1):hover) .projects-navigation>a:nth-child(1), 
    .projects:has(.projects-item:nth-child(2):hover) .projects-navigation>a:nth-child(2), 
    .projects:has(.projects-item:nth-child(3):hover) .projects-navigation>a:nth-child(3) {
        background-color: var(--blue-dark);
    }
    .projects-process > h2,
    .projects-process > p,
    .projects-process_timeline > li {
        color: var(--gray-accent);
    }
    .projects-process_timeline .details {
        background-color: var(--blue-dark);
        box-shadow: 0 0 25px #00000045;
    }
    .projects-process_timeline .details:after {
        border-bottom: 15px solid var(--blue-dark);
    }
    .projects-process_timeline .step {
        background-color: var(--blue-mid);
        box-shadow: 0 0 25px #00000077;
    }
    .projects-process_timeline::after {
        background-color: var(--blue-dark);
        box-shadow: 0 0 25px #00000077;
    }
    .project-info,
    .project-info > table th, 
    .project-info > table a{
        color: var(--gray-accent);
    }
    .project-info > table td:first-child {
        color: var(--blue-light);
    }
    .project-info > table a:hover {
        color: var(--blue-light);
    }
    .project-slider .slick-prev, 
    .project-slider .slick-next {
        background-color: var(--blue-dark);
    }
    .project-nav {
        border-color: var(--gray-shaded);
    }
    .project-nav > a {
        color: var(--gray-accent);
    }
    .project-nav > a:hover {
        color: var(--gray-accent);
        background-color: var(--blue-mid);
    }
    .project-nav > a.disabled:hover {
        color: var(--gray-accent);
    }
}
@media screen and (max-width: 750px) and (prefers-color-scheme: dark) {
    .projects-process_timeline .details:after, 
    .projects-process_timeline>li:nth-of-type(2n) .details:after {
        border-right: 15px solid var(--blue-dark);
        border-bottom: 15px solid transparent;
    }
}