.fp_container {
    width: 100%;
    aspect-ratio: 3 / 1;
    padding-top: 10vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../_assets/_images/soja_hd.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fp_text {
    text-align: center;
    color: white;
}

.fp_title {
    width: 60%;
    height: auto;
}

.fp_textarea {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 75%;

    transition: all 0.8s;
    opacity: 0;
    transform: translateY(40px);
}

.fp_textarea.is_visible {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

@media screen and (max-width: 768px) {
    /*.fp_text {
        display: none
    }*/
    .fp_textarea {
        padding: 5% 5%;
    }

    .fp_title {
        width: 100%;
    }
}