.product-btn{
    display: flex;
    justify-content: space-around;
}
.product-btn button{
    outline-style: none;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #f6985b;
    /*font-weight: 600;*/
    cursor: pointer;
}
.product-btn .product-quote button{
    background-color: #f6985b;
}
.product-btn .product-chat button{
    background-color: #ffffff;
    color: #f6985b;
    height: 100%;
}
.product-btn .product-quote button:hover,
.product-btn .product-chat button:hover{
    background-color: #e08950;
    color: #ffffff;
}
.product-btn.by-search .product-quote,
.product-btn.by-search .product-chat{
    width: 100%;
}
.product-btn.by-search button{
    width: 100%;
    height: 100%;
}
@media (max-width: 1250px) {
    .product-btn{
        flex-direction: column;
    }
    .product-btn button{
        width: 100%;
    }
}