#main {
    display: inline;
}

.header-banner {
    height: 58px;
    position: relative;
    top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 609px) {
    .header-banner {
        height: 48px;
        margin: 0 16px;
        width: auto;
    }
}

.header-banner .image-container {
    height: 100%;
    display: block;
    width: fit-content;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.header-banner .image-container img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    position: relative;
    max-width: 1470px;
}

.restaurant-page {
    padding-top: 50px;
}

@media (max-width: 979px) AND (min-width: 769px) {
    .header-banner {
        top: 20px;
    }
}

.hidden-banner {
    display: none !important;
}