@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import 'https://cdn.jsdelivr.net/npm/swiper@12/swiper-bundle.min.css';

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    
}

body 
{
    min-width: 1200px;
}


.s-wrap 
{
    padding: 38px 0;
}

.s-wrap.primary 
{
    background: #E4791A;
}

.s-wrap.dark 
{
    background: #281E18;
}

.s-title 
{
   
    font-size: 44px;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFEBC0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    line-height: .8;
}

.s-title-icon 
{
    height: 50px;
}

.container
{
    margin: auto;
    width: 1200px;
    height: 100%;
    position: relative;
    padding: 0 15px;
}

.header 
{

    width: 100%; height: 220px;
    padding-bottom: 50px;
    background: #281E18;
}

.header-fx
{
    display: flex;
    justify-content: space-between;
}

.header-logo-img 
{
    width: auto;
    height: 134px;
}

.header-nav 
{
    display: flex;
    gap: 20px;
}

.nav-link 
{
    height: 110px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #FFEBC0;
    padding: 30px 50px;
    transition: .4s;
}

.nav-link:nth-of-type(1),
.nav-link:nth-of-type(2)
{
    background-image: url(../img/link1.svg);
}

.nav-link:nth-of-type(3)
{
    background-image: url(../img/link2.svg);
}

.nav-link:hover 
{
    transform: scale(.9);
}

.areal
{
    padding: 100px 0 150px;
    background: #FFECC1 url(../img/areal-bottom.svg)no-repeat bottom/contain;
    overflow-x: hidden;
}

.areal-img 
{
    width: 50%;
}

.areal-label-over 
{
    position: absolute;
    bottom: 0px;
    left: 44%;
    width: 320px;
    height: 110px;
    z-index: 9;
}

.areal-label
{
    position: absolute;
    bottom: 0px;
    left: 44%;
    width: 320px;
    height: 110px;
    background: url(../img/areal-label.svg)no-repeat center/contain;
    font-size: 28px;
    font-weight: bold;
    color: #FFECC1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
    opacity: 0;
}

.areal-label:hover
{
    opacity: 1;
}

.areal-label:before 
{
    content: "";
    width: 420px;
    height: 400px;
    position: absolute;
    bottom: -150px; right: -570px;
}

.prod 
{
    background: #FFECC1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 780px;
}

.prod-img 
{
    width: 100%;
    position: absolute;
    z-index: 9;
}

.prod-text 
{
    font-size: 30px;
    font-weight: bold;
    color: #281E18;
    position: absolute;
    top: 80px; right: 150px;
    text-align: center;
    }

.prod .container 
{
    transition: .4s;
    opacity: 0;
}

.prod-img:hover + .container
{
    opacity: 1;
}



.food 
{
    padding: 165px 0;
    background: #FFECC1;
}

.food-fx 
{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 50px;
}

.food-article
{
    width: 240px;
    padding: 5px;
    text-align: center;
    transition: .4s;
}

.food-article:hover 
{
    transform: scale(1.2);
}

.food-article-img 
{
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.food-article-title 
{
    font-size: 24px;
    font-weight: bold;
    color:#281E18;
    margin-top: 30px;
}

.footer 
{
    background: #281E18;
    padding: 100px 0 60px;
    text-align: center;
}

.footer-logo-img 
{
    height: 60px;
}

.swiper-button-prev,
.swiper-button-next
{
    color: #FFEBC0;
}