.dq-inquiry-form {
    padding: var(--content-gap) 0;
}

.dq-inquiry-form .form-list {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-left: var(--page-padding);
}

.form-list .form-left {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 60px 0;
    width: 600px;
}

.form-left .left-con {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.form-left .left-item {
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: var(--title-size-h3);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
}

.left-item .ico {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.form-left .left-item::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    bottom: calc(-100% - 12px);
    left: 20px;
    background: var(--primary-color);
}

.form-left .left-item:last-child::after {
    display: none;
}

.form-left .deqing-btn {
    background: var(--primary-color);
}

.form-left .deqing-btn:hover {
    color: #fff !important;
}

.form-list .form-right {
    width: 988px;
    position: relative;
    padding: 72px 100px;
}

.form-right .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: left;
}

#right-form form {
    row-gap: 36px;
}

#right-form form div {
    margin: 0;
    padding: 0;
}

#right-form .input-label,
#right-form .char-count {
    display: none;
}

#right-form .inqury-form .phone-wrap .bootstrap-select>.dropdown-toggle.bs-placeholder,
#right-form .inqury-form .phone-wrap .bootstrap-select {
    background: transparent;
    color: #B7B7B7;
    font-family: var(--font-family);
    font-size: var(--title-size-h5);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#right-form .inqury-form .phone-wrap .bootstrap-select>.dropdown-toggle.bs-placeholder {
    border-radius: 0;
    border: none;
}

#right-form .inqury-form .phone-wrap .bootstrap-select {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #fff;
}

#right-form .inqury_title_box {
    display: none;
}

#right-form input {
    background: transparent;
    color: #B7B7B7;
    font-family: var(--font-family);
    font-size: var(--title-size-h5);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    height: 80px !important;
    /* height: 40px !important; */
    padding-bottom: 40px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #fff;
}

#right-form input::placeholder {
    color: #B7B7B7;
    font-family: var(--font-family);
    font-size: var(--title-size-h5);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#right-form textarea {
    background: transparent;
    color: #B7B7B7;
    font-family: var(--font-family);
    font-size: var(--title-size-h5);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-bottom: 40px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #fff;
}

#right-form .input-wrap {
    padding: 0 30px;
}

#right-form button[type='submit'] {
    display: inline-flex;
    width: 420px;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--title-size-h4);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.64px;
    margin-top: 36px;
}

#right-form .crmForm-error {
    color: #fff;
}

@media screen and (max-width: 1500px) {

    .form-list .form-left,
    .form-list .form-right {
        width: 50%;
    }

    .form-list .form-right {
        padding: 40px;
    }

    .form-list .form-right {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 1200px) {
    #right-form input {
        height: 60px !important;
        padding-bottom: 10px;
    }

    #right-form button[type='submit'] {
        width: 50%;
    }
}

@media screen and (max-width: 992px) {

    .dq-inquiry-form .form-list {
        flex-direction: column;
        padding: 0 var(--page-padding);
        margin-top: 30px;
    }

    .form-list .form-left,
    .form-list .form-right {
        width: 100%;
    }

    .form-list .form-left {
        padding: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    #right-form .half {
        padding: 0;
    }

    #right-form .input-wrap {
        padding: 0;
    }

    #right-form form {
        gap: 20px;
    }

    #right-form button[type='submit'] {
        width: 100%;
        margin-top: 10px;
    }

    .form-list .form-right {
        padding: 20px;
    }
}