.background-tratamente {
    background-image: url("../images/background-template.jpg");
}

.box {
    z-index: 1000;
}



.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0rem 1rem;
}

#tratamente {
        padding: 2rem;
}

.box {
    border-radius: 20px;
}

@media only screen and (max-width: 750px) {
    .row .col-md-6:nth-child(2) {
        margin-top: 3rem;
    }
    
    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 550px) {
    /*#description-images-wrapper {*/
    /*    grid-template-columns: 1fr;*/
    /*    grid-template-rows: 1fr 1fr 1fr 1fr;*/
    /*}*/
    
    #tratamente {
        padding: 2rem 10px;
    }
    
    .grid {
        padding: 0;
    }
}

