#product{
    width: 100%;
    height: 600px;
    background-color: #0A0A0A;
}

#product > div{
    float: left;
    width: 50%;
    height: 100%;
}

#product-text{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

#product-text > div{
    width: 65%;
    margin: 0 auto;
}

#product-image{
    background-image: url(../img/banners/producto.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    transition: background-size 0.3s ease;
}

#product-text p{
    font-size: 19px;
    line-height: 35px;
}

#product-box-1{
    position: absolute;
    left: 25px;
    top: 25px;
}

#product-box-2{
    position: absolute;
    right: 25px;
    top: 25px;
}

#product-box-3{
    position: absolute;
    left: 25px;
    bottom: 25px;
}

@media only screen and (max-width: 599px) {
    #product{
        height: auto;
    }

    #product > div{
        float: initial;
        width: 100%;
        height: auto;
    }

    #product-text > div{
        width: 90%;
        margin-top: 60px;
        margin-bottom: 10px;
    }

    #product-text p{
        font-size: 14px;
        line-height: 21px;
    }

    #product-image{
        height: 612px !important;
    }

    #product-box-2 {
        left: calc(50% - 147px);
        top: 311px;
    }

    #product-box-1 {
        left: calc(50% - 147px);
        top: 131px;
    }

    #product-box-3 {
        left: calc(50% - 147px);
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    #product{
        height: auto;
    }

    #product > div{
        float: initial;
        width: 100%;
        height: auto;
    }

    #product-text > div{
        width: 90%;
        margin-top: 60px;
        margin-bottom: 10px;
    }

    #product-text p{
        font-size: 16px;
        line-height: 23px;
    }

    #product-image{
        height: 612px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){
    #product-text > div{
        width: 85%;
    }

    #product-text p {
        font-size: 21px;
        line-height: 30px;
    }

    #product-box-2 {
        left: 25px;
        top: 299px;
    }

    #product-box-1 {
        left: 25px;
        top: 119px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #product-text > div{
        width: 85%;
    }

    #product-text p {
        font-size: 21px;
        line-height: 30px;
    }

    #product-box-2 {
        left: 25px;
        top: 299px;
    }

    #product-box-1 {
        left: 25px;
        top: 119px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1727px) {
    #product-text > div{
        width: 75%;
    }

    #product-box-2 {
        right: 25px;
        top: 255px;
    }
}
