
.category {
    padding-top: 30rem;
    overflow: hidden;
}

.category-items {
}

.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 20rem;
    background-color: #fff1e1;
    z-index: 1;
}

.category-item__container {
    padding: 40rem;
    height: 250rem;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: auto 100%;
}

.category-item__icon {
    display: block;
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.category-item__title {
    font-weight: 600;
    font-size: 24rem;
    line-height: 120%;
    color: #263141;
    max-width: 50%
}

.category-item__title--big {
    font-size: 32rem;
}

.category-item__price {
    font-weight: 600;
    font-size: 18rem;
    line-height: 100%;
    color: #a78f77;
}
.category-buttons {
    text-align: center;
}

@media (hover: hover) {
    .category-item {
        transition: background-color 0.25s;
    }

    .category-item__title {
        transition: color 0.25s;
    }

    .category-item__price {
        transition: color 0.25s;
    }

    .category-item:hover {
        background-color: #a78f77;
    }

    .category-item:hover .category-item__title {
        color: #fff
    }

    .category-item:hover .category-item__price {
        color: #fff
    }
}

@media (max-width: 991px) {
    .category-item__title--big {
        font-size: 24rem;
    }
}