.pbn-design {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pbn-design-holder h2 {
    color: #333;
    font-family: 'Literata', sans-serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.pbn-design-holder__card-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.pbn-design-holder__card {
    flex: 0 0 32%;
    padding: 24px;
    border-radius: 16px;
    background: #FAFAFA;
}

.pbn-design-holder__card img {
    width: 100%;
    border-radius: 12px;
    height: 260px;
    object-fit: cover;
}

.pbn-design-holder__card-bottom {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.pbn-design-holder__card .pbn-design-holder__card-bottom img {
    max-width: 120px;
    border-radius: unset;
    height: auto;
}

.pbn-design-holder__card .pbn-design-holder__card-bottom p {
    color: #333;
    text-align: center;
    font-family: 'Literata', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

@media only screen and (max-width: 1399px) {
    .pbn-design-holder__card img {
        height: 220px;
    }
}

@media only screen and (max-width: 991px){
    .pbn-design {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pbn-design-holder__card {
        flex: 0 0 49%;
        margin-bottom: 20px;
    }

    .pbn-design-holder__card:last-child {
        margin-bottom: 0;
        display: none;
    }

    .pbn-design-holder__card img {
        height: auto;
    }
}

@media only screen and (max-width: 768px){
    .pbn-design-holder__card {
        flex: 0 0 100%;
    }

    .pbn-design-holder__card:last-child {
        display: block;
    }
}

@media only screen and (max-width: 575px){
    .pbn-design-holder__card{
        padding: 20px;
    }
    .pbn-design-holder h2 {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 40px;
    }
}