.projects-card-container {
    margin-top: 2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr) ) ;
    grid-gap: 24px;
}

.projects-card {
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.projects-card img {
    width: 100%;
    box-shadow: 0px 11px 20px #c5c5c5;
    border-radius: var(--border-radius);
}

.projects-card .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    backdrop-filter: blur( 3.5px);
    -webkit-backdrop-filter: blur( 3.5px);
    background: rgba(255, 255, 255, 0.25);
    opacity: 0;
    transition: opacity var(--transitionDuration);
    z-index: 2;
}

.projects-card-content {
    padding: 1.5em;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
    backdrop-filter: blur( 6px);
    -webkit-backdrop-filter: blur( 6px);
}

.projects-card-content h2,
.projects-card-content h3 {
    opacity: 1;
}

.project-title {
    color: black;
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 0.5em;
    transition: color var(--transitionDuration);
}

.projects-card-tag {
    padding: 0.5em 0.75em;
    background: var(--blue);
    display: inline-block;
    border-radius: var(--border-radius);
    transition: background var(--transitionDuration);
}

.projects-card-tag:not(:last-child) {
    margin-right: 0.15em;
}

.projects-card-tag h3 {
    font-size: 1em;
    font-weight: 500;
    color: white;
    opacity: 0.75;
    margin: 0;
}

.projects-card:hover {
    cursor: pointer;
}

.projects-card:hover .project-title {
    color: white;
}

.projects-card:hover .projects-card-content {
    backdrop-filter: blur( 0px);
    -webkit-backdrop-filter: blur( 0px);
    background: rgba( 51, 82, 113, 1);
}

.projects-card:hover .projects-card-tag {
    background: #333333;
}

@media only screen and (max-width: 1600px) {
    .projects-card-content {
        padding: 1em;
    }
    .projects-card-tag h3 {
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 1416px) {
    #highlight-projects .projects-card-tag h3 {
        font-size: 0.75em;
    }
}

@media only screen and (max-width: 1275px) {
    #highlight-projects .project-title {
        font-size: 1.2em;
    }
    #highlight-projects .projects-card-tag h3 {
        font-size: 0.7em;
    }
    #highlight-projects .projects-card-tag {
        padding-left: 0.45em;
        padding-right: 0.45em;
    }
}

@media only screen and (max-width: 1275px) {
    #highlight-projects .project-title {
        font-size: 1em;
    }
    #highlight-projects .projects-card-tag h3 {
        font-size: 0.6em;
    }
    #highlight-projects .projects-card-tag {
        padding-left: 0.45em;
        padding-right: 0.45em;
    }
}

@media only screen and (max-width: 1075px) {
    .projects-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-card-tag h3 {
        font-size: 0.75em;
    }
}

@media only screen and (max-width: 642px) {
    .project-title {
        font-size: 1.4em;
    }
    .projects-card-tag h3 {
        font-size: 0.7em;
    }
}

@media only screen and (max-width: 615px) {
    .projects-card-tag {
        padding-left: 0.45em;
        padding-right: 0.45em;
    }
}

@media only screen and (max-width: 600px) {
    .projects-card-container {
        grid-template-columns: 1fr;
    }

    .projects-card-tag h3 {
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 390px) {
    .projects-card-tags-container {
        display: none;
    }
    .project-title {
        margin-bottom: 0;
    }
}

.hidden {
    visibility: hidden;
}