@charset "utf-8";

/* mainbanner */
main .mainbanner {
    width: 100%;
    height: 92vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/mainbg.png') no-repeat right 20%/cover;
    position: relative;
}

main .mainbanner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

main .mainbanner .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    position: relative;
    z-index: 9;
}

main .mainbanner .subtitle {
    padding: 1rem 2rem;
    font-size: 2rem;
    background-color: rgba(255, 255, 255, 0.3);
    width: fit-content;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
}

main .mainbanner h1 {
    font-family: 'title';
    font-size: 6rem;
    margin: 1rem 0;
    line-height: 1.3;
}

main .mainbanner h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.8;
}

/* lawyer */
.lawyer {
    padding: 30rem 0;
    background: linear-gradient(#fff, #e5e8eb);
}

.lawyer .law {
    position: relative;
    padding: 5rem 0;
}

.lawyer .law::before {
    content: 'LAWYER';
    position: absolute;
    font-weight: bold;
    font-family: 'title';
    font-size: 18rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    line-height: 0.7;
    opacity: 0.1;
}

.lawyer .law .inner {
    display: flex;
    width: 60%;
    justify-content: space-between;
}

.lawyer .law .inner .photo {
    width: 35%;
}

.lawyer .law .inner .photo img {
    width: 100%;
}

.lawyer .profile {
    width: 60%;
}

.lawyer .profile h2 {
    padding-left: 2rem;
    position: relative;
    margin: 1rem 0;
}

.lawyer .profile h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 6px;
    height: 80%;
    background-color: #275f98;
}

.lawyer .profile p {
    font-size: 2rem;
    line-height: 1.6;
    text-align: justify;
}

.lawyer .profile p b {
    font-family: 'title';
    font-weight: 400;
}

.lawyer .profile ul {
    font-size: 2rem;
    margin-top: 3rem;
    line-height: 1.8;
}

/* info */
.info {
    padding-top: 30rem;
}

.info .inner h2 {
    text-align: center;
}

.info .inner>p {
    text-align: center;
    font-size: 2rem;
    margin-top: 2rem;
    line-height: 1.8;
}

.info b {
    font-family: 'title';
    font-weight: 400;
}

.info .project {
    display: flex;
    justify-content: space-between;
}

.info .box {
    width: 48%;
    background-color: #fff;
    box-shadow: 3px 3px 1px 2px rgba(39, 95, 152, 0.3);
    padding: 5rem;
    margin: 5rem 0;
    border-radius: 30px;
    transition: all .5s;
    cursor: pointer;
}

.info .box h4 {
    color: #275f98;
    font-size: 2.4rem;
    line-height: 3;
    padding-left: 2rem;
    position: relative;
}

.info .box h4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 6px;
    height: 50%;
    background-color: #275f98;
}

.info .box p {
    font-size: 2rem;
    line-height: 1.6;
    height: 70px;
}

/* count */
.count {
    background-color: #121216;
    padding: 3rem 0;
}

.count .inner {
    display: flex;
    justify-content: space-between;
    color: #e5e8eb;
    text-align: center;
}

.count .num h3 {
    font-family: 'title';
    font-size: 4rem;
    font-weight: 400;
}

.count .num h3 em {
    font-family: 'title';
    font-style: normal;
}

.count .num span {
    font-size: 2rem;
}

/* reason */
.reason {
    padding: 20rem 0;
    text-align: center;
}

.reason br {
    display: none;
}

.reason span {
    font-family: 'title';
    color: #32b5e5;
}

.reason span:first-child {
    position: relative;
}

.reason span:first-child::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: #275f98;
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0% {
        top: -40px;
    }

    20% {
        top: -8px;
    }

    40% {
        top: -20px;
    }

    60% {
        top: -10px;
    }

    70% {
        top: -15px;
    }

    80% {
        top: -8px;
    }

    100% {
        top: -10px;
    }
}

.reason ul {
    display: flex;
    justify-content: space-between;
    margin-top: 8rem;
}

.reason ul li {
    width: 25%;
    text-align: center;
    padding: 2rem 3rem;
    border-right: 1px solid #e6e6e6;
    transition: all .3s;
}

.reason ul li img {}

.reason ul li:hover {
    transition: all .8s;
    transform: translateY(-10px);
}

.reason ul li:hover img {
    transition: all .8s;
    transform: rotateY(-360deg);
}

.reason ul li:last-child {
    border: none;
}

.reason h5 {
    color: #275f98;
    font-size: 3rem;
    margin: 2rem 0;
}

.reason p {
    font-size: 2rem;
    line-height: 1.4;
}

/* process */
.process {
    background-color: #121216;
    padding: 10rem 0;
}

.process .inner {
    width: 60%;
    position: relative;
}

.process .main_t {
    color: #fff;
    text-align: center;
}

.process .main_t span {
    color: #32b5e5;
    font-family: 'title';
}

.process ul {
    color: #fff;
    position: relative;
    margin: 10rem 5rem;
}

.process ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #fff;
}

.process ul li {
    font-size: 2rem;
    position: relative;
    padding: 3rem 0 3rem 7rem;
    color: #e6e6e6;
}

.process ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #fff;
    z-index: 9;
}

.process ul li::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #121216;
    border: 1px solid #fff;
}

.process ul li strong {
    font-family: 'title';
    display: block;
    font-size: 3rem;
    line-height: 2;
    color: #fff;
}

.process .more_w {
    position: absolute;
    padding: 1rem 2rem;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-size: 2rem;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s;
}

.more_w:hover {
    background-color: #fff;
    color: #121216;
}

/* success */
.success {
    padding: 20rem 0;
}

.success .inner {
    display: flex;
    justify-content: space-between;
}

.success_left {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 3rem;
}

.success_left span {
    color: #275f98;
    font-size: 4rem;
}

.success_left h2 {
    color: #121216;
    font-size: 6rem;
    font-family: 'title';
    word-break: keep-all;
}

.success_left .more {
    color: #121216;
    margin: 0;
}

.success_right {
    width: 60%;
    position: relative;
}

.success_right::after {
    content: '';
    width: 15rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
    z-index: 2;
}

.success_right .example {
    padding: 3rem;
}

.success_right .example .swiper-wrapper {
    transition-timing-function: linear;
}

.success_right .example .swiper-slide {
    height: 450px;
    padding: 25px;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.success_right .example .swiper-slide .ex_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.ex_top strong {
    padding: 1rem 2rem;
    border-radius: 20px;
    background-color: #275F98;
    color: #fff;
}

.ex_top strong.p {
    background-color: #32B5E5;
}

.success_right .example .swiper-slide .ex_btm {}

.ex_btm h5 {
    font-family: 'title';
    font-size: 2.4rem;
    line-height: 3;
    white-space: nowrap;
}

.ex_btm p {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: justify;

}

.ex_btm h2 {
    font-family: 'title';
    width: 100%;
    font-size: 3.5rem;
    color: #C0392B;
    text-align: center;
    margin-top: 2rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* contact */
.contact {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.contact_left {
    width: 40%;
    padding: 10rem;
    background-color: #121216;
    color: #fff;
    border-radius: 0 300px 0 0;
    text-align: center;
}

.contact_left h2 {
    font-size: 6rem;
    font-family: 'title';
    text-align: left;
}

.contact_left h5 {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 2;
    color: #32b5e5;
    text-align: left;
    white-space: nowrap;
}

.contact_left h5 span {
    color: #fff;
}

.contact_left img {
    margin: 5rem 0;
}

.contact_left a {
    padding: 1rem 2rem;
    background-color: #32B5E5;
    color: #fff;
    border-radius: 30px;
    font-size: 2rem;
    margin: 3rem auto;
    display: block;
    width: fit-content;
}

.contact_left p {
    font-size: 2rem;
}

.contact_right {
    width: 60%;
    padding: 10rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contact_right h4 {
    font-family: 'title';
    font-size: 4rem;
}

.contact_right ul li {
    width: 70%;
    margin: 2rem auto;
    font-size: 2.4rem;
    padding: 2rem 3rem;
    border-radius: 50px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.contact_right ul li:nth-child(1) {
    background-color: #fff;
}

.contact_right ul li:nth-child(2) {
    background-color: #FBFBFB;
}

.contact_right ul li:nth-child(3) {
    background-color: #F6F6F6;
}

.contact_right ul li:nth-child(4) {
    background-color: #EFEFEF;
}

.contact_right .moremore {
    font-size: 3rem;
    display: block;
    transition: all .5s;
}

.contact_right .moremore:hover {
    transform: translateX(5px);
}

/* call */
.call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    background-color: #121216;
    color: #fff;
    box-shadow: 0 -2px 5px rgba(255, 255, 255, 0.3);
    z-index: 99;
}

.call .inner {
    display: flex;
    height: 100%;
    justify-content: space-between;
    font-size: 1.7rem;
    align-items: center;
}

.call .call_left {
    background: url('../images/phone.png') no-repeat left center/contain;
    padding-left: 60px;
}

.call .call_left h3 {
    letter-spacing: 1px;
    margin-top: 3px;
}

.call .call_right {
    display: flex;
}

.call .call_right li {
    transition: all .5s;
}

.call .call_right li:hover {
    transform: translateY(-5px);
}

.call .call_right li a {
    padding: 4rem;
}

.call .call_right li:nth-child(3) a {
    padding-right: 0;
}

.call .call_right li:nth-child(1) {
    background: url('../images/calllink.png') no-repeat left center/contain;
}

.call .call_right li:nth-child(2) {
    background: url('../images/kakaolink.png') no-repeat left center/contain;
}

.call .call_right li:nth-child(3) {
    background: url('../images/youtubelink.png') no-repeat left center/contain;
}

/* 30초 맞춤상담 */
:root {
    --in-bg: #0e1118;
    --in-card: #161b26;
    --in-border: #242c3e;
    --in-blue: #007aff;
    --in-cyan: #00f0ff;
    --in-green: #00ea76;
    --in-text-primary: #ffffff;
    --in-text-muted: #8a99ad;
}

.diag_trigger_wrapper {
    display: flex;
    justify-content: center;
}

.diag_circle_btn {
    position: fixed;
    bottom: 114px;
    right: 31px;
    width: 110px;
    height: 110px;
    background-color: var(--in-card);
    border-radius: 50%;
    z-index: 99;
    border: none;
    transition:
        transform 0.35s ease-out,
        opacity 0.3s ease;

    will-change: transform;
}

.diag_circle_btn:hover {
    transform: scale(1.05);
}

.progress_svg {
    position: absolute;
    bottom: -5px;
    right: -6px;
}

.bg_circle {
    fill: none;
    stroke: var(--in-border);
    stroke-width: 3;
}

.loading_circle {
    fill: none;
    stroke: var(--in-cyan);
    stroke-width: 3;
    stroke-dasharray: 58;
    stroke-dashoffset: 340;
    animation: borderFillAnim 7s linear infinite;
    stroke-linecap: round;
    transform-origin: center;
}

@keyframes borderFillAnim {
    0% {
        stroke-dashoffset: 340;
        transform: rotate(0deg);
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -340;
        transform: rotate(360deg);
    }
}

.btn_text_box {
    text-align: center;
    z-index: 2;
    font-family: 'text';
}

.btn_text_box span {
    display: block;
    font-size: 1.5rem;
    color: var(--in-text-muted);
}

.btn_text_box strong {
    display: block;
    font-size: 2rem;
    color: var(--in-cyan);
    margin-top: 0.32rem;
}

.diag_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3.2rem;
    box-sizing: border-box;
}

.diag_modal_overlay.open {
    display: flex;
}

.diag_modal_window {
    background-color: var(--in-bg);
    border: 1px solid var(--in-border);
    border-radius: 38px;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    padding: 4.8rem;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: modalScaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScaleUp {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal_close_btn {
    position: absolute;
    top: 3.2rem;
    right: 3.2rem;
    background: none;
    border: none;
    font-size: 4.8rem;
    color: var(--in-text-muted);
    cursor: pointer;
    z-index: 10;
}

.modal_close_btn:hover {
    color: #fff;
}

.modal_diag_header {
    text-align: center;
    margin-bottom: 2.4rem;
}

.badge_ai {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--in-cyan);
    color: var(--in-cyan);
    padding: 0.5rem 3rem;
    border-radius: 8rem;
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.28rem;
}

.modal_diag_header h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
}

.modal_progress_wrap {
    width: 100%;
    height: 0.64rem;
    background-color: var(--in-border);
    border-radius: 1.6rem;
    margin-bottom: 3.2rem;
    overflow: hidden;
}

.modal_progress_inner {
    height: 100%;
    background: linear-gradient(90deg, var(--in-blue), var(--in-cyan));
    transition: width 0.3s ease;
}

.modal_scroll_area {
    overflow-y: auto;
    flex: 1;
    padding-right: 0.8rem;
}

.modal_scroll_area::-webkit-scrollbar {
    width: 6px;
}

.modal_scroll_area::-webkit-scrollbar-thumb {
    background-color: var(--in-border);
    border-radius: 4px;
}

.m_step {
    display: none;
    animation: fIn 0.3s ease forwards;
}

.m_step.active {
    display: block;
}

@keyframes fIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.m_q_num {
    font-size: 2.24rem;
    font-weight: 700;
    color: var(--in-blue);
    display: block;
    margin-bottom: 0.8rem;
}

.m_step h3 {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.96rem;
}

.m_q_desc {
    font-size: 1.8rem;
    color: var(--in-text-muted);
    margin-bottom: 3.2rem;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.m_input_wrap {
    position: relative;
    margin-bottom: 3.2rem;
}

.m_input_wrap input,
.m_input_wrap select {
    width: 100%;
    background-color: var(--in-card);
    border: 1px solid var(--in-border);
    padding: 2.4rem 3.2rem;
    font-size: 2.4rem;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    box-sizing: border-box;
    outline: none;
    appearance: none;
}

.m_input_wrap select {
    position: relative;
}

.arr {
    content: '';
    position: absolute;
    top: 45%;
    right: 30px;
    transform: translateY(-50%) rotate(45deg);
    width: 13px;
    height: 13px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.m_input_wrap input:focus,
.m_input_wrap select:focus {
    border-color: var(--in-cyan);
}

.m_unit {
    position: absolute;
    right: 3.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: var(--in-text-muted);
    font-weight: 700;
}

.m_input_row {
    display: flex;
    gap: 1.92rem;
}

.m_input_row .m_input_wrap {
    flex: 1;
}

.m_input_row label {
    font-size: 1.8rem;
    color: var(--in-text-muted);
    display: block;
    margin-bottom: 0.96rem;
    font-weight: 600;
}

.m_next_btn {
    width: 100%;
    background-color: var(--in-card);
    border: 1px solid var(--in-border);
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 2.56rem;
    border-radius: 1.92rem;
    cursor: pointer;
    transition: all 0.2s;
}

.m_next_btn:hover {
    background-color: var(--in-blue);
    border-color: var(--in-cyan);
}

.calc_reset_icon_btn {
    float: right;
    background: none;
    border: none;
    color: var(--in-text-muted);
    font-size: 2.08rem;
    cursor: pointer;
    margin-top: -4.8rem;
}

.calc_reset_icon_btn:hover {
    color: var(--in-cyan);
}

.result_status_header {
    text-align: center;
    margin-bottom: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.28rem;
}

.status_emoji {
    font-size: 3.84rem;
}

#resStatusTitle {
    font-size: 2.88rem;
    color: var(--in-cyan);
    font-weight: 800;
    margin-bottom: 0;
}

.result_flex_layout {
    display: flex;
    gap: 3.2rem;
    margin-bottom: 2.4rem;
}

.live_dashboard_board {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result_form_zone {
    flex: 1;
    background-color: #121620;
    border: 1px solid var(--in-border);
    padding: 3.2rem;
    border-radius: 2.56rem;
}

.board_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.board_item {
    background-color: var(--in-card);
    border: 1px solid var(--in-border);
    padding: 2rem;
    border-radius: 1.92rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.board_item .label {
    font-size: 1.92rem;
    color: var(--in-text-muted);
}

.board_item .value {
    font-size: 2.88rem;
    font-weight: 800;
    color: #fff;
}

.text_blue {
    color: #2e93ff !important;
}

.text_cyan {
    color: var(--in-cyan) !important;
    font-size: 3.52rem !important;
    /* 2.2rem -> 3.52rem */
}

.text_green {
    color: var(--in-green) !important;
}

.shadow_blue {
    border-color: rgba(0, 240, 255, 0.3);
}

.f_input_block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.92rem;
}

.f_input_block label {
    font-size: 1.92rem;
    color: var(--in-text-muted);
    font-weight: 600;
}

.f_input_block input {
    background-color: var(--in-bg);
    border: 1px solid var(--in-border);
    padding: 1.92rem;
    border-radius: 1.2rem;
    color: #fff;
    font-size: 2.24rem;
    outline: none;
}

.f_input_block input:focus {
    border-color: var(--in-blue);
}

.f_agree_line {
    display: flex;
    align-items: center;
    gap: 0.96rem;
    margin-bottom: 2.4rem;
}

.f_agree_line input {
    width: 2.24rem;
    height: 2.24rem;
}

.f_agree_line label {
    font-size: 1.76rem;
    /* 1.1rem -> 1.76rem */
    color: var(--in-text-muted);
}

.modal_apply_submit_btn {
    width: 100%;
    background: linear-gradient(135deg, var(--in-blue), #00c2ff);
    border: none;
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    padding: 2.24rem;
    border-radius: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
}

.res_sub_notice {
    font-size: 1.76rem;
    color: var(--in-text-muted);
    text-align: center;
    line-height: 1.4;
}

.complete_view_box {
    text-align: center;
    padding: 3.2rem 0;
}

.check_icon_circle {
    width: 8rem;
    height: 8rem;
    background-color: var(--in-green);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 2.4rem;
}

.complete_view_box h3 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.28rem;
}

.complete_view_box p {
    font-size: 2.08rem;
    color: var(--in-text-muted);
    line-height: 1.5;
    margin-bottom: 3.2rem;
}

.m_close_action_btn {
    background-color: var(--in-border);
    border: none;
    color: #fff;
    padding: 1.6rem 4rem;
    border-radius: 1.2rem;
    cursor: pointer;
    font-weight: 600;
}

/* footer */
footer {
    padding-bottom: 10vh;
}

/* 반응형 */

@media screen and (max-width : 1810px) {
    .contact_left {
        width: 45%;
    }

    .success_left {
        width: 45%;
    }
}

@media screen and (max-width : 1580px) {
    .lawyer .law .inner {
        width: 70%;
    }

    .contact_left {
        width: 50%;
    }

    .contact_right {
        width: 50%;
    }

    .contact_right ul li {
        width: 90%;
    }
}

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

    .contact_right,
    .contact_left {
        padding: 5rem;
    }

    .contact_left {
        padding-left: 8rem;
    }

    .success_right {
        width: 55%;
    }
}

@media screen and (max-width : 1200px) {
    .contact_left h2 {
        font-size: 5rem;
    }
}

@media screen and (max-width : 1024px) {
    .success .inner {
        flex-direction: column;
    }

    .success_right,
    .success_left {
        width: 100%;
    }

    .success_left h2 br {
        display: none;
    }

    .gizun {
        position: relative;
    }

    .success .more {
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .success_left span {
        margin-bottom: 10px;
        display: block;
    }

    .success_right .example {
        margin-top: 30px;
    }

    .success_right .example .swiper-slide {
        height: 300px;
    }

    .contact {
        flex-direction: column;
    }

    .contact_left {
        width: 100%;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
    }

    .contact_left img {
        width: 100px;
        margin: 0;
        margin-left: auto;
        display: block;
    }

    .contact_left a {
        margin: 10px 0;
        margin-left: auto;
    }

    .contact_right {
        width: 100%;
        padding: 10rem 0;
        gap: 5rem;
    }

    .contact_right ul li {
        width: 50%;
    }
}

@media screen and (max-width : 768px) {
    main .mainbanner h1 {
        font-size: 5.5rem;
    }

    .lawyer {
        padding: 20rem 0;
    }

    .lawyer .law .inner {
        display: block;
    }

    .info .project {
        display: block;
    }

    .lawyer .law .inner .photo {
        width: 50%;
        margin: 5rem auto;
    }

    .lawyer .profile {
        width: 80%;
        margin: 0 auto;
    }

    .lawyer .profile p {
        margin-bottom: 3rem;
    }

    .lawyer .profile ul {
        display: none;
    }

    .info .box {
        width: 80%;
        margin: 3rem auto;
    }

    .reason ul {
        flex-wrap: wrap;
    }

    .reason ul li {
        width: 50%;
        padding: 5rem 3rem;
    }

    .reason ul li:nth-child(1) {
        border-bottom: 1px solid #e6e6e6;
    }

    .reason ul li:nth-child(2) {
        border: none;
        border-bottom: 1px solid #e6e6e6;
    }

    .process .inner {
        width: 85%;
    }

    .process ul li::after {
        left: -18.5px;
    }

    .success_left span {
        font-size: 3rem;
    }

    .success_left h2 {
        font-size: 5rem;
    }

    .contact_left {
        padding: 5rem;
        flex-direction: column;
    }

    .contact_left p {
        text-align: right;
    }
}

@media screen and (max-width : 680px) {
    .contact_right ul li {
        width: 70%;
    }

    main .mainbanner h1 {
        font-size: 5rem;
        word-break: keep-all;
    }

    .lawyer .law .inner .photo {
        width: 70%;
    }

    main .mainbanner h2 {
        word-break: keep-all;
    }

    .process .more_w {
        top: auto;
    }

    .success .more {
        position: static;
        width: 100%;
        text-align: right;
        margin: 20px 0;
        font-size: 2.5rem;
    }
}

@media screen and (max-width : 600px) {
    main .mainbanner h1 {
        font-size: 4.5rem;
    }

    .call .call_left {
        display: none;
    }

    .call .inner {
        justify-content: center;
    }

    .call .call_right li a {
        padding: 2rem 4rem;
        font-size: 2rem;
    }

    .lawyer .profile {
        width: 90%;
    }

    .lawyer .law::before {
        font-size: 14rem;
        top: 30%;
    }

    .info .box {
        width: 90%;
    }

    .reason br {
        display: block;
    }
}

@media screen and (max-width : 425px) {
    .lawyer {
        padding: 10rem 0;
    }

    .process ul li::before {
        left: -10px;
    }

    .process ul li::after {
        left: -14.5px;
    }

    .contact_left {
        padding: 5rem;
    }

    .contact_right ul li {
        width: 90%;
    }

    .contact_footer {
        margin-top: 2rem;
    }

    .contact_left img {
        margin: 20px auto 0;
    }

    .contact_left a {
        margin: 10px auto;
    }

    .contact_left p {
        text-align: center;
    }

    .count .num h3 {
        font-size: 3rem;
    }

    main .mainbanner h2 {
        font-size: 2rem;
    }

    .lawyer .profile {
        width: 100%;
    }

    .call .inner {
        width: 95%;
    }

    .call .call_right li a {
        padding: 1rem 3rem;
    }

    .contact_right .moremore {
        font-size: 2.5rem;
    }

    .diag_circle_btn {
        width: 70px;
        height: 70px;
        border: 1px solid #00f0ff;
    }

    .process .main_t {
        white-space: nowrap;
    }
    .progress_svg {
        display: none;
    }
    .status_emoji {
        font-size: 3rem;
    }

    .diag_modal_window {
        padding: 3rem 2rem;
    }

    #resStatusTitle {
        font-size: 2rem;
    }

    .result_flex_layout {
        flex-direction: column;
    }

    .res_sub_notice {
        font-size: 1.3rem;
        margin-top: 10px;
    }
}

@media screen and (max-width : 375px) {
    .lawyer .law .inner {
        width: 80%;
    }

    .lawyer .law .inner .photo {
        width: 100%;
    }

    .lawyer .law::before {
        font-size: 10rem;
        top: 15%;
    }

    .contact_left h2 {
        font-size: 4rem;
    }

    .contact_left h5 {
        font-size: 2rem;
    }

    .contact_left p {
        font-size: 1.6rem;
    }

    .contact_right ul li {
        font-size: 2.2rem;
    }

    footer {
        padding-bottom: 8vh;
    }

}