/*=========================================
Hero Section
=========================================*/

.mz-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

   background:#111;

}

.mz-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

}

.mz-hero .mz-container{

    position:relative;

    z-index:2;

}

.mz-hero h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
    color:#D4AF37;
}

.mz-hero p{

    color:#ddd;

    max-width:650px;

    margin:30px 0;

    font-size:18px;

}
.mz-hero-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    align-items:center;
    gap:70px;
    min-height:calc(100vh - 90px);
}

.mz-hero-content{
    z-index:2;
}

.mz-subtitle{
    color:#D4AF37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
}

.mz-hero-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.mz-hero-features{
    display:flex;
    gap:35px;
    margin-top:45px;
    color:#d5d5d5;
    flex-wrap:wrap;
}

.mz-hero-image{
    text-align:center;
}

.mz-hero-image img{
    width:100%;
    max-width:620px;
}

@keyframes floatFood{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}