#eshop .container {
    width: 100%;
}
#eshop .section_banner_area {
    padding-bottom: 0;
}

#eshop .section_banner_title {
    font-size: 3vw;
    font-weight: 700;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%);
    letter-spacing: 6px;
}
.product_row {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.product_card {
    width: 33%;
    padding: 1.5%;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    gap: 15px;
    line-height: 1.6rem;
    outline: transparent;
    transition: all 300ms;
    border-radius: 20px;
}
.product_card:hover {
    outline: 1px solid #c9c9c9;
}
.product_card_title {
    flex: 1;
    font-size: 18px;
}
.product_card_price {
    font-size: 35px;
    color: #24408C;
}

.product_btn {
    font-size: 20px;
    padding: 8px 30px;
    background: #80889B;
    color: white;
    display: inline-block;
    margin-top: 5px;
}

@media screen and (max-width:640px) {
    #eshop .section_banner_area {
        margin-top: 110px;
    }
    #eshop .section_banner_title {
        font-size: 5vw;
    }
    .product_card {
        width: 50%;
        padding: 2%;
    }
    .product_card_title {
        font-size: 20px;
    }
}