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

.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;
}

.venues-container a {
    margin-bottom: 1rem;
}

.venue-container {
    border-radius: 15px;
    overflow: hidden;
}

.venue-container img {
    width: 100%;
}

.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;
    }
    

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

@media(max-width: 499px) {
    .channel_subcategory {
        top: 55px;
    }
}