.catalogue-box {
    width: calc(25% - 20px);
    margin: 0.5em 0;
    position: relative;
    transition: all 0.3s;
}
.catalogue-box:hover{
    cursor:pointer;
}

.catalogue-box:hover:before{
    -webkit-animation: imgflash 1s;
    animation: imgflash 1s
}

.catalogue-box .catalogue-item {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: 100% 0 0 0;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.catalogue-box .catalogue-item:hover{
    box-shadow: 0 7px .125rem rgba(31, 27, 45, .09);
    transform: scale(1.005);
    transition: all .3s !important

}

.catalogue-box .catalogue-item .catalogue-content {
    border-radius: 24px;
    background: rgba(12, 16, 9, 0.3);
    backdrop-filter: blur(6.1500000954px);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.catalogue-box .catalogue-item .catalogue-content  p{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.catalogue-box .catalogue-item .catalogue-content span{
    color: #E3EFDA;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.catalogue-box .catalogue-item  .catalogue-action{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.catalogue-box .catalogue-item .catalogue-action  .price{
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.catalogue-box .catalogue-item .catalogue-action .price span,
.catalogue-box .catalogue-item .catalogue-action .price bdi{
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #aad091;
}

.catalogue-box .catalogue-item .catalogue-action  span{
    color: #E3EFDA;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}