.catalog {
    width: 100%;
    color: #fff;
}

.catalog-title {
    color: #000;
    margin-left: 30px;
}

.catalog-descr {
    padding: 30px;
    margin: 30px 0 0 30px;
    box-sizing: border-box;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    background: #ffffff50;
}

.catalog-ul {
    padding: 0 0 30px 30px;
    font-size: 20px;
    line-height: 30px;
    color: #000;
}

.catalog-item {
    width: 100%;
    min-height: 350px;
    height: 100%;
    margin-top: 30px;
    display: flex;
    color: #000;
}

.item-text-wrap {
    padding: 0 30px;
    box-sizing: border-box;
    background: #ffffff50;
}

.item-text-wrap p {
    font-family: "Montserrat", sans-serif;
}

.about h1, .about h2 {
    color: #fff;
} 

.item-img {
    min-width: 40%;
    min-height: 300px;
    /* background: url(../img/perk-1.webp) center center/cover no-repeat; */
}

.price {
    font-size: 25px;
    font-weight: 600;
}

@media screen and (min-width: 100px) and (max-width: 1200px) {
    .catalog-item {
        height: auto;
        display: block;
    }

    .catalog-descr {
        margin: 0;
    }

    .catalog-ul {
        margin: 0;
    }

    .item-img {
        width: 100%;
        height: 300px;
    }

    .item-text-wrap {
        width: 100%;
        padding-bottom: 30px;
    }

    .item-text-wrap h2 {
        margin: 0;
        padding-top: 30px;
    }
} 