body{
    font-family: "Open Sans", sans-serif;
    background-image: url(../img/productos/product_back.jpg) ;
    width:100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    overflow-x: hidden;
}
.orange-min {
    opacity: 0;
}
.flex{
    display: flex;
    flex-wrap: wrap;
    
}
.flex-col{
    flex-direction: column;
}
.gap-3{
    gap: 3rem;
}
h2.title{
    text-align: center;
    color: green;
    font-size: 55px;
    padding-top: 50px;
    margin:0px;

}
section{
   padding-top: 5%;
 
   
}
.list_products{
    display: flex;
    justify-content: center;
    padding-top: 5%;
    position: relative;
    max-width: 90%;
    margin: auto;
}
/* .list_products::after{
    content: "";
    background-image: url(./assest/banner.png);
    width:100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -125%;
    left: 0px;
} */
.product{
    width: 340px;
    border-radius: 23px;
    background-color: #fff;
    box-shadow: 1px 1px 1px 1px 1px;
    justify-content: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 3px 6px -3px #CCC;
    position: relative;
}
.title {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-direction: row;
}
.title img{
    width: 25%;
    height:25%;
    margin-right: 10px;
}
.content_product{
    width: 100%;
}
.product_description{
 padding: 10px;
 max-width: 50%;
}
.product_description h3,
.product_description p{
    margin: 0px;
}
.description {
    padding-top: 34px;
    padding-left: 10px;
    padding-right: 10px;
    gap: 5px;
}
.description p{
    font-size: 10px;
}
.description h3{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}
.prices.green-flag,
.prices.red-flag{
    position: absolute;
    top: 0px;
    left: -14px;
    display: flex;
    justify-content: center;
    width: 100px;
    height: 37px;
    align-items: center;
    
    border-radius: 23px 23px 23px 0px;
}
.prices.green-flag{
    background-color: #198d4f;
}
.prices.red-flag{
    background-color: #fd3131;
}
.prices::after{
    content: "";
    position: absolute;
    top: 36px;
    left: 0px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 0px solid transparent;
    transform-origin: center bottom;
}
.prices.green-flag::after{
    border-top: 20px solid #0f6137;
}
.prices.red-flag::after{
    border-top: 20px solid #c02e2a;
}
.prices span{
    color: #fff;
    font-weight: bold;
}
.prices b{
    font-size: 7px;
    color: #fff;
}

.product_img{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    border-radius: 23px;
    width: 150px;
    height: 150px;
    max-width: 50%;
    
}
.product_img img{
    max-width: 100%;
    transition: transform 0.4s ease-in-out;
}
.product_img img:hover {
    transform: scale(1.6); 
}
.btn_payment{
    position: absolute;
    bottom: -10px;
    left: 0px;
    right: 0px;
    margin: auto;
    justify-content: center;
    display: flex;
}
.btn_payment button{
    font-size: 20px;
    padding: 4px 30px;
    border-radius: 25px;
    position: relative;
    bottom: -10px;
    background: #f4ce34;
    border-color: transparent;
    color: #fff;
    transition: .3s all;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}
.btn_payment button:hover {
    border: 1px solid #f4ce34;
    background-color: #fff;
    color: #f4ce34;
}
@media (max-width: 1500px) {
    body {
     background-image:  url(../img/productos/product_back-1500.jpg) ;
     background-color: #e8f6ff;
    }
    .title img{
        width: 30%;
        height:30%;
        margin-right: 10px;
    }
}

@media (max-width: 1360px) {
    body {
     background-image:  url(../img/productos/product_back-1360.jpg) ;
     background-color: #e8f6ff;
    }
    .title img{
        width: 40%;
        height:40%;
        margin-right: 10px;
    }
}
@media (max-width: 1000px) {
    body {
     background-image:  url(../img/productos/product_back-1000.jpg) ;
     background-color: #e8f6ff;
    }
    .title img{
        width: 45%;
        height:45%;
        margin-right: 10px;
    }
}
@media (max-width:860px) {
   
    .title img{
        width: 55%;
        height:55%;
        margin-right: 10px;
    }
}
@media (max-width: 768px) {
   body {
    background-image:  none;
    background-color: #e8f6ff;
   }
   .orange-min {
    opacity: 100%;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 600px;
    height: 200px;
    margin-left: 80px;
   }
   .title-productos {
    opacity: 0;
   }
 
   .title img{
    width: 75%;
    height:75%;
    margin-right: 10px;
    margin-bottom: 50px;
    margin-top: 50px;
}
.datos-portada {
    width: 100%;
}

}