
.fspacing {
    padding: 10px;
    display: inline-block;
    width: 25%;
    vertical-align: top;
}

.card-category {
    display: flex;
    justify-content: flex-end;
    font-size: .875rem;
    padding: 1.5rem;
    overflow: hidden;
    background-color: var(--accord-light-grey);
}

.card-category-title {
    font-size: 17px;
    max-width: 50%;
}

.home-cat {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media (hover: hover) {
        .card-category-title {
            transform: translateY(2rem);
            transition: transform .3s;
        }

        .card-category-view {
            opacity: 0;
            transform: translateY(2rem);
            transition: transform .3s,opacity .3s
        }
    }

    .card-category {
    transition: background-color .3s,box-shadow .3s;
    height: 8.25rem;
    overflow: hidden;
    backface-visibility: hidden;
    position: relative;
    background-image: linear-gradient(transparent,rgb(238,241,244),rgb(223,229,233));
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 130px;
    color: var(--accord-blue);
    word-wrap: break-word;
    background-color: var(--accord-white);
    background-clip: border-box;
    border: 2px solid var(--accord-orange);
    border-radius: 10px;
}

    .card-category:after {
        content: "";
        pointer-events: none;
        top: 0;
        bottom: 0;
        right: 105px;
        width: 2px;
        transform: skew(19deg);
        background: var(--accord-orange);
        z-index: 1;
        position: absolute;
    }

    .card-category .card-category-image {
        -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg width="133px" height="157px" viewBox="0 0 133 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><polygon points="133 3.4861003e-14 133 157 51.8135409 157 0 4.49380116e-14"></polygon></svg>');
        mask-image: url('data:image/svg+xml;charset=UTF-8,<svg width="133px" height="157px" viewBox="0 0 133 157" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><polygon points="133 3.4861003e-14 133 157 51.8135409 157 0 4.49380116e-14"></polygon></svg>');
        -webkit-mask-position: center center;
        mask-position: center center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
        height: 130px;
        width: 130px;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

@media (hover: hover) {
    .card-category:hover {
        background-color: #eef1f4;
        box-shadow: 0 2px 8px #122c4a1a;
        transition: background-color .3s,box-shadow .3s;
        color: #f58c24
    }

        .card-category:hover .card-category-title {
            transform: translateY(.2rem);
            transition: transform .3s
        }

        .card-category:hover .card-category-view {
            opacity: 1;
            transform: translateY(.2rem);
            transition: transform .3s,opacity .3s
        }
}

.banner {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 500px;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    border-radius: 10px;
}

.FadeIn {
    animation: fadeIn 0.5s linear 1 forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.FadeOut {
    animation: fadeOut 1s linear 1 forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#banners {
    position: relative;
    height: 500px;
}

#banner-left {
    position: absolute;
    height:100%;
    left: 10px;
    background: none;
    border: none;
    color: var(--accord-mid-grey);
    cursor: pointer;
    font-size: 100px;
    line-height: 0px;
    z-index: 9999;
}

#banner-left:hover {
        color: var(--accord-dark-grey);
    }

#banner-right {
    position: absolute;
    height: 100%;
    right: 10px;
    background: none;
    border: none;
    color: var(--accord-mid-grey);
    cursor: pointer;
    font-size: 100px;
    line-height: 0px;
    z-index: 9999;
}

#banner-right:hover {
     color: var(--accord-dark-grey);
}


@media screen and (max-width: 1600px) and (min-width: 1080px) {
    .fspacing {
        width: 33.3%;
    }
    #banners {
        height: 400px;
    }
    .banner {
        max-height: 400px;
    }
}

@media screen and (max-width: 1080px) and (min-width: 760px) {
    .fspacing {
        width: 50%;

    }
    #banners {
        height: 300px;
    }

    .banner {
        max-height: 300px;
    }
}
@media screen and (max-width: 760px) {
    .fspacing {
        width: 100%;
    }
    #banners {
        height: 200px;
    }
    .banner {
        max-height: 200px;
    }
}

@media screen and (max-width: 500px) {
    .fspacing {
        width: 100%;
    }

    #banners {
        height: 150px;
    }

    .banner {
        max-height: 150px;
    }
    .home-cat a{
        display:none;
    }

