.sectionBanner{
    width: 100%;
    height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    background: url('/image/aboutImg1_3.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    text-align: center;
}

.sectionBanner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(15, 23, 43,0.85);
    z-index: -1;
}
.sectionBanner .content{
    text-align: center;
}
.sectionBanner .content h2{
    font-size: 5rem;
    color: white;
    margin-bottom: 3rem;
}

.sectionBanner .content p{
    text-align: center;
    color: white;
}
.sectionBanner .content p span{
    padding: .5rem;
}
.sectionBanner .content p span:nth-child(1),
.sectionBanner .content p span:nth-child(3){
    color: var(--yellow);
}
.sectionBanner .content p span:nth-child(2),
.sectionBanner .content p span:nth-child(4){
    color: #8d8c8c;
}


/* ------------------ CHEF MEMBER SECTION ----------------------------- */
.chef .container .chef_container_box{
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5rem 2rem;
}
.chef .container .chef_container_box .chefBox {
    position: relative;
    text-align: center;
    background: var(--white);
    padding:2rem 2rem 0;
    border-radius: 10px;
    transition: all 1s ease;
}


.chef .container .chef_container_box .chefBox::after{
    content: '';
    transition: all .2s ease;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 11%;
    background: #f4f4f4;
    z-index: 2;
}

.chef .container .chef_container_box .chefBox:hover:after{
    bottom: -40px;
}
.chef .container .chef_container_box .chefBox .image{
    margin:0 auto 2rem;
    position: relative;
    height: 20rem !important;
    height: auto;
}
.chef .container .chef_container_box .chefBox .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.chef .container .chef_container_box .chefBox .content .position{
    font-size: 1.2rem;
    color: var(--white);
    padding: .5rem 1.5rem;
    background: var(--yellow);
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.chef .container .chef_container_box .chefBox .content .username{
    font-size: 2rem;
    margin-bottom: 3rem;
}

.chef .container .chef_container_box .chefBox  
.follow_chef{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all .2s ease;
}

.chef .container .chef_container_box .chefBox  
.follow_chef i{
    font-size: 2rem;
    color: var(--white);
    background: var(--yellow);
    padding: .8rem;
    border-radius: 10px 10px 0 0;
}

.chef .container .chef_container_box .chefBox  
.follow_chef i:hover{
    background: var(--yellowHover);
    cursor: pointer;
}



@media screen and (max-width:991px){
    .chef .container .chef_container_box{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:678px){
    .chef .container .chef_container_box{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:480px){
    .chef .container .chef_container_box{
        padding: 0 3rem;
        grid-template-columns:1fr;
        gap: 5rem 0;
    }
}