.banner-image {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
}
.banner-image a {
    color: #fff;
}
.bi-main-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}
.overlay {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    z-index: 1;
    pointer-events: none;
}
.overlay-block {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-family-md);
    position: relative;
    display: flex;
    padding: 3rem;
    flex: 1 1 50%;
}
.overlay a {
    margin: 1.6rem 0 0;
    pointer-events: all;
}
.overlay .bottom-right {
    align-items: flex-end;
    text-align: right;
    -moz-box-pack: end;
    justify-content: flex-end;
    flex-direction: column;
}
.overlay .top-left {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
    flex-direction: column;
}
.overlay .top-right {
    align-items: flex-end;
    text-align: right;
    justify-content: flex-start;
    flex-direction: column;
}
.overlay .bottom-left {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-end;
    flex-direction: column;
}
.overlay .center {
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

#page .category-products {
    display: block;
    width: 100%;
    height: 100%;
    flex-flow: unset;
}

#page .category-product {
    display: block;
    width: auto;
    position: relative;
}

.block-name h3 {
    font-size: var(--font-size-2xl);
    font-family: var(--font-family-lg);
    text-align: center;
}

.block-name a {
    text-decoration: none;
    outline: none;
}

.block-text a {
    width: auto;
}

@media only screen and (max-width: 767px) {
    .overlay-block {
        font-size: var(--font-size-xl);
    }

    #page .category-product {
        width: auto;
    }
}