.our_category__module {
    margin: 0 0 100px 0;
}
.our_category__module__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 50px 0;
}
.our_category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.our_category__box {
    width: 100%;
    margin: 0 0 20px 0;
    position: relative;
}
.our_category__box:hover .our_category__box-background {
    background: #0000009E;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px;
    right: 4px;
}
.our_category__image {
    width: 100%;
    height: calc(406px / 1.37);
    margin: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.our_category__item {
    top: calc(50% - 20px);
    left: 0;
    right: 0;
    position: absolute;
}
.our_category__title {
    width: fit-content;
    max-width: 90%;
    height: 40px;
    margin: auto;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    color: #FFFFFF !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.our_category__box:hover .our_category__title {
    border-radius: 1px;
    background-color: var(--turquoise);
}

@media screen and (min-width: 576px) {
    .our_category__box {
        width: calc(100% / 2 - 10px);
    }
    .our_category__image {
        width: 100%;
        height: calc(296px / 1.37);
    }
}

@media screen and (min-width: 768px) {
    .our_category__box {
        width: auto;
    }
    .our_category__image {
        width: 305px;
        height: calc(305px / 1.37);
    }
}

@media screen and (min-width: 992px) {
    .our_category {
        justify-content: flex-start;
    }
}