.hash-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 1em 0 0;
    width: 100%;
    min-height: 200px;
    /*border: 1px dotted rgba(41, 61, 208, 0.51);*/
    background-color: rgba(38, 73, 203, 0.18);
}

.hash-item {
    position: relative;
    width: calc(25% - 10px);
    height: 200px;
    background-size: cover;
    margin: 5px;
    overflow: hidden;
}

.hash-item a {
    position: absolute;
    display: flex;
    font-size: 1.2em;
    flex-direction: column;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
    justify-content: flex-end;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20% 15px 10px;
    transition: 0.4s;
    background: linear-gradient(#ffffff00 10%, #ffffff);
    /*color: #000;*/
}

.hash-item:hover a {
    padding-bottom: 10%;
    transition: .3s;
}

@media screen and (max-width: 1200px) {
    .hash-item {
        width: calc(33% - 10px);
        height: 150px;
    }
}

@media screen and (max-width: 800px) {
    .hash-item {
        width: 100%;
        height: 60vw;
    }

    .hash-item a {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.87) 40%, rgba(255, 255, 255, 0.09));
        justify-content: center;
        color: #293DD0;
        padding: 1em;
    }
}