.menu_product{
    width: 100%;
    height: 20.8rem;
}
.menu_product .list_menu{
    width: 100%;
    height: 100%;
    display: flex;
}
.menu_product .list_menu li{
    width: 50%;
    height: 100%;
    background-color: #E5E5E5;
    display: flex;
    cursor: pointer;
    transition: all 0.3s linear;
    position: relative;
}
.menu_product .list_menu li h1{
    font-weight: normal;
    font-size: 3rem;
    text-align: left;
    color: #191f22;
    text-transform: uppercase;
    transition: all 0.1s linear;
}
.menu_product .list_menu li a{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}
.menu_product .list_menu li:first-child a{
    justify-content: end;
}
.menu_product .list_menu li:last-child a{
    padding-left: 15.7rem;
}
.menu_product .list_menu li:first-child a{
    padding-right: 15.7rem;
}
.menu_product .list_menu li.active h1{
    font-weight: bold;
}
.menu_product .list_menu li.active{
    background-color: #D7B369;
}
.menu_product .list_menu li::before{
    content: "";
    position: absolute;
    bottom: -1.8rem;
    width: 3.7rem;
    height: 3.7rem;
    background-color: #E5E5E5;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.3s linear;
}
.menu_product .list_menu li.left::before{
    right: 1.5rem;
}
.menu_product .list_menu li.right::before{
    left: 1.5rem;
}
.menu_product .list_menu li.left.active::before{
    opacity: 1;
    background-color: #D7B369;
}
.menu_product .list_menu li.right.active::before{
    opacity: 1;
    background-color: #D7B369;
}
.product{
    width: 100%;
    height: 100%;
    background-color: #F7F8FC;
    padding-top: 4.3rem;
}
.product .list_product h2{
    font-weight: 900;
    font-size: 3rem;
    text-align: center;
    color: #585a5f;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 5.2rem;
}
.product .list_product h2::after{
    content: "";
    display: block;
    position: absolute;
    background-color: #d7b369;
    width: 6.8rem;
    height: 0.6rem;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}
.product .list_product ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding-bottom: 4.8rem;
}
.product .list_product ul li{
    display: flex;
    flex-direction: column;
    width: 42rem;
    height: 28rem;
    align-items: center;
    position: relative;
    margin-bottom: 4.1rem;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.product .list_product ul li a{
    width: 100%;
    height: 100%;
}
.product .list_product ul li picture{
    width: 100%;
    height: 100%;
}
.product .list_product ul li picture::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(rgba(255, 255, 255, 0) 30%, rgba(35, 33, 33, 0.6) 90%);
}
.product .list_product ul li img{
    width: 100%;
    min-height: 28rem;
}
.product .list_product ul li h3{
    width: 90%;
    font-weight: 900;
    font-size: 2.4rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
}