two-products{
    width:100%;
    display:grid;
    grid-template-columns: repeat(2,1fr);
}
two-products .two-products_container{
    position: relative;
    display:flex;
    justify-content: center;
    overflow:hidden;
}
two-products .two-products_image{
    width:100%;
    height:100%;
    max-height: 80vh;
    transition: all 0.3s;
}
two-products .two-products_product-card-container{
    position: absolute;
    bottom:50px;
    width: 100%;
}
two-products .two-products_product-card{
    margin:auto;
    display:flex;
    gap:14px;
    width: 100%;
    padding:12px 29px 12px 12px;
    border-radius: 10px;
    background: rgba(77, 63, 50, 0.50);
    backdrop-filter: blur(17.5px);
    position: relative;
}
two-products .product-image{
    max-width:74px;
    border-radius: 10px;
}
two-products .product-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:10px;
}
two-products .product-buttton{
    margin-left: auto;
    display:flex;
    align-items:center;
    --button-border-width:1px;
}
two-products .two-products_container:hover .two-products_image{
    transform: scale(1.1);
}
@media(max-width:768px){
    two-products{
        grid-template-columns: repeat(1,1fr);
    }
    two-products .two-products_product-card{
        max-width:571px;
        padding: 1.6vw;
    }
    two-products .two-products_product-card-container{
        bottom:8.5714vw;
    }
    two-products .product-buttton{
        position: absolute;
        bottom: 1.6vw;
        right: 1.6vw;
    }

    two-products .product-image{
        max-width:10vw;
        border-radius: 10px;
    }
}