/* contact */
.contact {
    color: #fff;
    padding-top: 60px;
    display: flex;
    justify-content: center;
}

.contact form {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(to bottom, #fff, #EEEEEE);
}

.contact .content {
    width: 100%;
    position: relative;
    margin: 0 auto;
    padding-bottom: 130px;
}

.contact .title {
    color: #ff8a00;
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 1em;
}

.contact .subtitle {
    font-family: 'PingFang Bold';
    font-size: 30px;
    color: #2c2c2c;
}

.contact p.txt {
    font-family: 'PingFang Regular';
    font-size: 20px;
    padding-top: 6px;
    line-height: 1.5em;
    color: #717171;
    padding-bottom: 10px;
}

.contact .txt {
    color: #8B8B8B;
}

.contact .form {
    width: 820px;
    margin: 10px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact .form select, .contact .form input, .contact .form textarea {
    font-family: 'PingFang Regular';
    width: 100%;
    font-size: 22px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: rgba(0, 0, 0, .1);
    padding: 13px 10px;
    color: #a2a2a2;
}

.contact .form textarea {
    font-family: 'PingFang Regular';
    font-size: 22px;
    color: #a2a2a2;
    margin-bottom: 55px;
}

.contact .form input[name="Name"], .contact .form input[name="Company"] {
    width: calc(50% - 25px);
}

.contact .button {
    width: 100%;
    text-align: center;
}

.contact .button a {
    font-family: 'PingFang Heavy';
    display: inline-block;
    margin: 0 auto;
    width: 220px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #ff8a00;
    color: #fff;
    border-radius: 35px;
    font-size: 22px;
}

.contact .role_img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 430px;
}

@media (max-width: 970px) {
    .contact .form {
        width: 90%;
    }

    .contact .role_img {
        width: 350px;
    }

    .contact .content {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .contact .role_img {
        width: 300px;
    }

    .contact .content {
        padding-bottom: 50px;
    }
}

@media (max-width: 568px) {
    .contact .form textarea {
        margin-bottom: 30px;
    }

    .contact .button a {
        width: 150px;
        height: 50px;
        line-height: 50px;
        border-radius: 25px;
        font-size: 16px;
    }

    .contact .role_img {
        width: 200px;
    }

    .contact .content {
        padding-bottom: 20px;
    }

    .contact .form input[name="Name"], .contact .form input[name="Company"] {
        width: calc(100% - 25px);
    }

    .contact .title{
        margin-bottom: 20px;
    }
}
