.contact_wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

@media screen and (max-width: 1024px) {
    .contact_wrapper {
        max-width: 600px;
    }
}

.contact_wrapper .heading {
    margin-top: 220px;
}

@media screen and (max-width: 1024px) {
    .contact_wrapper .heading {
        margin-top: 120px;
    }
}

@media screen and (max-width: 600px) {
    .contact_wrapper .heading {
        margin-top: 90px;
        margin-bottom: 30px;
    }
}

/* Form */

.form_content .flex_box_1 {
    align-items: center;
}

@media screen and (max-width: 600px) {
    .form_content .flex_box_1 {
        text-align: left;
    }
}

.form_content .form_label_title {
    line-height: 25px;
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    .form_content .form_label_title {
       font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .form_content .form_label_title {
       font-size: 14px;
    }
}

.form_content span {
    display: block;
    color: #D1191C;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .form_content span {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .form_content span {
        display: inline;
        margin-left: 5px;
    }
}

.form_content .input_box {
    width: 70%;
}

@media screen and (max-width: 600px) {
    .form_content .input_box {
        width: 100%;
    }
}

.form_content .input_a {
    width: 100%;
    height: 80px;
    background-color: #f4f4f4;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
    font-size: 18px;
    color: #555;
    padding-left: 50px;
}

@media screen and (max-width: 1024px) {
    .form_content .input_a {
        font-size: 16px;
        padding-left: 30px;
    }
}

@media screen and (max-width: 600px) {
    .form_content .input_a {
        padding-left: 20px;
        border-radius: 10px;
    }
}

.form_content .input_a::placeholder {
    font-size: 18px;
    opacity: .3;
}

@media screen and (max-width: 1024px) {
    .form_content .input_a::placeholder {
        font-size: 16px;
    }
}

.form_content .input_a:focus {
    border-color: #F4CE20;
}

.form_content .checkbox_box {
    width: 70%;
}

@media screen and (max-width: 600px) {
    .form_content .checkbox_box {
        width: 100%;
        margin-top: 10px;
    }
}

.form_content .checkbox_content {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .form_content .checkbox_content {
        margin-bottom: 10px;
    }
}

.form_content .checkbox_content p {
    font-size: 18px;
}

@media screen and (max-width: 1024px) {
    .form_content .checkbox_content p {
        font-size: 16px;
    }
}

.form_content .checkbox_content input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    margin-right: 15px;
}

@media screen and (max-width: 1024px) {
    .form_content .checkbox_content input[type="checkbox"] {
        width: 15px;
        height: 15px;
        border-radius: 3px;
        margin-right: 15px;
    }
}

@media screen and (max-width: 600px) {
    .form_content .checkbox_content input[type="checkbox"] {
        margin-right: 10px;
    }
}

.form_content .textarea_box {
    width: 70%;
}

@media screen and (max-width: 600px) {
    .form_content .textarea_box {
        width: 100%;
    }
}

.form_content textarea {
    width: 100%;
    height: 300px;
    border: none;
    background-color: #f4f4f4;
    border-radius: 20px;
    padding-left: 50px;
    padding-top: 30px;
    box-sizing: border-box;
    color: #555;
    font-size: 18px;
}

@media screen and (max-width: 1024px) {
    .form_content textarea {
        padding-left: 30px;
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .form_content textarea {
        padding-left: 20px;
        border-radius: 10px;
    }
}

.form_content textarea::placeholder {
    font-size: 18px;
    opacity: .3;
}

@media screen and (max-width: 1024px) {
    .form_content textarea::placeholder {
        font-size: 16px;
    }
}

@media screen and (max-width: 810px) {
    #contact .link_area_box p {
        font-size: 14px;
    }
}