.testimonials-add-content {
    position: absolute;
    bottom: 20%;
    right: 32px;
}

.testimonial-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 80px 0;
/*    background: url("../img/banner1.jpg") no-repeat;
    background-position: center center;
    background-size: cover;*/
    display: none;

}

.testimonial-content-show {
    display: block;
}

.testimonial-content-form {
    padding: 10px 100px;
    margin: 0 auto;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 50vw;
    border-radius: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.message {

    color: white;
    margin-bottom: 10px;
    text-align: center;
    border-radius: 10px;
}

.message-success {
    background-color: green;

}

.message-fail {
    background-color: red;

}


.testimonial-content-form input,
.testimonial-content-form textarea {
    background-color: rgba(256, 256, 256, 0.5)
}

@media screen and (max-width: 1000px) {
    .testimonial-content-form {
        width: 75vw;
    }

}


@media screen and (max-width: 600px) {
    .testimonial-content-form {
        width: 90vw;
        padding: 10px 20px;
    }

    #userProfession {
        margin-top: 10px;
    }

}