#content{
    position: relative;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    color: #484848;
}

.left_pic figure{
    margin-top: 7%;
}
.content-left{
    flex: 1;
    display: flex;
}
.content-left img{
    width: 95%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.content-right{
    flex: 1;
    padding: 30px 25px;
    background-color: #e1e2e3;
    border-radius: 30px;
}

.right-describe{
    text-align: justify;
    font-size: 14px;
    line-height: 24px;
}

.contactform input[type=text], .contactform textarea {
    border: 2px solid #5d5d5d;
    padding: 2px;
    background-color: #e1e2e3;
    border-top: none;
    border-left: none;
    border-right: none;
}

.error{
    color: red;
}

@media only screen and (max-width: 768px) {
    .content-left{
        display: none;
    }
    .content-right{
        background-color: #ebebeb;
    }
    .right-describe{
        font-size: 16px;
    }
    .contactform input[type=text], .contactform textarea {
        border: 2px solid #5d5d5d;
        padding: 2px;
        background-color: #ebebeb;
        border-top: none;
        border-left: none;
        border-right: none;
    }
    #contactName, #phone_number, #email, #commentsText{
        display: block;
        margin: 1rem 0;
        width: 100%;
    }
}
