.detail_contact_box {
    width: 980px;
    display: flex;
}

.detail_contact_content {
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.detail_contact_from {
    width: 50%;
}

.detail_contact_content h2 {
    font-size: 56px;
    font-weight: normal;
    color: #FCE012;
}

.detail_contact {
    margin-top: 180px;
}

.phone_media h3 {
    font-size: 16px;
    font-weight: normal;
    color: #FCE012;
    margin-bottom: 15px;
}

.phone_media span {
    font-size: 16px;
    color: #fff;
    display: block;
}

.phone_media_box {
    display: flex;
    margin-top: 45px;
}

.media_box {
    margin-left: 60px;
}

.media_box img {
    margin-right: 15px;
    cursor: pointer;
}

.contact_email h3 {
    font-size: 16px;
    font-weight: normal;
    color: #FCE012;
    margin-bottom: 15px;
}

.contact_email a {
    color: #fff;
}

.contact_email {
    margin-top: 35px;
}

.detail_contact_from form {
    width: 380px;
}

.detail_contact_from {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.detail_contact_from input {
    background-color: transparent;
    border: 1px solid #fff;
    height: 35px;
    margin-top: 10px;
}

.detail_contact_from label {
    font-size: 14px;
    color: #fff;
    display: block;
}

.input_name_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.input_name_box input {
    width: 180px;
    box-sizing: border-box;
}

.email_input input {
    width: 100%;
    box-sizing: border-box;

}

.email_input {
    margin-top: 20px;
}

.message_input {
    margin-top: 20px;
}

.message_input input {
    width: 100%;
}

.message_input textarea {
    background-color: transparent;
    border: 1px solid #fff;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;

}

.detail_contact_from button {
    width: 100%;
    height: 36px;
    border: 1px solid #FCE012;
    color: #000;
    background-color: #FCE012;
    margin-top: 15px;
    cursor: pointer;
    transition: 400ms;
}

.detail_contact_from button:hover {
    background-color: transparent;
    color: #FCE012;
}

@media screen and (max-width: 768px) {
    .detail_contact_box {
        display: block;
    }

    .detail_contact_content {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .detail_contact_from {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .input_name_box{
        display: block;
    }
    .input_name_box input{
        width: 100%;
    }
    .input_name_box .input_box{
        margin-top: 20px;
    }
    .detail_contact_from input {
        height: 45px;
    }
    .detail_contact_from label {
        font-size: 20px;
    }
    .detail_contact_from form{
        width: 100%;
    }
    .media_box {
        margin-left: 20px;
    }
}