.services-content {
    display: flex;
    justify-content: center;
    width: var(--body-width);
    gap: 1vw;

}

.service {
    width: calc((var(--body-width)/6));
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 0;
    border: solid 1px var(--primary-color);
    border-radius: 2%;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

a{
    color: transparent;
}

a:hover, a:focus-visible{
    color: transparent;
}

.service:hover {
    -webkit-filter: grayscale(10%);
    filter: grayscale(10%);
    cursor: pointer;
    transition: .75s;
}

.title-service-wrapper {
    margin: 100px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-service {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.service p{
    position: absolute;
    bottom: 0;
    right: 20px;
    margin-bottom: .5rem;
    color:white;
}

.service p::after{
    content: "\f061";
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    padding-left: 10px;
}

.bg-damessnit {
    background: url('../resources/images/women1.png') no-repeat center;
    background-size: cover;
}

.bg-bruidkapsels {
    background: url('../resources/images/Bruidkapsel06.jpg') no-repeat center;
    background-size: cover;
}

.bg-herensnit {
    background: url('../resources/images/herensnit_barber02.jpg') no-repeat center;
    background-size: cover;
}

.bg-balayage {
    background: url('../resources/images/coloring02.jpg') no-repeat center;
    background-size: cover;
}

.bg-kids {
    background: url('../resources/images/kids01.jpg') no-repeat center;
    background-size: cover;
}

@media (min-width: 320px) and (max-width: 575px) {

    .services-content {
        gap: 1.5rem;

    }

    .service {
        width: 100%;
        -webkit-filter: grayscale(10%);
        /* Safari 6.0 - 9.0 */
        filter: grayscale(10%);
    }

    .service {
        width: calc((var(--body-width)/5));
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: start;
        padding: 0;
        border: solid 1px var(--primary-color);
        border-radius: 2%;
    }
    
}

@media (min-width: 767px) and (max-width:1920px) {

    .services {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}