#special-cat-info {
    padding: 1.4rem;
    text-align: center;
    width: 100%;
}
#special-cat-name {
    padding: 1rem;
    font-size: var(--font-size-2xl);
}
#special-cat-description {
    padding: 1rem;
    font-size: var(--font-size-2xl);
}
#special-cat-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.special-cat {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.special-cat:last-child {
    margin: 0;
}
.special-cat:nth-child(even) {
    flex-direction: row-reverse;
}
.sc-image {
    flex: 1;
    max-height: 50vw;
}
.sc-image.half-width {
    flex: 1 1 50%;
}
.sc-image a {
    display: block;
    line-height: 0;
}
.sc-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sc-name {
    text-align: center;
    width: 100%;
}
.sc-name h3 {
    font-size: var(--font-size-3xl);
    font-family: var(--font-family-lg);
    margin: 0;
}
.sc-content {
    font-size: var(--font-size-xl);
    font-family: var(--font-family-sm);
    line-height: 1.5rem;
    max-height: 4.6rem;
    height: auto;
    overflow: hidden;
    text-align: center;
    max-width: 70%;
}
.sc-text a {
    padding: 1.4rem 0;
    display: inline-block;
    width: 12rem;
    margin: 0 auto;
}
.sc-image img,
.sc-image video {
    width: 100%;
    height: 100%;
}
#category-products-cont {
    width: 100%;
}
#special-category-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3rem;
    width: 100%;
    background-color: black;
    color: white;
}

.bl-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-top: 1px solid rgb(216, 216, 216);
}
.br-name h3 {
    font-size: var(--font-size-3xl);
    font-family: var(--font-family-lg);
    margin: 0;
}
.bl-item-image img {
    width: 100%;
    height: 100%;
}
.bl-item-image {
    flex: 1 1 50%;
}
.bl-item-name {
    margin-left: 2rem;
}
.br-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
    justify-content: center;
    align-items: flex-start;
}
.br-name {
    margin-bottom: 2rem;
    text-align: left;
}
.br-content {
    overflow: hidden;
    margin-bottom: 3rem;
    white-space: normal;
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
    font-size: var(--font-size-xl);
    font-family: var(--font-family-sm);
    line-height: 1.5rem;
    height: 4.6rem;
}
.br-text a {
    padding: 1.4rem 0;
    display: inline-block;
    width: 12rem;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .sc-name {
        border-bottom: 1px solid rgb(216, 216, 216);
    }
    .sc-content {
        max-width: 80%;
    }
    #special-cat-name h3 {
        font-size: var(--font-size-2xl);
    }
    .sc-image {
        max-height: inherit;
    }
    .br-name {
        padding: 2rem 0 0;
    }
    .bl-item {
        margin: 0 0 3rem;
    }
}