.productCard{

    height: 350px;
    background: #ffffff;
    border-width: 5px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
    backface-visibility: hidden;
}
.cardSide{
}
.productCard:hover{
    transform:scale(.9);
}
.productCard:hover:after{
    height: 280px;
}

.productCard:hover .con-text p{
    margin-bottom: 0;
    opacity: 1;
}

.productCard:hover img{
   transform: scale(1.25);
}

.productCard:hover .cardSide{
    transform: translate(0);
    opacity: 1;
}

.productCard:after{
    width: 100%;
    content: '';
    left: 0;
    bottom: 0;
    height: 150px;
    position: absolute;
    background: linear-gradient(180deg,rgb(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
    z-index: 20;
    transition: all .25s ease;
}
.productCard img{
    height: 100%;
    z-index: 10;
    transition: all .25s ease;
}
.productCard .con-text{
    z-index: 30;
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 20px;
    padding-bottom: 38px;

}
.productCard .con-text p{
    font-size: 1rem;
    opacity: 0;
    margin-bottom: -170px;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.productCard .con-text .buttona{
    padding: 7px 17px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-top: 10px;
    margin-left: auto;
    cursor: pointer;
    transition: all .25s ease;
    outline: none;

}
.productCard .con-text p .buttona:hover{
    background: #fff;
    color: #000;
}

.cardSide{
    position: absolute;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 40;
    border-radius: 14px;
    padding-left: 0;
    padding-top: 8px;
    top: 0;
    opacity: 0;
    transform: translate(100%);
    transition: all .25s ease;

}
.cardSideItem{

}
.cardSide .cardSideItem{
    background: #fff;
    list-style: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .7;
    transition: all .25s ease;
    backface-visibility: hidden;
}
.cardSide .cardSideItem:last-child{
    border-radius: 0 0 12px 12px;
}
.cardSide .cardSideItem:first-child{
    border-radius: 12px 12px 0 0;
}
.cardSide .cardSideItem:hover{
    opacity: 1;
    transform: translate(-7px, -4px);
    border-radius: 6px;
}
.cardSide .cardSideItem i{
  font-size: 1.4rem;
    color: #000;
}


