.pd_container {
    width: 100%;
    aspect-ratio: 3 / 1;

    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)) ,url("../_assets/_images/soy.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pd_textarea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 75%;
    padding: 10%;

    transition: all 0.8s;
    opacity: 0;
    transform: translateY(40px);
}

.pd_textarea.is_visible {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.pd_productsbutton {
    background-color: #004506;
    color: white;
    display: inline-block;
    padding: 2%;
}
