.footer {
    margin-top: 0;
}
/*------------------------------- page_top -------------------------------*/
.page_title {
    font-size: var(--ft45);
}
.page_title strong {
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.center_bg {
    width: 100%;
    height: 500px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}
.center_bg > img {
    transform: scale(1.3);
    animation: bg 8s ease forwards;
}
@keyframes bg {
    to {
        transform: scale(1);
    }
}
.center_bg .mark {
    width: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*- sec_box --*/
.sec_box > * {
    opacity: 0;
    transform: translateX(-20px);
}

.sec_name {
    margin-bottom: 24px;
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
    color: var(--primary);
    display: flex;
    align-items: center;
    position: relative;
} 
.sec_name::before {
    content: '';
    width: 0px;
    height: 1px;
    background-color: var(--primary);
    position: absolute;
    left: -100px;
    transition: width .8s .1s ease;
}
.sec_title {
    font-size: var(--ft42);
    font-weight: var(--semi-bold);
}
.sec_text {
    margin-top: 36px;
    font-size: var(--ft18);
    color: var(--gray-600);
}

.sec_box.white * {
    color: var(--white);
}


/*------------------------------- sec2 -------------------------------*/
.sec2 {
    padding: 180px 0;
    background: url('/images/center_2.png') no-repeat center/cover;
}
.value_list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value_list li {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--dark-line);
    background-color: var(--white);
    padding: 60px 50px;
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
}
.value_chk {
    width: 24px;
    height: 24px;
    margin-top: 5px;
}
.value_title {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.value_text {
    margin-top: 20px;
    font-size: var(--ft18);
    color: var(--gray-600);
}


/*------------------------------- sec3 -------------------------------*/
.sec3 {
    padding: 200px 0;
    background: url('/images/center_3.png') no-repeat center/cover;
}

/*-- process_list --*/
.process_list {
    margin-top: 80px;
    display: grid;
    gap: 16px;
}
.process_list li {
    display: flex;
    gap: 70px;
    opacity: .3;
    transition: opacity .5s ease;
}
.process_list li.active {
    opacity: 1;
}
.process_list * {
    color: var(--white);
}
.process_l {
    width: 360px;
    background-color: var(--primary);
    padding: 0 40px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    position: relative;
}
.process_l::after {
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    border-top: 1px dashed var(--white-400);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.process_num {
    width: 60px;
    font-size: var(--ft50);
    font-weight: var(--light);
    color: var(--white-300);
    flex-shrink: 0;
}
.process_name {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
}

.process_r {
    width: 100%;
    padding: 40px 60px;
    background-color: var(--white-100);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
}
.process_title {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.process_text {
    margin-top: 20px;
    font-size: var(--ft18);
}

.sec3_btm {
    width: 100%;
    background: url('/images/center_4.png') no-repeat center/cover;
    padding: 120px 0;
}
.sec3_btm > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.sec3_btm .chk_icon {
    width: 80px;
    height: 80px;
}
.sec_btm_title {
    text-align: center;
}
.sec_btm_title span {
    font-size: var(--ft28);
    font-weight: var(--semi-bold);
    color: var(--white-400);
    background: linear-gradient(to right, var(--white), var(--white)) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0%;
}

/*------------------------------- sec4 -------------------------------*/
.sec4 {
    margin-top: var(--sec-gap);
}

.lawyer_box {
    height: 900px;
    margin-top: 80px;
    padding: 120px 100px 180px;
    background-color: var(--primary-bg);
    border-radius: var(--radius);
    position: relative;
}
.lawyer_x {
    transform: translateX(-20px);
    opacity: 0;
}
.lawyer_name {
    font-size: var(--ft50);
    font-weight: var(--semi-bold);
}
.lawyer_name span {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
}
.lawyer_type {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}
.lawyer_type li {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lawyer_type img {
    width: 24px;
    height: 24px;
}
.lawyer_type p {
    font-size: var(--ft18);
    font-weight: var(--medium);
}

.lawyer_btm {
    width: 315px;
    margin-top: 160px;
}
.lawyer_label {
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-line);
}
.lawyer_label li {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
    color: var(--gray-400);
    cursor: pointer;
}
.lawyer_label li.active {
    color: var(--primary);
}
.lawyer_history_wrap {
    position: relative;
}
.history_list {
    display: none;
}
.history_list.show {
    display: block;
}
.history_list p {
    font-size: var(--ft18);
    color: var(--gray-600);
}

.lawyer_img {
    width: 750px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
}
.lawyer_mark {
    width: 30%;
    position: absolute;
    top: 80px;
    right: 80px;
    opacity: .1;
}

/*-- btm_menu --*/
.btm_menu {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.btm_menu li {
    width: 100%;
    border-radius: var(--radius);
}
.btm_menu li:first-child {
    background-color: #7C8F85;
}
.btm_menu li:last-child {
    background-color: var(--primary);
}
.btm_menu li a {
    padding: 50px;
}
.btm_menu .title {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--white);
    margin-bottom: 12px;
}
.btm_menu .text {
    font-size: var(--ft18);
    color: var(--white);
    margin-bottom: 28px;
}


/*------------------------------- sec5 -------------------------------*/
.sec5 {
    margin-top: var(--sec-gap);
    position: relative;
}
.sec5_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.sec5_bg img {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity .8s ease, transform 1.2s ease;
    position: absolute;
    top: 0;
    left: 0;
}
.sec5_bg img.show {
    opacity: 1;
    transform: scale(1);
    transition: opacity .3s ease, transform 1.2s ease;
    z-index: 1; 
}
.sec5 .sec_inner {
    padding: var(--sec-gap) 0;
    position: relative;
    z-index: 1;
}
.sec5 * {
    color: var(--white);
}

/*-- about_list --*/
.about_list {
    margin-top: 200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);   
}
.about_box {
    padding: 0 80px;
    border-right: 1px solid var(--white-200);
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
}
.about_box:last-child {
    border-right: none;
}
.about_box > * {
    opacity: .4;
    transition: opacity .4s ease;
}
.about_box.active > * {
    opacity: 1;
}
.about_title {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
}
.about_text {
    margin-top: 20px;
    font-size: var(--ft18);
}


/*------------------------------- sec6 -------------------------------*/
.sec6 {
    padding: 200px 0;
    background: url('/images/center_6.png') no-repeat center/cover;
}
.sec6 > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact_btm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    cursor: pointer;
}
.contact_btm li {
    width: 330px;
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--white-00);
    transition: transform .4s ease, border .4s ease;
}
.contact_btm li:hover {
    border-color: var(--dark-line);
    transform: translateY(-4px);
}
.contact_btm .inner {
    padding: 32px;
}
.contact_btm .contact_label {
    margin-bottom: 12px;
    font-size: var(--ft16);
    color: var(--gray-600);
}
.contact_btm .inner > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact_btm .inner > div img {
    width: 18px;
    height: 18px;
}
.contact_btm .inner > div p {
    font-size: var(--ft18);
    font-weight: var(--medium);
}

.contact_btm li:first-child {
    background-color: var(--primary);
}
.contact_btm li:first-child * {
    color: var(--white);
}

@media all and (max-width: 1600px) {
    /*-- sec4 --*/
    .lawyer_box {
        height: 800px;
    }
    .lawyer_img {
        width: 700px;
    }
}

@media all and (max-width: 1400px) {
    .sec_title {
        font-size: var(--ft36);
    }

    /*-- page_top --*/
    .page_title {
        font-size: var(--ft40);
    }

    /*-- sec2 --*/
    .sec2 {
        padding: 120px 0;
    }
    .value_list li {
        padding: 40px;
    }
    .value_chk {
        width: 20px;
        height: 20px;
    }
    .value_title {
        font-size: var(--ft20);
    }

    /*-- sec4 --*/
    .lawyer_box {
        height: 650px;
        padding: 100px 80px;
    }
    .lawyer_img {
        width: 550px;
        margin: 0;
        left: auto;
        right: 60px;
    }
    .lawyer_name {
        font-size: var(--ft40);
    }
    .lawyer_name span {
        font-size: var(--ft20);
    }
    .lawyer_btm {
        margin-top: 80px;
    }
    .history_list p {
        font-size: var(--ft16);
    }

    /*-- sec5 --*/
    .about_box {
        padding: 0 60px;
    }
    .about_list {
        margin-top: 120px;
    }
    .about_title {
        font-size: var(--ft20);
    }

    /*-- sec6 --*/
    .sec6 > div {
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }
    .contact_btm {
        gap: 10px;
    }
    .contact_btm,
    .contact_btm li {
        width: 100%;
    }
}

@media all and (max-width: 1024px) {
    .sec_text {
        margin-top: 20px;
    }

    /*-- page_top --*/
    .center_bg {
        height: 400px;
    }

    /*-- sec2 --*/
    .value_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    /*-- sec3 --*/
    .sec3 {
        padding: 120px 0;
    }
    .process_list li {
        gap: 40px;
    }
    .process_l {
        width: 240px;
    }
    .process_l::after {
        width: 40px;
    }
    .process_num {
        width: 36px;
        font-size: var(--ft36);
    }
    .process_name {
        font-size: var(--ft20);
    }
    .process_text {
        font-size: var(--ft20);
    }
    .process_r {
        padding: 32px 40px;
    }
    .process_title {
        font-size: var(--ft18);
    }
    .process_text {
        margin-top: 12px;
        font-size: var(--ft16);
    }

    /*-- sec4 --*/
    .lawyer_box {
        height: 500px;
        padding: 60px 40px;
    }
    .lawyer_name {
        font-size: var(--ft32);
    }
    .lawyer_type {
        margin-top: 24px;
    }
    .lawyer_btm {
        margin-top: 50px;
    }
    .lawyer_label {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .lawyer_label li {
        font-size: var(--ft18);
    }
    .lawyer_img {
        width: 450px;
        right: 0px;
    }
    .btm_menu {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
    }
    .btm_menu li a {
        padding: 28px;
    }
    .btm_menu .title {
        font-size: var(--ft18);
    }
    .btm_menu .text {
        font-size: var(--ft16);
    }

    /*-- sec5 --*/
    .sec5 .sec_box * {
        text-align: left;
    }
    .about_list {
        margin-top: 50px;
        grid-template-columns: repeat(1, 1fr);
    }
    .about_box {
        padding: 30px 0;
        border-right: none;
        border-bottom: 1px solid var(--white-200);
    }

    /*-- sec6 --*/
    .sec6 {
        padding: 120px 0;
    }
}

@media all and (max-width: 768px) {
    .sec_name {
        font-size: var(--ft16);
        margin-bottom: 16px;
    }
    .sec_title {
        font-size: var(--ft24);
    }
    .sec_text {
        margin-top: 20px;
        font-size: var(--ft16);
    }

    /*-- page_top --*/
    .page_title {
        font-size: var(--ft28);
    }
    .center_bg {
        height: 300px;
        margin-top: 40px;
    }
    .center_bg .mark {
        width: 120px;
    }

    /*-- sec2 --*/
    .sec2 {
        padding: 80px 0;
    }
    .value_list {
        margin-top: 40px;
        gap: 12px;
    }
    .value_list li {
        padding: 24px;
    }
    .value_title {
        font-size: var(--ft18);
    }
    .value_text {
        margin-top: 10px;
        font-size: var(--ft16);
    }

    /*-- sec3 --*/
    .process_list {
        margin-top: 50px;
        gap: 24px;
    }
    .process_list li {
        flex-direction: column;
        gap: 10px;
        opacity: 1;
    }
    .process_l {
        width: 100%;
        padding: 16px 20px;
        gap: 10px;
    }
    .process_l::after {
        display: none;
    }
    .process_num {
        width: 18px;
        font-size: var(--ft18);
        font-weight: var(--medium);
    }
    .process_name {
        font-size: var(--ft16);
    }
    .process_r {
        padding: 24px 20px;
    }

    .sec3_btm {
        padding: 80px 0;
    }
    .sec3_btm > div {
        gap: 20px;
    }
    .sec3_btm .chk_icon {
        width: 60px;
        height: 60px;
    }
    .sec_btm_title span {
        font-size: var(--ft20);
    }

    /*-- sec4 --*/
    .lawyer_box {
        height: auto;
        margin-top: 40px;
        padding: 10px;
        display: flex;
        flex-direction: column;
    }
    .lawyer_l {
        order: 2;
        background-color: var(--white);
        border-radius: var(--radius);
        padding: 20px;
    }
    .lawyer_name {
        font-size: var(--ft24);
    }
    .lawyer_name span {
        font-size: var(--ft14);
    }
    .lawyer_type {
        margin-top: 16px;
    }
    .lawyer_type img {
        width: 18px;
        height: 18px;
    }
    .lawyer_type p {
        font-size: var(--ft16);
    }
    .lawyer_label {
        gap: 16px;
    }
    .lawyer_label li {
        font-size: var(--ft16);
    }
    .lawyer_btm {
        width: 100%;
    }
    .lawyer_img {
        width: 100%;
        position: static;
    }
    .lawyer_img img {
        width: 80%;
        margin: 0 auto;
    }
    .lawyer_mark {
        top: 20px;
        right: 20px;
    }

    /*-- sec5 --*/
    .about_title {
        font-size: var(--ft18);
    }
    .about_text {
        margin-top: 12px;
        font-size: var(--ft16);
    }

    /*-- sec6 --*/
    .contact_btm {
        grid-template-columns: repeat(1, 1fr);
    }
    .contact_btm .inner {
        padding: 20px;
    }
    .contact_btm .contact_label {
        font-size: var(--ft14);
    }
    .contact_btm .inner > div img {
        width: 16px;
        height: 16px;
    }
    .contact_btm .inner > div p {
        font-size: var(--ft16);
    }
}