    .footer1 .message form {
        display: none;
    }

    form {
        margin-top: 45px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        grid-gap: 30px;
    }

    label {
        display: flex;
        flex-wrap: wrap;
    }

    label h1 {
        width: 100%;
        font-size: 18px;
        line-height: 2;
        color: #585858;
    }

    label input {
        width: 100%;
        height: 45px;
        background: #f5f5f5;
        padding-left: 15px;
    }

    label textarea {
        width: 100%;
        height: 100px;
        background: #f5f5f5;
        padding-top: 15px;
        padding-left: 15px;
    }

    .input1 {
        width: calc(50% - 15px);
    }

    .input2 {
        width: 100%;
    }

    .input3 {
        width: 100%;
    }

    .input3 input {
        width: calc(100% - 260px);
        margin-right: 30px;
    }

    .input3 img {
        width: 230px;
        height: 45px;
        background: #fff;
    }

    .input4 {
        margin: 0 auto;
        width: 210px;
        height: 45px;
        background: var(--color);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: #FFFFFF;
    }

    @media (max-width: 1200px) {
        form {
            grid-gap: 30px 0;
        }

    }

    @media (max-width:720px) {
        form {
            margin-top: 30px;
        }

        label h1 {
            font-size: 16px;
        }

        label input {
            height: 45px;
        }

        .input1 {
            width: 100%;
        }

        form {
            grid-gap: 15px 0;
        }

        label h1 {
            margin-bottom: 5px;
        }

        label textarea {
            height: 100px;
        }

        .input3 input {
            width: calc(100% - 150px);
        }

        .input3 img {
            width: 120px;
            height: 45px;
        }

        .input4 {
            margin: 0 auto;
            margin-top: 30px;
            width: 180px;
            height: 45px;
            font-size: 16px;
        }
    }