.section.sections {}
.section.sections .sections_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section.sections .sections_wrapper .sections_item {
    height: 300px;
    width: 200px;
    display: block;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .15);
    transition: box-shadow 0.3s;
    position: relative;
    width: 19%;
    margin-bottom: 30px;
}

.section.sections .sections_wrapper .sections_item:hover {
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .15);
}

.section.sections .sections_wrapper .sections_item .sections_item_link {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
}
.section.sections .sections_wrapper .sections_item .sections_item_count {
    background: #0ab9f3;
    color: #fff;
    position: absolute;
    z-index: 9;
    padding: 5px 5px 10px 5px;
    border-radius: 0 0 50% 50%;
}
.section.sections .sections_wrapper .sections_item .sections_item_title {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    font-size: 25px;
    transition: background-color 0.3s;
    text-align: center;
}
.section.sections .sections_wrapper .sections_item:hover .sections_item_title {
    background-color: rgba(0,0,0,0.4);
}
.section.sections .sections_wrapper .sections_item .sections_item_image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.section.sections .sections_wrapper .sections_item .sections_item_list {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s;
    padding-bottom: 35px;
}
.section.sections .sections_wrapper .sections_item:hover .sections_item_list {
    opacity: 1;
}
.section.sections .sections_wrapper .sections_item .sections_item_list a {
    color: #424242;
    position: relative;
    margin-bottom: 3px;
    width: -moz-fit-content;
    width: fit-content;
}
.section.sections .sections_wrapper .sections_item .sections_item_list a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    margin: 0 auto;
    background-color: #26a9e1;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.section.sections .sections_wrapper .sections_item .sections_item_list a:hover:before {
    width: 100%;
}
.section.sections .sections_wrapper .sections_item .sections_item_list a:first-of-type {
    font-weight: bold;
}
.section.sections .sections_wrapper .sections_item .sections_item_list a:last-of-type {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
@media screen and (max-width: 768px) {
    .section.sections .sections_wrapper .sections_item {
        width: 48%;
        height: 200px;
        margin-bottom: 4vw;
    }
    .section.sections .sections_wrapper .sections_item .sections_item_list {
        display: none;
    }
    .section.sections .sections_wrapper .sections_item .sections_item_title {
        font-size: 23px;
    }
}