/***** Content *****/
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    align-items: center;
}

.archive-card {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    text-align: center;
}

.archive-card {}

.archive-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.30);
    z-index: 0;
}

.archive-card .services-permalink {
    z-index: 1;
    width: 100%;
    height: 100%;
}

.archive-card .services-permalink .card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.archive-card .services-permalink .card-content .card-main-informations {}

.archive-card .services-permalink .card-content .card-main-informations .archive-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}




/***** Responsive *****/
@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 630px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}