.motorcycle {
    filter: grayscale(1) brightness(0.8);
    z-index: 1;
}

.motorcycle-filter:hover {
    transform: translate(0, 0) rotate(0deg);
    transition: 0.5s all;
}

.custom-shadow::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    background: inherit;
    border-radius: 0.5rem;
    box-shadow: 0 0 0;
    transition: all 0.3s ease-in-out;
}

.custom-shadow:hover::before {
    box-shadow: 0 0px 60px 30px #60a5fa;
    transition: all 0.4s ease-in-out;
}

.custom-shadow::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 0.5rem;
    box-shadow: inset 0 0 0;
}

.custom-shadow:hover::after {
    box-shadow: inset 0 2px 4px 0 rgba(96, 165, 250, 0.3);
    transition: all 0.4s ease-in-out;
}