.project-detail {
    position: sticky;
    top: 25px;
    height: fit-content;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .project-detail {
        position: relative;
        top: unset;
    }

    .col {
        flex: 1 0 100%;
    }
}