
.menu-container{
    background: rgba(62, 57, 56, 0.2);
}
.single-header{
    height: 60vh;
    width: 100%;
    position: relative;
}
.single-header .container{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 70px 15px;
}
.banner-image{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -3;
}
.single-header::after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content:"";
    z-index: -2;
    background: linear-gradient(90deg, rgba(17, 17, 17, 0.6)0%,rgba(72, 79, 73, 0.1) 92.2%), linear-gradient(183deg, rgba(17, 17, 17, 0) 0%, rgba(72, 79, 73, 0) 92.2%);
}
.content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
h1{
font-weight: 800;
font-size: 52px;
color: #fff;
line-height: 130%;
}
.content p{
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    line-height: 130%;
}
.content{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media screen and (max-width: 1300px){
    .single-header{
        height: 55vh;
    }
}
@media screen and (max-width: 992px){
    .single-header{
        height: 60vh;
    }
    .single-header .container{
        flex-direction: column;
        justify-content: space-between;
        align-items:center;
    }
    .content,
    h1{
        text-align: center;
    }
    h1{
        font-size: 46px;
    }
    .content p{
        font-size: 16px;
    }
    .content-wrapper{
        margin: auto;
    }
    .single-header::after {
        background: linear-gradient(172deg, rgba(17, 17, 17, 0.7)0%, rgba(72, 79, 73, 0.1) 85.89%);
    }
    .content-wrapper{
        gap: 15px;
    }
}
@media screen and (max-width: 576px){
    .single-header{
        height: 60vh;
    }
    .single-header .container{
        padding: 40px 15px;
    }
    .single-header .button{
        width: 100%;
        justify-content: center;
    }
    h1{
        font-size: 38px;
        text-transform: uppercase;
    }
    .content p{
        font-size: 14px;
    }
}