.au_container {
    width: 100%;
    aspect-ratio: 5 / 1;

    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;

    background-color: #ffffff;
}

.au_textarea.is_visible {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

.au_textarea {
    align-self: center;
    justify-self: center;

    margin-left: 10%;
    margin-right: 10%;

    transition: all 0.8s;
    opacity: 0;
    transform: translateY(40px);
}

.au_image {
    border-right: 2px solid #588528;
    margin: 3%;
    margin-left: 0%;

    /*
    width: 50%;
    width: 35%;
    width: 20%;
    */
    width: 30%;
    height: auto;
    
    padding: 0 2%;
}

.au_productsbutton {
    background-color: #004506;
    color: white;
    display: inline-block;
    margin-top: 5%;
    padding: 2%;
}

@media screen and (max-width: 768px) {
    .au_image{
        display: none;
    }

    .au_textarea{
        padding: 10% 0;
    }
}