.shop_section{
    padding-top: 15px;
}

.card_shop{
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 28.1px rgba(0, 0, 0, 0.092);
    margin-bottom: 22px;
    padding-top: 15px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.shop_img {
    z-index: 0;
    cursor: pointer !important;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-30%);
    height: 340px;
    width: auto;
    transition: left 0.2s ease-out;
}

.card_shop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 102%;
    background: rgb(255, 255, 255);
    transition: left 0.2s ease-out;
    transform: skewX(-20deg);
    transform-origin: top left;
}

.card_shop:hover .shop_img {
    left: 25%;
    filter: brightness(40%);
}

.card_shop:hover::after {
    left: -80%;
}

.shop_info{
    position: inherit;
    width: 50%;
    padding: 20px 30px;
    z-index: 999;
    transition: .2s;
}

.card_shop:hover .shop_info{
    transform: translateX(-200px);
    transition: .2s;
}

.shop_title_big {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    color: white;
    align-items: center;
    gap: 10px;
}

.card_shop:hover .shop_title_big {
    cursor: pointer;
    display: flex;
    animation: fadeIn 0.5s forwards, scaleIn 0.5s forwards;
}

.card_shop:hover .shop_desc {
    visibility: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: translate(-50%, -50%) scale(0);
    }
    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.card_shop::after{
    content: "";
    position: absolute;
}

.shop_title{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.shop_title img, .shop_title_big img{
    width: 30px;
    height: 30px;
    min-width: 20px;
    min-height: 20px;
}

.shop_desc{
    color: #909090;
    font-size: 14px;
}


@media only screen and (max-width: 990px) {
    .shop_section{
        padding: 20px 7% 0;
    }

    .shop_img{
        right: -480px;
    }

}
