

/* Services Home------------------------------------- */
#bestServices {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#bestServices .service {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

#bestServices .service a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#bestServices .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

#bestServices .service h6 {
    background: #ffffffbf;
    width: 80%;
    color: #525151;
    height: 60%;
    position: absolute;
    top: 20%;
    text-align: center;
    font-size: 18px;
    display: flex;
    align-items: center;
}

#bestServices .service:hover .image {
    transform: scale(1.2);
}