main {
    width: 100%;
    height: 100vh;
}

#salon {
    width: 100%;
    height: 100%;
}

.sp--card.card {
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}
.sp--card.card>a{
    display: block;
    width: 100%;
    height: 100%;
}
.sp--card.card>a:hover{
    opacity: 0.6;
}
.sp--card.card>a>.image-container {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transition: .3s;
}

.sp--card.card>a>.image-container>img.logo {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
    height: auto;
    opacity: 0;
    transition: .5s;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
}

/* .sp--card.card>.image-container:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #f5f6fa;
    z-index: 1;
} */

/* .sp--card.card>.image-container:after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .5);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    z-index: 2;
} */

.sp--card.card>a>.image-container>img.logo.active {
    opacity: 1;
}

.sp--card.card>a>.image-container>img.leftTop {
    top: 50px;
    left: 20px;
    transform: translate(0);
    right: unset;
}

.column-4 {
    width: 50%;
    height: 50% !important;
}

.column-5 {
    width: 33.33%;
    height: 50% !important;
}

.column-8 {
    width: 25%;
    height: 50% !important;
}