.main_section {
    position: relative;
    width: 100%;
    height: 100vh;
}

.main_section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main_section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 996px) {
    .main_section {
        height: 300px;
    }
}

.about_section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10% 5%;
    background-color: #b46a47;
}

.about_section h1 {
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.about_section p {
    margin-top: 20px;
    margin-bottom: 40px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}

.about_section a {
    font-weight: 400;
    color: #b46a47;
    align-self: center;
    background-color: #fff;
}

@media (max-width: 996px) {
    .about_section h1 {
        text-align: center;
    }
}

.image_section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.image_section img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 996px) {
    .image_section {
        height: 250px;
    }
}

.tradition_flavor {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100%;
    padding: 7% 5%;
    background-color: #676d59;
}

#f98451

.tradition_flavor .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
}

.tradition_flavor h2 {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.tradition_flavor p {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}

.tradition_flavor p span {
    font-weight: 600;
}

.tradition_flavor .media {
    padding-right: 5% ;
}

.tradition_flavor .media img {
    width: 100%;
}

@media (max-width: 996px) {
    .tradition_flavor {
        grid-template-columns: 1fr;
        padding: 10% 5%; 
    }
    
    .tradition_flavor h2 {
        text-align: center;
    }
    
    .tradition_flavor p {
        font-weight: 400;
    }

    .tradition_flavor .media {
        padding-left: 0;
        padding-right: 0;
        padding-top: 20px;
        grid-row: 2;
    }
}

.buffet_section {
    display: grid;
    grid-template-columns: 55% 45%;
    width: 100%;
    padding: 4% 5%;
    background-color: #eae1d9;
}

.buffet_section > h2 {
    grid-column: 1 / span 2;
    text-align: center;
}

.buffet_section h2 {
    font-size: 2.3rem;
    margin-bottom: 3%;
    color: #2a2f1f;
    font-weight: 600;
}

.buffet_section .media {
    padding-left: 10%;
}

.buffet_section .media img {
    width: 100%;
}

.buffet_section .media video {
    width: 100%;
}

.buffet_section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10%;
}

.buffet_section .content h2 {
    line-height: 1;
}

.buffet_section .content p {
    margin-top: 20px;
    margin-bottom: 40px;
    color: #2a2f1f;
    font-size: 1.3rem;
    font-weight: 400;
}

.buffet_section .content a {
    padding: 10px 55px;
}

@media (max-width: 996px) {
    .buffet_section {
        padding: 10% 5%;
        grid-template-columns: 1fr;
    }
    
    .buffet_section h2 {
        margin-bottom: 0;
    }
    
    .buffet_section > h2 {
        grid-column: auto;
        font-size: 2.3rem;
        margin-bottom: 20px;
    }
    
    .buffet_section .media {
        grid-row: 2;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .buffet_section .content {
        padding-right: 0;
        padding-top: 15px;
    }

    .buffet_section .content h2 {
        font-size: 2.3rem;
        text-align: left;
    }
}

.gallery_section {
    width: 100%;
    padding: 4% 13%;
    background-color: #b46a47;
}

.gallery_section h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 600;
}

.gallery_section .gallery {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    grid-template-rows: repeat(3, 240px);
    width: 100%;
    margin-top: 20px;
    gap: 10px;
}

.gallery_section .gallery div {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery_section .gallery div.large {
    /*display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 10px;*/
    grid-column: 2;
    grid-row: 1 / span 3;
}

.gallery_section .gallery div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .25s;
}

.gallery_section .gallery div:hover img {
    transform: scale(1.1);
}

@media (max-width: 996px) {
    .gallery_section {
        padding: 10% 5%;
    }
    
    .gallery_section h2 {
        font-size: 3rem;
    }
    
    .gallery_section .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    .gallery_section .gallery div.large {
        grid-column: 1;
        grid-row: auto;
    }

    .gallery_section .gallery div img {
        position: relative;
        width: 100%;
        height: auto;
    }
}

.reviews_section {
    width: 100%;
    padding: 3% 0;
    background-color: #eae1d9;
}

.reviews_section h2 {
    width: 100%;
    text-align: center;
    font-size: 2.3rem;
    color: #2a2f1f;
    margin-bottom: 30px;
}

.reviews_section .reviews_slider {
    width: 100%;
}

/*.reviews_section .reviews_slider > div {
    display: flex;
    justify-content: center;
    align-items: center;
}*/

.review_slide {
    width: 60vw!important;
    padding: 0 10%;
}

.review_slide p {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #2a2f1f;
}

.review_slide span {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2a2f1f;
}

.review_slide .stars {
    display: flex;
    justify-content: center;
    color: #676d59;
    font-size: 1.5rem;
}

@media (max-width: 996px) {
    .review_slide {
        width: 80vw!important;
    }
}

.instagram_section {
    width: 100%;
    padding: 4% 5%;
    background-color: #2a2f1f;
}

.instagram_section iframe {
    width: 100%;
    height: 600px;
}

@media (max-width: 996px) {
    .instagram_section {
        padding: 10% 5%;
    }
    
    .instagram_section iframe {
        width: 100%;
        height: 450px;
    }
}

#eapps-google-reviews-6c077a72-0289-4442-89a8-e2d433b047e4 > div > div > div > div.WidgetBackground__ContentContainer-sc-1ho7q3r-1.jUKeJm > div > a {
    display: none !important;
}
