.category-grid-wrapper {
    display: flex;
    justify-content: space-between;
}

.category-grid-item {
    position: relative;
    height: 47.7vw;
    width: 100%;
    margin-bottom: 4px;
}

.category-grid-item:nth-child(2) {
    margin-left: 4px;
}

.category-grid-wrapper.category-first .category-grid-item:nth-child(2) {
    width: 40%;
    flex: 0 0 40%;
}

.category-grid-wrapper.category-second .category-grid-item:nth-child(2) {
    width: 60%;
    flex: 0 0 60%;
}

.category-grid-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.category-grid-item-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category-grid-item-title {
    position: absolute;
    z-index: 1;
    left: 55px;
    bottom: 72px;
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.8px;
    text-transform: uppercase;
}

.category-grid-item-title.title-sale  {
    color: #C10000;
}

.category-grid-item-text {
    position: absolute;
    z-index: 1;
    left: 55px;
    bottom: 38px;
    color: #fff;
    font-weight: 200;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
}

.category-grid-item-link {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 34px;
    right: 30px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 200;
    line-height: 30px;
}

.category-grid-item-link:hover {
    opacity: 0.7;
}

.category-grid-item-link:after {
    content: '';
    margin-left: 5px;
    width: 13px;
    height: 14px;
    background: url("../../images/see-all.svg") center no-repeat;
}

@media all and (max-width: 1439px) {
    .category-grid-item-title {
        left: 25px;
        font-size: 30px;
        bottom: 67px;
    }

    .category-grid-item-text {
        left: 25px;
        font-size: 16px;
    }

    .category-grid-item-link {
        right: 20px;
    }
}

@media all and (max-width: 1023px) {
    .category-grid-item-title {
        left: 15px;
        font-size: 22px;
        bottom: 45px;
    }

    .category-grid-item-text {
        bottom: 17px;
        left: 15px;
        font-size: 14px;
    }

    .category-grid-item-link {
        padding: 0 10px 0 6px;
        right: 5px;
        bottom: 14px;
        text-indent: -9999px;
        border-radius: 2px;
    }

    .category-grid-item-link:hover {
        background: rgba(0, 0, 0, 0.1);
    }
}

@media all and (max-width: 767px) {
    .category-grid-wrapper {
        flex-wrap: wrap;
    }

    .category-grid-item {
        width: 100%;
        height: 400px;
        margin-bottom: 2px;
    }

    .category-grid-wrapper.category-first .category-grid-item:nth-child(2),
    .category-grid-wrapper.category-second .category-grid-item:nth-child(2) {
        width: 100%;
        flex: 0 0 100%;
        margin-left: 0;
    }
}
