.channel_subcategory {
    background-color: #000;
    width: 100%;
    left: 0;
    top: 90px;
    margin: 0;
    position: sticky;
}

.neighborhood-guide-header {
    text-align: center;
}

.neighborhood-guide-header img {
    width: auto;
    max-height: 80px;
    margin: 1.5rem 0;
}

.neighborhood-category {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
    border-right: 2px solid #fff;
    margin: 1rem 0;
}

.neighborhood-category:last-child {
    border-right: none;
}

.neighborhood-category img {
    height: 40px;
    width: 60px;
    object-fit: scale-down;
    margin-bottom: 5px;
}

.neighborhood-category span{
    color: #fff;
    text-transform: uppercase;
    font-family: 'GilroyBold';
    font-size: 18px;
    position: relative;
}

.district-breadcrumbs {
    margin: 2rem 0;
}

.district-breadcrumbs,
.district-breadcrumbs a {
    color: #000;
    font-family: 'GilroyReg';
    font-size: 18px;
    line-height: 1;
}

.restaurant-display {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1;
}

.restaurant-display img {
    border-radius: 50%;
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
}

.restaurant-display span {
    padding: .25rem 0;
    display: block;
    align-items: center;
    line-height: 1.25;
    padding: 5px 0;
}

.restaurant-display span p {
    margin: 0;
}

.restaurant-display span span {
    font-family: GilroyBold;
    margin-right: 5px;
}

.about-info {
    margin: 0;
    padding-top: 1rem;
    font-size: 18px;
    line-height: 1.25;
    text-align: justify;
}

.neighborhood-slider img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.neighborhood-slider .slick-dots li button:before {
    font-size: 16px;
}

.venue-address {
    flex-wrap: wrap;
}

.business-hours span {
    display: block;
}

.neighborhood-category.active span:after {
    position: absolute;
    content: "";
    height: 2px;
    background-color: #fff;
    width: 100%;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

@media(max-width: 768px) {

    .neighborhood-category {
        padding: 2px 0;
        margin: 10px 0;
    }

    .neighborhood-category img {
        height: 20px;
        width: 35px;
    }

    .neighborhood-category span {
        font-size: 12px;
    }

    .restaurant-display span {
        line-height: 1;
        padding: 3px 0;
    }

    .business-hours {
        display: flex;
        align-items: center;
    }

    .business-hours span {
        line-height: 1.25;
    }

    .neighborhood-slider img {
        height: 300px;
    }

    .channel_subcategory {
        top: 55px;
    }

    .neighborhood-guide-header img {
        object-fit: contain;
        width: 100%;
    }
}