

.lawyer_flex {
    margin-top: 90px;
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    display: flex;
    position: relative;
}
.lawyer_l {
    width: 50%;
    padding: 100px 100px 100px 160px;
    border-right: 1px solid var(--dark-line);
}
.lawyer_l > * {
    opacity: 0;
    transform: translateX(-20px);
}
.lawyer_name_box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lawyer_name {
    font-size: var(--ft40);
    font-weight: var(--semi-bold);
}
.lawyer_position {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--gray-600);
}
.lawyer_title {
    margin-top: 40px;
    font-size: var(--ft22);
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.lawyer_text {
    margin-top: 24px;
    font-size: var(--ft18);
    color: var(--gray-600);
}

.sec_title {
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.type {
    margin-top: 60px;
    display: flex;
    gap: 75px;
}
.lawyer_type {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}
.lawyer_type li {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lawyer_type img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.lawyer_type p {
    font-size: var(--ft18);
    font-weight: var(--semi-bold);
}

.lawyer_history {
    margin-top: 80px;
    border-top: 1px solid var(--dark-line);
}
.lawyer_history .sec_title {
    margin-top: 80px;
    margin-bottom: 24px;
}
.lawyer_history p {
    font-size: var(--ft18);
}


.lawyer_r {
    width: 50%;
    height: 100vh;
    background-color: var(--primary-bg);
    position: sticky;
    top: 0;
    overflow: hidden;
}
.lawyer_img {
    width: fit-content;
    height: 100%;
    margin: 0 auto;
    transform: translateX(20px);
    opacity: 0;
}
.mark {
    width: 60%;
    position: absolute;
    top: 80px;
    right: 80px;
    opacity: .1;
    z-index: -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);
    opacity: 0;
    transform: translateY(20px);
}
.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;
}

@media all and (max-width: 1880px) {
    .lawyer_l {
        padding-left: 60px;
    }
    .btm_menu {
        max-width: 100%;
    }
}

@media all and (max-width: 1400px) {
    /*-- lawyer_info --*/
    .lawyer_name_box {
        gap: 12px;
    }
    .lawyer_name {
        font-size: var(--ft32);
    }
    .lawyer_position {
        font-size: var(--ft20);
    }
    .lawyer_title {
        margin-top: 28px;
        font-size: var(--ft20);
    }
}

@media all and (max-width: 1024px) {
    .lawyer_flex {
        margin-top: 60px;
        flex-direction: column;
    }
    .lawyer_l {
        width: 100%;
        padding: 40px 40px 60px;
        order: 2;
    }
    .lawyer_r {
        width: 100%;
        height: auto;
        position: relative;
    }
    .lawyer_img {
        width: 400px;
        max-width: 90%;
        height: auto;
        position: relative;
        z-index: 2;
    }
    .mark {
        width: 40%;
        top: 20px;
        right: 20px;
        z-index: 1;
    }

    /*-- lawyer_history --*/
    .lawyer_history {
        margin-top: 40px;
    }
    .lawyer_history .sec_title {
        margin-top: 40px;
        margin-bottom: 16px;
    }

    /*-- btm_menu --*/
    .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);
    }
}

@media all and (max-width: 900px) {
    .lawyer_l {
        padding: 40px 20px;
    }
}

@media all and (max-width: 768px) {
    .lawyer_flex {
        margin-top: 40px;
    }
    .lawyer_name {
        font-size: var(--ft28);
    }
    .lawyer_position {
        font-size: var(--ft18);
    }
    .lawyer_title {
        margin-top: 18px;
        font-size: var(--ft18);
    }
    .lawyer_text {
        margin-top: 12px;
        font-size: var(--ft16);
    }
    .lawyer_type li {
        gap: 8px;
    }
    .lawyer_type img {
        width: 18px;
        height: 18px;
    }
    .lawyer_type p {
        font-size: var(--ft16);
    }
    .type {
        margin-top: 32px;
        flex-direction: column;
        gap: 20px;
    }
    .lawyer_history p {
        font-size: var(--ft16);
    }
}