.packageBox{
    background-color: black;
    height: 200px;
    border: 1px solid grey;
    box-shadow: 0px 0px 15px grey;
    text-align: center;
    border-radius: 20px;
    padding: 15px;
    cursor: pointer;
    transition: all 2s;
    opacity: 0.8;
}
.packageBox:hover{
    transform: scale(1.1);
    opacity: 0.5;
}
.packageBox h5{
    min-height: 75px;
}
.packageBaslik{
    color:white;
}
.packageBoxProduct{
    color: white;
    height: 200px;
    cursor: pointer;
    transition: all 2s;
    opacity: 0.8;
}
.card-footer{
    color: black;
}
.packageBoxProduct:hover{
    transform: scale(1.1);
    opacity: 0.5;
}
.backDor{
    position: fixed;
    bottom:5px;
    left:5px;
    z-index:99;
    opacity:0.8;
    transition: all 2s;
}
.backDor:hover{
    opacity: 1;
    transform: translateX(20px);
}