.cs-archive-section{
    display: inline-grid;
    grid-template-columns: 33% 33% 33%;
    grid-auto-rows: auto;
    column-gap: 10px;
    row-gap: 25px;
    width: calc( 100% - 5px );
}
@media ( max-width: 768px){
    .cs-archive-section{
        grid-template-columns: 100%;
        width: 95%;
        display: grid;
        margin: 0 auto;
    }
}
.cs-archive-section .cs-category-item{
    padding: 30px;
    margin: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 15px 15px 10px 0px rgba(0, 0, 0, 0.33);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background-position: 50% -30%;
    height: 510px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media ( max-width: 768px){
    .cs-archive-section .cs-category-item{
        max-width: 100%;
        min-height: 500px;
        height: auto;
    }
}

.cs-archive-section .cs-category-item h2{
    color: #262626;
    font-family: "Futura PT", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.cs-archive-section .cs-category-item a{
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    fill: #262626;
    color: #262626;
    background-color: #FFEF76;
    border-radius: 0px 0px 0px 0px;
    padding: 15px 30px;
    margin: 0 auto;
    transition: ease .2s;
}

.cs-archive-section .cs-category-item a:hover{
    transform: scale(1.1);
}


/* Animation */
.cs-reveal {
    position: relative;
    opacity: 0;
}

.cs-reveal.cs-active {
    opacity: 1;
}
.cs-active.cs-fade-bottom {
    animation: cs-fade-bottom .4s ease-in;
}
.cs-active.cs-fade-left {
    animation: cs-fade-left 1s ease-in;
}
.cs-active.cs-fade-right {
    animation: cs-fade-right 1s ease-in;
}
@keyframes cs-fade-bottom {
    0% {
        transform: translateY(70px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes cs-fade-left {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes cs-fade-right {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}