
/*-- sec_box --*/
.sec_name {
    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_box.show .sec_name::before {
    width: 80px;
}
.sec_name.noline::before {
    display: none;
}
.sec_title {
    margin-top: 24px;
    font-size: var(--ft42);
    font-weight: var(--semi-bold);
}
.sec_text {
    margin-top: 32px;
    font-size: var(--ft18);
}
.sec_text strong {
    font-weight: var(--semi-bold);
    color: var(--primary);
}
.text-center .sec_name {
    justify-content: center;
}

.sec_box > * {
    opacity: 0;
    transform: translateX(-20px);
}

.sec_box.white * {
    color: var(--white);
}
.sec_box.white .sec_name::before {
    background-color: var(--white);
}


.quick {
    transform: translateX(100%);
    transition: transform .6s ease;
}
.quick.show {
    transform: translateX(0);
}

.m_btn {
    display: none;
}

.footer {
    margin-top: 0;
}

/*------------------------------- sec1 -------------------------------*/
.sec1 {
    width: 100%;
    height: 100vh;
}
.sec1 * {
    color: var(--white);
    text-align: center;
}
.main_bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.sec1 .sec_inner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
}
.sec1 .sec_inner > div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.main_title {
    font-size: var(--ft50);
    font-weight: var(--semi-bold);
}
.main_text {
    font-size: var(--ft20);
    font-weight: var(--medium);
}
.main_gsap {
    opacity: 0;
    transform: translateY(20px);
}

/*-- main_quick --*/
.main_quick {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
}
.main_quick li {
    width: 100%;
    max-width: 200px;
    height: 50px;
    border-radius: var(--radius);
    background-color: var(--white-100);
    border: 1px solid var(--white-100);
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s ease;
}
.main_quick li:hover {
    transform: translateY(-4px);
}
.main_quick li:last-child {
    background-color: var(--primary);
}
.main_quick li,
.main_quick li a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.main_quick img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.main_quick p {
    font-weight: var(--semi-bold);
}

/*-- scroll_down --*/
.scroll_down {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: scroll 1s infinite alternate;
}
@keyframes scroll {
    to {
        transform: translateY(10px);
    }
}
.scroll_down .cir {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white-200);
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll_down .cir img {
    width: 8px;
    height: 8px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.scroll_down p {
    font-size: var(--ft14);
}


/*------------------------------- sec2 -------------------------------*/
.sec2_bg {
    padding: 160px 0;
    overflow: hidden;
    background: url('/images/sec2_bg.png') no-repeat center/cover;
}

/*-- type_list --*/
.type_list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.type_box {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 5;
    transform: translateY(20px);
    opacity: 0;
}
.type_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
}
.type_img img {
    transition: transform .4s ease;
}
.type_box:hover .type_img img {
    transform: scale(1.07);
}
.type_inner {
    width: 100%;
    height: 100%;
    padding: 40px;
    background-color: var(--black-600);
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 1;
}
.type_inner * {
    color: var(--white);
}
.type_title {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
}
.type_text {
    margin-top: 12px;
    font-size: var(--ft18);
    font-weight: var(--medium);
}




/*------------------------------- sec3 -------------------------------*/
.sec3 {
    padding: 160px 0;
    background-color: var(--primary);
}
.sec3::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url('/images/sec3_bg.png') no-repeat center/cover;
    opacity: .3;
}
.sec3 > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.sec3 .btn {
    margin-top: 60px;
}
.logo_mark {
    width: 320px;
    height: 320px;
}

/*------------------------------- sec4 -------------------------------*/
.sec4 .sec_wrap {
    padding-top: 200px;
    padding-bottom: 180px;
    background: url('/images/sec4_bg.png') no-repeat center/cover;
}

/*-- strategy_list --*/
.strategy_list {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.strategy_box {
    width: 100%;
    padding: 50px 36px 60px;
    border-radius: var(--radius);
    background-color: var(--white-100);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: background .4s ease;
}
.strategy_box.active {
    background-color: var(--primary);
}
.strategy_box * {
    color: var(--white);
}
.strategy_num {
    font-size: var(--ft80);
    font-weight: var(--light);
    opacity: .5;
}
.strategy_title {
    margin-top: 32px;
    font-size: var(--ft20);
    font-weight: var(--semi-bold);
}
.strategy_text {
    margin-top: 10px;
    font-size: var(--ft18);
}

/*-- sec4_btm --*/
.sec4_btm {
    padding: 100px 0;
    background-color: var(--primary);
}
.sec4_btm * {
    color: var(--white);
}
.sec4_btm > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.lawyer_mark {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}
.btm_title {
    font-size: var(--ft28);
    font-weight: var(--semi-bold);
}
.btm_text {
    margin-top: 20px;
    font-size: var(--ft18);
}

/*------------------------------- sec5 -------------------------------*/
.sec5 {
    padding-top: 200px;
    background: url('/images/sec5_bg.png') no-repeat center/cover;
    overflow: hidden;
}
.sarim_text {
    width: 90%;
    padding: 0 200px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 100px;
    filter: blur(0);
    opacity: 0;
}
.sarim_text img {
    object-fit: contain;
}
.lawyer_box {
    position: relative;
}
.lawyer_img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transform: translateY(40px);
    opacity: 0;
}
.lawyer_text_box {
    width: 100%;
    height: 280px;
    background: linear-gradient(0deg, rgba(50, 80, 59, 0.90) 0%, rgba(50, 80, 59, 0.00) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
}
.laywer_name {
    font-size: var(--ft50);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.laywer_name span {
    font-size: var(--ft24);
    font-weight: var(--semi-bold);
    color: var(--white);
}
.lawyer_type {
    width: fit-content;
    margin-top: 20px;
    padding: 12px 32px;
    background-color: var(--black-600);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
}
.lawyer_type img {
    width: 28px;
    height: 28px;
}
.lawyer_type p {
    font-size: var(--ft20);
    font-weight: var(--medium);
    color: var(--white);
}

/*------------------------------- sec6 -------------------------------*/
.sec6 {
    padding: 120px 0;
    background: url('/images/sec6_bg.png') no-repeat center/cover;
}
.sec6 > div {
    display: flex; 
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.awards_list {
    display: flex;
    gap: 30px;
}
.awards_img {
    padding: 20px;
    border-radius: var(--radius);
    background-color: var(--white-100);
    border: 1px solid var(--white-100);
    backdrop-filter: blur(10px);
}
.awards_img img {
    border-radius: var(--radius);
}

/*------------------------------- sec7 -------------------------------*/
.sec7 {
    margin: 200px 0;
}
.sec7 .sec_box {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.bbs_list {
    margin-top: 100px;
    display: flex;
    gap: 60px;
    position: relative;
}
.bbs_swiper {
    display: none;
    overflow: hidden;
}

.bbs_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.bbs_img img {
    transition: transform .4s ease;
}
.bbs_list a:hover .bbs_img img {
    transform: scale(1.07);
}
.bbs_list a:hover .bbs_title {
    text-decoration: underline;
}

.bbs_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bbs_type {
    padding: 4px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--dark-line);
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
}
.bbs_date {
    font-size: var(--ft14);
    color: var(--gray-600);
}
.bbs_title {
    font-size: var(--ft22);
    font-weight: var(--semi-bold);
}
.bbs_text {
    color: var(--gray-600);
}
.bbs_tag {
    display: flex;
    gap: 14px;
    overflow: hidden;
    position: relative;
}
.bbs_tag::after {
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    position: absolute;
    right: 0;
    top: 0;
}
.bbs_tag li {
    font-size: var(--ft16);
    font-weight: var(--semi-bold);
    color: var(--primary);
    flex-shrink: 0;
}


.bbs_box {
    width: 100%;
    max-width: 500px;
    height: fit-content;
}
.bbs_box .bbs_top {
    margin-top: 32px;
}
.bbs_box .bbs_title {
    margin: 20px 0;
}
.bbs_box .bbs_tag {
    margin-top: 32px;
}

.bbs_list .list {
    width: 100%;
    padding: 20px 0;
    padding-left: 60px;
    border-left: 1px solid var(--dark-line);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
}
.bbs_list .list a {
    display: flex;
    align-items: center;
    gap: 60px;
}
.bbs_list .list_l {
    width: 100%;
}
.bbs_list .list .bbs_img {
    width: 320px;
}
.bbs_list .list .bbs_title {
    font-size: var(--ft20);
    margin-top: 20px;
    margin-bottom: 14px;
}
.bbs_list .list .bbs_tag {
    margin-top: 20px;
}
.bbs_list .list .bbs_tag li {
    font-size: var(--ft14);
}


.swiper_btm {
    margin-top: 120px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.swiper-pagination {
    height: 2px;
    border-radius: 2px;
    position: static;
    z-index: 1;
    background-color: var(--dark-line);
}
.swiper-pagination .swiper-pagination-progressbar-fill {
    background-color: var(--primary);
    border-radius: 2px;
}
.swiper_btn_box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.swiper_btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--dark-line);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background .3s ease;
}
.swiper_btn:hover {
    background-color: var(--white);
}
.swiper_btn img {
    width: 10px;
    height: 10px;
}
.swiper_num {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.swiper_num,
.swiper_num * {
    color: var(--gray-600);
}
.swiper_num .swiper-pagination-current {
    font-weight: var(--semi-bold);
    color: var(--primary);
}

/*------------------------------- sec8 -------------------------------*/
.sec8 {
    padding: 180px 0;
    background: url('/images/sec8_bg.png') no-repeat center/cover;
}
.sec8 > div {
    display: flex;
    justify-content: end;
}
.sec8 .sec_box {
    width: 50%;
}
.sec8 .btn {
    width: 340px;
    height: 70px;
    background-color: var(--white-100);
    border: 1px solid rgba(255, 255, 255, 0);
    margin-top: 50px;
    transition: border .4s ease;
}
.sec8 .btn:hover {
    border-color: var(--white-200);
}

.sec8 .contact_list {
    margin-top: 80px;
}
.sec8 .contact_list li::after {
    background-color: var(--white-200);
}

@media all and (max-width: 1600px) {
    .sec_name::before {
        left: 0;
        top: -20px;
    }

    /*-- sec7 --*/
    .bbs_box {
        max-width: 450px;
    }
}

@media all and (max-width: 1400px) {
    .sec_title {
        font-size: var(--ft36);
    }

    /*-- sec1 --*/
    .main_title {
        font-size: var(--ft40);
    }

    /*-- sec2 --*/
    .type_title {
        font-size: var(--ft20);
    }
    .type_text {
        font-size: var(--ft16);
    }
    .type_inner {
        padding: 24px;
    }

    /*-- sec4 --*/
    .strategy_box {
        padding: 40px 32px;
    }
    .strategy_num {
        font-size: var(--ft60);
    }

    /*-- sec5 --*/
    .lawyer_img {
        max-width: 700px;
    }
    .laywer_name {
        font-size: var(--ft42);
    }

    /*-- sec6 --*/
    .awards_img {
        width: 240px;
        height: fit-content;
    }

    /*-- sec7 --*/
    .sec7 {
        margin-top: 120px;
    }
    .bbs_list {
        flex-direction: column;
    }
    .bbs_box {
        max-width: 100%;
    }
    .bbs_box a {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .bbs_box a > div {
        width: 100%;
    }
    .bbs_box .bbs_top {
        margin-top: 0;
    }
    .bbs_box .bbs_title {
        margin-top: 20px;
        margin-bottom: 14px;
        font-size: var(--ft20);
    }
    .bbs_box .bbs_tag {
        margin-top: 20px;
    }
    .bbs_tag li {
        font-size: var(--ft14);
    }
    .bbs_box .bbs_img {
        width: 320px;
        order: 2;
    }
    .bbs_list .list {
        padding: 0;
        border: none;
    }

    /*-- sec8 --*/
    .sec8 .sec_box {
        width: 100%;
    }
}

@media all and (max-width: 1024px) {
    .quick {
        transform: translateX(0) !important;
    }


    .sec_text {
        margin-top: 20px;
    }

    /*-- sec1 --*/
    .scroll_down {
        justify-content: center; 
        bottom: 100px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .main_quick {
        display: none;
    }

    /*-- sec2 --*/
    .type_list {
        grid-template-columns: repeat(2, 1fr);
    }
    .type_box {
        aspect-ratio: 3 / 2;
    }


    /*-- sec3 --*/
    .sec3 {
        padding: 100px 0;
    }
    .logo_mark {
        width: 250px;
        height: 250px;
    }

    /*-- sec4 --*/
    .strategy_list {
        grid-template-columns: repeat(2, 1fr);
    }

    /*-- sec5 --*/
    .sarim_text {
        width: 70%;
        padding: 0;
    }
    .lawyer_img {
        max-width: 550px;
    }

    /*-- sec6 --*/
    .sec6 > div {
        flex-direction: column;
        align-items: start;
    }
    .awards_list {
        width: 100%;
        justify-content: center;
    }
    .awards_img {
        width: 100%;
        max-width: 300px;
    }

    /*-- sec7 --*/
    .sec7 .sec_box {
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }
    .bbs_list {
        margin-top: 50px;
    }
    .bbs_list .list a,
    .bbs_box a {
        gap: 40px;
    }
    .bbs_box .bbs_img,
    .bbs_list .list .bbs_img {
        width: 260px;
    }
}

@media all and (max-width: 900px) {
    /*-- sec2 --*/
    .type_box {
        max-width: 100%;
    }
    .type_box.swiper-slide-active {
        transform: scale(1);
    }
}


@media all and (max-width: 768px) {
    .sec_name::before {
        top: -14px;
    }
    .sec_name {
        font-size: var(--ft16);
    }
    .sec_title {
        margin-top: 16px;
        font-size: var(--ft24);
    }
    .sec_text {
        margin-top: 20px;
        font-size: var(--ft16);
    }

    .btn {
        width: 100%;
    }
    .m_btn {
        display: flex;
    }
    .pc_btn {
        display: none;
    }

    
    /*-- sec1 --*/
    .sec1 {
        height: 100svh;
    }
    .sec1 .sec_inner > div {
        gap: 20px;
    }
    .main_title {
        font-size: var(--ft32);
    }
    .main_text {
        font-size: var(--ft16);
    }
    
    /*-- sec2 --*/
    .sec2_bg {
        padding: 100px 0;
    }
    .type_list {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .type_box {
        aspect-ratio: auto;
    }
    .type_inner {
        padding: 100px 20px 20px;
    }
    .type_title {
        font-size: var(--ft18);
    }

    .swiper_btm {
        margin-top: 40px;
        justify-content: center;
    }
    .swiper_btm .swiper-pagination {
        display: none;
    }

    /*-- sec3 --*/
    .sec3 > div {
        flex-direction: column;
        align-items: start;
        gap: 80px;
    }
    .sec3 .box_l {
        order: 2;
    }
    .logo_mark {
        width: 160px;
        height: 160px;
    }

    /*-- sec4 --*/
    .sec4 .sec_wrap {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    .strategy_list {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .strategy_box {
        padding: 32px 20px;
    }
    .strategy_num {
        font-size: var(--ft40);
    }
    .strategy_title {
        margin-top: 24px;
        font-size: var(--ft18);
    }
    .strategy_text {
        font-size: var(--ft16);
    }

    .sec4_btm {
        padding: 60px 0;
    }
    .lawyer_mark {
        width: 100px;
        height: 100px;
    }
    .sec4_btm > div {
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }
    .btm_title {
        font-size: var(--ft24);
    }
    .btm_text {
        margin-top: 12px;
        font-size: var(--ft16);
    }

    /*-- sec5 --*/
    .sec5 {
        padding-top: 120px;
    }
    .sarim_text {
        display: none;
    }
    .lawyer_text_box {
        height: 180px;
    }
    .laywer_name {
        font-size: var(--ft28);
    }
    .laywer_name span {
        font-size: var(--ft18);
    }
    .lawyer_type {
        padding: 10px 24px;
    }
    .lawyer_type img {
        width: 16px;
        height: 16px;
    }
    .lawyer_type p {
        font-size: var(--ft14);
    }

    /*-- sec6 --*/
    .awards_list {
        gap: 16px;
    }
    .awards_img {
        padding: 12px;
    }

    /*-- sec7 --*/
    .sec7 {
        margin-bottom: 120px;
    }
    .bbs_list {
        display: none;
    }
    .bbs_swiper {
        display: block;
        margin-top: 40px;
    }
    .bbs_top {
        margin-top: 12px;
    }
    .bbs_title {
        font-size: var(--ft18);
        margin: 12px 0;
    }
    .bbs_tag {
        margin-top: 20px;
    }
    .bbs_swiper .swiper_btm {
        padding-top: 20px;
        border-top: 1px solid var(--dark-line);
    }
    .sec7 .m_btn {
        margin-top: 40px;
    }

    /*-- sec8 --*/
    .sec8 {
        padding: 120px 0;
    }
    .sec8 .contact_list {
        width: 100%;
        margin-top: 50px;
    }
    .sec8 .contact_list li:nth-child(2) a, 
    .sec8 .contact_list li:nth-child(3) {
        background-color: var(--white-100);
    }
    .sec8 .contact_list li:first-child {
        border-color: var(--white-200);
    }
    
    .sec8 .btn {
        width: 100%;
        margin-top: 40px;
        height: auto;
        background-color: var(--white);
    }
    .sec8 .btn:hover {
        background-color: var(--white);
    }
    .sec8 .btn p {
        color: var(--gray-700);
    }
    .sec8 .btn img {
        filter: none !important;
        -webkit-filter: none !important;
    }
}