body {
    -ms-overflow-style: none;
}
body::-webkit-scrollbar {
    display: none;
} 
.page {
    background-color: var(--gray-100);
    padding: 20px 0;
    overflow: visible;
}
.footer {
    display: none;
}


/*----------------- contact_sec -----------------*/
.contact_sec {
    height: 100%;
    min-height: calc(100dvh - 40px);
    padding: 0 20px;
    border-radius: var(--radius-lg);
    background-color: var(--white);
}
.contact_sec .flex {
    width: 100%;
    max-width: 1440px;
    min-height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: start;
}

/*-- contact_l --*/
.contact_l {
    width: 100%;
    max-width: 500px;
    height: calc(100dvh - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    left: 0;
}
.contact_l .title {
    font-size: var(--ft50);
}
.contact_l .title.lg {
    font-size: var(--ft70);
}
.contact_l .text {
    margin-top: 24px;
    font-size: var(--ft18);
    color: var(--gray-500);
}
.step {
    margin-bottom: 40px;
    display: flex;
    gap: 24px;
}
.step div {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
    position: relative;
}
.step div::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--dark-line);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
}
.step div:last-child::before {
    display: none;
}
.step div.active {
    background-color: var(--primary);
    color: var(--white);
}
.contact_btn_list {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.contact_btn {
    width: 120px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.contact_btn p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
}
.contact_btn img {
    width: 18px;
    height: 18px;
    transition: transform .3s ease;
}
.contact_btn.prev {
    background-color: var(--gray-100);
}
.contact_btn.prev p {
    color: var(--gray-400);
}
.contact_btn.next {
    background-color: var(--primary);
}
.contact_btn.next p {
    color: var(--white);
}
.contact_btn.send_data {
    width: 160px;
    background-color: var(--primary);
}
.contact_btn.send_data p {
    color: var(--white);
}
.contact_btn.prev:hover img {
    transform: translateX(-5px);
}
.contact_btn.next:hover img {
    transform: translateX(5px);
}
.contact_btn.send_data:hover img {
    transform: translateX(5px);
}

/*-- contact_r --*/
.contact_r {
    width: 100%;
    margin-top: 20vh;
    margin-bottom: 80px;
    padding-left: 140px;
    border-left: 1px solid var(--dark-line);
}

.f_box {
    margin-bottom: 80px;
}
.f_box:last-child {
    margin-bottom: 0;
}
.f_h {
    margin-bottom: 32px;
}
.f_title {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
}
.f_text {
    margin-top: 16px;
    color: var(--gray-500);
}
.f_text span {
    color: var(--primary);
}

/*-- f_input --*/
.f_input {
    width: 100%;
    margin-bottom: 14px;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    background-color: var(--gray-100);
}
.f_input * {
    width: 100%;
}
.f_input input,
.f_input textarea {
    font-weight: var(--medium);
}
.f_input input::placeholder,
.f_input textarea::placeholder {
    font-weight: var(--medium);
    color: var(--gray-400);
}
.input_text {
    font-size: 13px;
    font-weight: var(--medium);
    margin-bottom: 12px;
}
.input_text span {
    color: var(--primary);
}
.f_textarea {
    margin-top: 14px;
}
.f_textarea textarea {
    min-height: 120px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;   
}

/*-- f_chk --*/
.f_chk {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.f_chk label {
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px 20px 30px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(256, 256, 256, 0);
    background-color: var(--gray-100);
    cursor: pointer;
}
.f_chk label img {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    opacity: .6;
}
.f_chk label p {
    font-weight: var(--medium);
    color: var(--gray-400);
    text-align: center;
}

.f_chk label:hover {
    border-color: var(--gray-600);
}

.f_chk input:checked ~ label {
    background-color: var(--white);
    border-color: var(--gray-600);
}
.f_chk input:checked ~ label img {
    opacity: 1;
}
.f_chk input:checked ~ label p {
    color: var(--gray-600);
}

/*-- f_radio --*/
.f_radio {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.f_radio label {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(256, 256, 256, 0);
    background-color: var(--gray-100);
    cursor: pointer;
}
.f_radio label p {
    font-weight: var(--medium);
    color: var(--gray-400);
    text-align: center;
}

.f_radio label:hover {
    border-color: var(--gray-600);
}

.f_radio input:checked ~ label {
    background-color: var(--white);
    border-color: var(--gray-600);
}
.f_radio input:checked ~ label p {
    color: var(--gray-600);
}

/*-- input_file --*/
.input_file {
    position: relative;
}
.input_file input {
    width: calc(100% - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file_btn {
    width: 140px;
    height: calc(100% - 28px);
    border-radius: var(--radius-md);
    background-color: var(--gray-600);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
}
.file_btn p {
    width: fit-content;
    font-weight: var(--medium);
    color: var(--white);
}
.file_btn img {
    width: 16px;
    height: 16px;
}


/*----------------- form_wrap_radio -----------------*/
.form_wrap_radio {
    width: 160px;
    height: 40px;
    padding: 5px;
    margin-top: 24px;
    border-radius: var(--radius-md);
    background-color: var(--gray-100);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.form_wrap_radio li {
    width: 100%;
    height: 100%;
}
.form_wrap_radio label {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.form_wrap_radio label p {
    font-size: var(--ft14);
    color: var(--gray-500);
}
.form_wrap_radio input:checked ~ label {
    background-color: var(--primary);
}
.form_wrap_radio input:checked ~ label p {
    color: var(--white);
}
.form_item_box .f_text {
    margin-bottom: 16px;
}

/*----------------- f_box_btm -----------------*/
.f_box_btm .btn {
    margin: 50px auto 0;
    padding: 0 12px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.agree_box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.agree_box label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.policy_btn {
    width: fit-content;
    font-weight: var(--medium);
    color: var(--gray-400);
    text-decoration: underline;
    cursor: pointer;
}

@media all and (max-width: 1600px) {
    .contact_sec .flex {
        padding: 140px 0;
        flex-direction: column;
    }
    .contact_l {
        max-width: 100%;
        height: fit-content;
        margin-bottom: 60px;
        position: static;
    }
    .contact_l * {
        text-align: center;
    }
    .contact_l .title {
        font-size: var(--ft40);
    }
    .contact_l .title.lg {
        font-size: var(--ft50);
    }
    .step {
        justify-content: center;
        margin-bottom: 32px;
    }
    .contact_r {
        margin: 0;
        padding: 0;
        border: none;
    }
}

@media all and (max-width: 1200px) {
    .contact_sec .flex {
        padding: 90px 0;
    }
    .f_h {
        margin-bottom: 24px;
    }
    .f_title {
        font-size: var(--ft20);
    }
    .f_text {
        margin-top: 8px;
    }
}

@media all and (max-width: 1024px) {
    .f_chk {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .f_radio {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media all and (max-width: 768px) {
    .quick {
        display: none;
    }
    .page {
        padding: 10px 0;
    }
    .contact_sec {
        min-height: calc(100dvh - 20px);
    }
    .step {
        margin-bottom: 24px;
        gap: 16px;
    }
    .step div {
        width: 20px;
        height: 20px;
        font-size: var(--ft12);
    }
    .contact_l {
        border-bottom: 1px solid var(--dark-line);
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
    .contact_l .title {
        font-size: var(--ft26);
    }
    .contact_l .title.lg {
        font-size: var(--ft36);
    }
    .contact_l .text {
        font-size: var(--ft16);
        margin-top: 16px;
    }
    .f_box {
        margin-bottom: 40px;
    }
    .f_title {
        font-size: var(--ft18);
    }
    .f_text {
        font-size: var(--ft14);
    }
    .f_chk {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .f_chk label {
        padding: 16px;
    }
    .f_chk label img {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
    }
    .f_radio {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .f_radio label {
        padding: 16px;
    }

    .f_input {
        padding: 16px;
    }
    .input_file input {
        width: calc(100% - 110px);
    }
    .file_btn {
        width: 100px;
        height: calc(100% - 10px);
        top: 5px;
        right: 10px;
    }
    .file_btn p {
        font-size: var(--ft14);
    }
    .file_btn img {
        width: 13px;
        height: 13px;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .grid .f_input {
        margin-bottom: 0;
    }

    .contact_btn_list {
        margin-top: 40px;
        gap: 10px;
    }
    .contact_btn {
        width: 100%;
        height: 50px;
    }
    .contact_btn.send_data {
        width: 100%;
    }
    .contact_btn p {
        font-size: var(--ft16);
    }

    .agree_box {
        gap: 10px;
    }
    .form_wrap_radio {
        margin-top: 16px;
    }
}