#filters {
    padding: 50px 10px 20px;
}

#projects-list {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1400px;
}

#projects-list li {
    background: transparent;
    /*box-shadow: 0 0 10px rgba(0,0,0,0.2);*/
    padding: 1px !important;
    margin: 0  0 20px 0!important;
/*    min-height: 300px;*/
    position: relative;
    font-size: 0.9em;
    width: 100%;
    display: block;
    list-style: none;
    /*max-width: 600px;*/
}

/*#projects-list li:nth-child(even) {
    border-right: 10px solid #fff;
};*/

.page #content #projects-list li:before {
    content: '';
}

#projects-list li img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}

#projects-list li:hover img {
    transform: scale(1.3);
/*    -webkit-filter: blur(4px);
    filter: blur(4px);*/
}

#projects-list .bold {
    font-weight: 700;
    margin-right: 10px;
}

.fix-me {
    position: fixed;
    top: 50px;
    z-index: 999;
    background: #fff;
    padding: 10px !important;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    border-radius: 10px;
}

.top-padding {
    margin-top: 100px !important;
}

#projects-list figure {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0 !important;
    max-height: 500px;
}

figure img {
}

.left-slide {
    transition: all 0.2s ease;
    transform: rotate(45deg);
    position: absolute;
    width: 10%;
    left: -200px;
    height: 400px;
    background-color: red;
    top: -100px;
}

#projects-list li:hover .left-slide {
    transform: translate(100px, 0px) rotate(45deg)
}

.right-slide-one {
    transition: all 0.4s ease;
    transform: rotate(45deg);
    position: absolute;
    width: 100%;
    left: 0%;
    height: 300%;
    background: rgb(31,31,31);
background: linear-gradient(263deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 100%);
    top: -140px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.project-slide:hover .left-slide {
    transform: translateY(50px);
}

.project-slide figure {
    position: relative;
    margin: 0;
}

.project-slide figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 20px;
    font-size: 1.3em;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    text-align: right;
}

.project-slide figcaption span {
    display: block;
    font-weight: 400;
    font-size: 1rem;
}

#projects-list li:hover .right-slide-one {
    transform: translate(-305%, 0px) rotate(45deg);
}

#projects-list figcaption {
    position: absolute;
    right: 10px;
    bottom: 10px;
    transition: opacity 0.3s ease;
    z-index: 100;
    font-size: 1.3em;
    text-align: right;
    font-family: 'Montserrat';
    font-weight: 800;
    text-transform: uppercase;
    /* border-bottom: 1px solid red; */
    color: #fff;
    display: inline-block;
    max-width: 350px;
    margin: 0 auto;
    padding: 15px;
}

#projects-list figcaption span {
    display: block;
    font-weight: 400;
    font-size: 0.7em;
    color: var(--golden);
}

#projects-list li:hover figcaption {
    opacity: 1;
}

.right-slide-two {
    transition: all 0.5s ease;
    transform: rotate(45deg);
    position: absolute;
    width: 100%;
    right: -110%;
    height: 1300px;
    background-color: rgba(31,31,31,0.3);
    top: -200px;
/*    box-shadow: -10px 0 30px rgba(0,0,0,0.1);*/
background: rgb(31,31,31);
background: linear-gradient(240deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 100%);
}

#projects-list li:hover .right-slide-two {
    transform: translate(-130%, 0px) rotate(45deg)
}

/* slider styles */

.project-slide {
    overflow: hidden;
    position: relative;
}

span.next, span.prev, button.slick-arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    background: transparent;
    padding: 20px 0;
    font-size: 1.7em;
    text-align: center;
    margin-top: -43px;
}

.textwidget {
    position: relative;
}



button.slick-arrow {
    border: 0;
    border-radius: 0;
    overflow: hidden;
}

.single .slick-slide {
    padding: 0px;
}

@media all and (min-width: 767px) {

    #projects-list li {
        width: calc(50% - 1px);
        float: left;
        overflow: hidden;
        margin: 0 !important;
    }

/*    #projects-list li:first-child {
        border-top-left-radius: 5px;
    }

    #projects-list li:last-child {
        border-bottom-right-radius: 5px;
    }

    #projects-list li:nth-child(2) {
        border-top-right-radius: 5px;
    }

    #projects-list li:nth-child(3) {
        border-bottom-left-radius: 5px;
    }*/
}

@media all and (min-width: 1024px) {

    .single .slick-slide {
    padding: 1px;
}

    .project-slide figcaption {
        font-size: 1.3em;
        font-family: 'Montserrat';
    }
/*    .right-slide-one {
        left: 300%;
        background-color: rgba(31,31,31,0.8);
    }*/

/*    #projects-list .grid-item:hover figcaption {
        opacity: 1;
    }*/

    #projects-list figcaption {
        opacity: 1;
        color: #fff;
    }
}