.contact-us-container {
    background-color: #000;
    color: #fff;
    padding: 20px;
}

.contact-us-container>h2 {
    font-family: Alibaba PuHuiTi 2.0;
    font-weight: 1000;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.contact-us-container>p {
    font-family: Alibaba PuHuiTi;
    font-size: 50px;
    line-height: 100%;
    text-transform: uppercase;
    color: #ACACAC;
    margin: 50px;
}

.contact-form {
    display: inline-block;
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 40px;
}

.form-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-input {
    display: inline-block;
    flex: 1;
    width: 5rem;
    margin-right: 20px;
    height: 96px;
    border-radius: 12px;

    padding: 10px;
    border: none;
    background-color: #eee;
    /* margin-right: 20px; */
    font-size: 30px;
}

.form-input:nth-last-child(1) {
    margin-right: 0;
}

.form-textarea {
    padding: 10px;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: none;
    font-family: Alibaba PuHuiTi;
    font-weight: 400;
    font-size: 30px;
    line-height: 70px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #E8E8E8;
    background-color: #eee;
}

.form-button {
    display: block;
    width: 320px;
    height: 80px;
    border-radius: 45px;

    background-color: #000;
    color: #fff;
    border: none;
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    cursor: pointer;
    font-family: Alibaba PuHuiTi 2.0;
    font-weight: 1000;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}


@media screen and (max-width: 800px) {
    .contact-us-container>h2 {
        margin: 20px;
        font-size: 4rem;
    }

    .contact-us-container>p {
        font-size: 3rem;
    }

    .contact-form>.form-textarea {
        height: 40rem;
        padding: 2rem;
        font-size: 3rem;
    }

    .form-row>.form-input {
        height: 10rem;
        padding: 1rem;
        font-size: 3rem;
    }

    .form-button{
        margin-top: 40px;
        transform: scale(1.2);
    }
}