/*@font-face {
    font-family: Tetra;
    src: url(../assets/fonts/Tetra-Regular.woff2) format('woff2'),
         url(../assets/fonts/Tetra-Regular.woff) format('woff');
    font-display: swap;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: Surveyor;
    src: url(../assets/fonts/SurveyorFineMedium.woff2) format('woff2'),
         url(../assets/fonts/SurveyorFineMedium.woff) format('woff');
    font-display: swap;
}
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

:root {
    font-size: 10px;
}

.light_btn {
    display: block;
    width: fit-content;
    padding: 14px 30px;
    background-color: #b46a47;
    font-size: 1.3rem;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: .2s;
}

.light_btn:hover {
    background-color: #676d59;
    color: #fff;
    border: 2px solid #b46a47;
}

.dark_btn {
    display: block;
    width: fit-content;
    padding: 10px 40px;
    background-color: #eae1d9;
    font-size: 1.3rem;
    color: #2a2f1f;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s;
    outline: none;
}

.dark_btn:hover {
    background-color: #fff;
    border: 2px solid #686d59;
    color: #000;
}


@media (max-width: 996px) {
    :root {
        font-size: 10px;
    }
}

.featured_dishes_section {
    width: 100%;
    padding: 4% 0;
    background-color: #fff;
}

.featured_dishes_section h2 {
    width: 100%;
    text-align: center;
    color: #686d59;
    font-size: 2.3rem;
}

.dishes_slider {
    width: 100%;
    height: 200px;
    margin-top: 30px;
}

.dishes_slider div {
    height: 100%;
}

.dishes_slider .dishes_slide img {
    height: 100%;
}

@media (max-width: 996px) {
    .featured_dishes_section {
        padding: 10% 0;
    }

    .featured_dishes_section h2 {
        font-size: 3rem;
    }
    
    .dishes_slider {
        width: 100%;
        height: 130px;
        margin-top: 20px;
    }
}