    section {
        background-color: #eeeeee;
        padding: 138rem 0 138rem 180rem;
    }
    
    .content {
        background-image: url('../img/onlineMessage/background.jpg');
        background-size: 100% 100%;
        padding: 120rem 310rem 134rem 136rem;
        display: flex;
    }
    
    .content>div:first-of-type {
        width: 438rem;
        display: flex;
    }
    
    .content_right {
        flex: 1;
        background-color: white;
        padding: 70rem 80rem;
        font-size: 14rem;
    }
    
    .content_right>div:first-of-type {
        line-height: 30rem;
    }
    
    .form_inputs {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 32rem;
    }
    
    .form_input {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 28rem;
    }
    
    .required {
        width: 8rem;
        height: 8rem;
        background-color: #db2e1c;
        border-radius: 100%;
    }
    
    .form_input>div:last-of-type {
        flex: 1;
        margin: 0 15rem;
    }
    
    .form_inputs>.form_input:nth-child(2n)>div:last-of-type {
        margin-right: 0;
    }
    
    .form_input>div:last-of-type input {
        width: 100%;
        box-sizing: border-box;
        border: none;
        outline: none;
        background-color: #eeeeee;
        line-height: 40rem;
        padding: 0 14rem;
        font-size: 14rem;
    }
    
    .form_textarea textarea {
        background-color: #eeeeee;
        border: none;
        box-sizing: border-box;
        /* line-height: 40rem; */
        padding: 14rem;
        font-size: 14rem;
        list-style: none;
        resize: none;
        outline: none;
        width: 100%;
        height: 150rem;
    }
    
    .form_buttom {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 66rem;
    }
    
    .form_buttom input {
        line-height: 42rem;
        width: 158rem;
        text-align: center;
        color: white;
        font-size: 14rem;
        border-radius: 100rem;
        outline: none;
        border: none;
    }
    
    .form_buttom>div:first-of-type {
        margin-right: 28rem;
    }
    
    .form_buttom>div:first-of-type>input {
        background-color: #c30d23;
    }
    
    .form_buttom>div:last-of-type>input {
        background-image: linear-gradient(90deg, #d2a341, #ebc564);
    }
    
    @media only screen and (max-width: 999px) {
        section {
            padding: 30rem;
        }
        .content {
            padding: 50rem 30rem;
            display: block;
        }
        .content>div:first-of-type {
            width: 100%;
        }
        .content_right {
            padding: 30rem;
            font-size: 28rem;
        }
        .content_right>div:first-of-type {
            line-height: 40rem;
        }
        .form_inputs {
            display: block;
            margin-top: 40rem;
        }
        .form_input {
            width: 100%;
            margin-bottom: 40rem;
        }
        .required {
            width: 14rem;
            height: 14rem;
        }
        .form_input>div:last-of-type {
            margin-right: 0;
        }
        .form_input>div:last-of-type input {
            font-size: 28rem;
            line-height: 70rem;
            padding: 0 24rem;
        }
        .form_textarea textarea {
            font-size: 28rem;
            height: 200rem;
        }
        .form_buttom input {
            width: 200rem;
            font-size: 28rem;
            line-height: 60rem;
        }
    }