.row.mb-4.site {
    display: flex;
}
.catalog-section{
    background: #C2E6FD;
    border-radius: 70px;    
    max-width: 1530px;
    margin: 50px auto;
    padding: 70px;
    overflow: hidden;
    position: relative;
}
.catalog-section:after {
    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    background-image: url(../../../../assets/i/twigs.webp);
    z-index: 2;
    height: 100%;
    width: 100%;
    /* background-size: cover;
    background-position: center bottom; */
}
.row.product-item-list-col-3{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    position: relative;
    z-index: 3;
}
.product-item-small-card{
    width: calc(100%/3);
    position: relative;
    transition: all .2s;
}
.product-item-small-card:hover{
    transform: scale(0.9);
}
.catalog-element{
    background: #fff;
    border-radius: 20px;
    /* max-width: 500px; */
    height: 600px;
    margin: 10px;
}
.catalog-element figure img{
    position: relative;
}
.catalog-element__image{
    display: flex;
    justify-content: center;
}
.catalog-element__title{
    color: #1B64AB;
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 30px;
}
.catalog-element__descr-header{
    min-height: 55px;
}
.catalog-element__descr {
    display: flex;
    flex-direction: column;
}
.catalog-element__params {
    min-height: 60px;
}
.col.catalog-section-description{
    margin: 0 auto;
    max-width: 1530px;
    margin-top: 50px;
}