.threew_hover_box_wrapper {
    display: flex;
    flex-flow: row wrap;
}

.threew_hover_box {
    text-align: center;
    flex: 0 0 16.666%;
    max-width: 16.666%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Tablets */
@media (max-width: 920px) {
    .threew_hover_box {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}

/* Mobiles */
@media (max-width: 578px) {
    .threew_hover_box {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.threew_hover_box .threew_hover_box-link {
    text-decoration: none;
    color: var(--text-color);
}

.threew_hover_box .threew_hover_box-link:hover {
    color: var(--link-color);
}

.threew_hover_box .images-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.threew_hover_box .images-wrapper img {
    aspect-ratio: 1;
}

.threew_hover_box .images-wrapper .hovered-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #5CAE02;
    padding: 1rem;
}

.threew_hover_box:hover .images-wrapper .hovered-img {
    opacity: 1;
}

.threew_hover_box .title-wrapper {
    margin-top: 10px;
}

.threew_hover_box .title-wrapper .box-title {
    font-size: 20px;
}