@charset "utf-8";
@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
    letter-spacing: -0.03rem;
}

h2 {
    font-size: 8.8rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    font-family: "Poppins", sans-serif;
}

.cursor {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translate(-50%, -50%);
    pointer-events: none;

    &::before {
        content: 'Let`s talk';
        font-size: 2rem;
        padding: 2rem;
        border-radius: 50%;
        position:absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        mix-blend-mode: difference;
        background-image: linear-gradient(#fff, #fff);
        display: none;
        
    }

    &.active {
        width: 8rem;
        height: 8rem;
        mix-blend-mode: difference;
        background-image: linear-gradient(#fff, #fff);

        
    }
}

.side_btn {
    position: fixed;
    right: clamp(3rem, 1.94vw + 2.27rem, 6rem);
    bottom: clamp(3rem, 1.94vw + 2.27rem, 6rem);
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 0.647vw + 3.75rem, 5rem);
    z-index: 999;

    .contact_btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

        .rotate {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: clamp(10rem, 1.29vw + 9.514rem, 12rem);
            height: clamp(10rem, 1.29vw + 9.514rem, 12rem);

            animation: rotateCircle 10s linear infinite;
        }

        a {
            width: clamp(4.8rem, 1.55vw + 4.21rem, 7.2rem);
            height: clamp(4.8rem, 1.55vw + 4.21rem, 7.2rem);
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            position: relative;

            &::before {
                content: '';
                filter: blur(4px);
                width: 100%;
                height: 100%;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                background-color: #fff;
                border-radius: 50%;
                z-index: -1;
            }

            img {
                position: relative;
                width: clamp(2rem, 1.03vw + 1.611rem, 3.6rem);
            }
        }
    }

    .top_btn {
        width: clamp(4.8rem, 1.55vw + 4.21rem, 7.2rem);
        height: clamp(4.8rem, 1.55vw + 4.21rem, 7.2rem);
        border-radius: 50%;
        border: 0.2rem solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;

        a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: clamp(2rem, 1.035vw + 1.61rem, 3.6rem);
                position: relative;
                bottom: 0;
            }
        }
    }
}


@keyframes rotateCircle {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


html,
body {
    font-size: 62.5%;
}

body::-webkit-scrollbar {
    display: none;
}


.header {

    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    height: 9rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    transition: 0.4s;

    &:hover {
        background-color: #111;
    }

    &.active {
        background-color: #111;
    }

    .background {
        width: 100%;
        background-color: #343434;
        height: 8.4rem;
        position: absolute;
        top: 9rem;
        left: 0;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;

        &.active {
            opacity: 1;
            visibility: visible;
        }
    }

    .inner {
        max-width: 166.4rem;
        width: calc(100% - 60px);
        margin: 0 auto;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .logo {
            max-width: clamp(12rem, 1.29vw + 11.51rem, 14rem);
            display: flex;
            justify-content: center;
            align-items: center;

            a {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                /* img end */
            }

            /* a end */
        }

        /* logo end */


        .nav {
            font-family: "Poppins", sans-serif;
            height: 100%;

            .gnb {
                display: flex;
                height: 100%;
                align-items: center;

                .depth-01 {
                    font-weight: 500;
                    font-size: clamp(1.6rem, 0.129vw + 1.55rem, 1.8rem);
                    position: relative;
                    display: block;
                    color: #fff;
                    padding: 3rem 2rem;
                }

                /* .depth-01 end */



                .depth-02 {
                    position: absolute;
                    white-space: nowrap;
                    font-size: 1.6rem;
                    display: flex;
                    opacity: 0;
                    visibility: hidden;
                    color: #fff;

                    &.active {
                        opacity: 1;
                        visibility: visible;
                        color: #fff;
                    }

                    li {
                        a {
                            padding: 2.7rem 5rem 2.7rem 0;
                            display: block;
                            color: white;
                            font-weight: 500;
                            line-height: 35px;
                            transition: 0.3s;
                            position: relative;

                            &::before {
                                content: '';
                                position: absolute;
                                width: 5px;
                                height: 5px;
                                border-radius: 50%;
                                background-color: #fff;
                                left: 0;
                                bottom: 80px;
                                opacity: 0;
                                transition: 0.5s;
                            }

                            &:hover {
                                color: #7241d5;

                                &::before {
                                    content: '';
                                    position: absolute;
                                    width: 5px;
                                    height: 5px;
                                    border-radius: 50%;
                                    background-color: #fff;
                                    left: 0;
                                    bottom: 60px;
                                    opacity: 1;
                                }
                            }
                        }

                        /*  a end */
                    }

                    /* li end */
                }

                /* .depth-02 end */
            }

            /* gnb end */
        }

        /* .nav end */

        .nav_mobile {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            position: fixed;
            z-index: 100;
            background: rgb(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            opacity: 0;
            visibility: hidden;
            transition: 0.6s;


            .mobile_inner {
                max-width: 166.4rem;
                margin: 0 auto;
                width: calc(100% - 60px);
                height: 100%;
                display: flex;
                flex-direction: column;


                .mobile_header {
                    width: 100%;
                    height: 10.2rem;
                    width: 100%;
                    margin: 0 auto;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;


                    .mobile_logo {
                        max-width: clamp(12rem, 1.29vw + 11.51rem, 14rem);
                        display: flex;
                        justify-content: center;
                        align-items: center;

                        a {
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }
                    }

                    .mobile_btn.close {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background-color: rgba(255, 255, 255, 0.1);
                        width: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                        height: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                        border-radius: 0.6rem;
                        gap: 0.6rem;
                        flex-direction: column;
                        position: relative;


                        .top {
                            height: 0.2rem;
                            width: clamp(2rem, 0.258vw + 1.90rem, 2.4rem);
                            background-color: #fff;
                            transform: rotate(-45deg);
                            position: absolute;
                            transition: 0.3s;
                        }

                        .bottom {
                            height: 0.2rem;
                            width: clamp(2rem, 0.258vw + 1.90rem, 2.4rem);
                            background-color: #fff;
                            transform: rotate(45deg);
                            position: absolute;
                            transition: 0.3s;

                        }

                    }

                    /* mobile_btn end */
                }

                /* mobile_header end */
                .mobile_info {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;


                    .mobile_gnb {
                        max-width: 166.4rem;
                        width: 100%;
                        margin: 0 auto;
                        display: flex;
                        justify-content: center;
                        gap: clamp(1.6rem, 2.84vw + 0.53rem, 6rem);

                        &>li {
                            display: block;
                            width: 100%;
                            text-align: left;
                            position: relative;

                            span {
                                color: rgba(255, 255, 255, 0.4);
                                font-size: 1.4rem;
                                line-height: 1;
                                position: absolute;
                                top: 2rem;
                                left: -3rem;
                            }
                        }

                        .depth-01 {
                            font-family: 'Poppins';
                            color: #eaeaea;
                            font-size: clamp(3rem, 1.16vw + 2.56rem, 4.8rem);
                            font-weight: 500;
                            line-height: 1.2;
                            position: relative;
                            display: block;
                            margin: clamp(1.5rem, 0.64vw + 1.25rem, 2.5rem) 0;
                        }

                        .depth-02 {
                            display: flex;
                            flex-direction: column;
                            gap: 1.8rem;
                            margin-top: clamp(1rem, 2.64vw + 0.75rem, 6rem);

                            li a {
                                display: block;
                                font-family: 'Poppins';
                                color: rgba(234, 234, 234, 0.7);
                                font-size: clamp(1.6rem, 0.51vw + 1.4rem, 2.4rem);
                                font-weight: 400;
                                line-height: 1.4;
                                position: relative;

                                .line {
                                    position: absolute;
                                    width: 0.1rem;
                                    height: clamp(1.2rem, 0.258vw + 1.10rem, 1.6rem);
                                    background-color: rgba(234, 234, 234, 0.7) !important;
                                    right: 0;
                                    top: 50%;
                                    transform: translateY(-50%);
                                    display: none;
                                }

                            }

                        }
                    }

                }

            }

            /*  .mobile_inner end */


            .text_info {
                display: flex;
                align-items: flex-start;
                width: 100%;
                flex-direction: column;
                padding: 2rem;

                p {
                    font-family: 'Poppins';
                    color: #fff;
                    font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                    font-weight: 400;
                    line-height: 1.6;
                }
            }

            /* .text_info end */

            &.active {
                opacity: 1;
                visibility: visible;
                position: fixed;

            }

        }

        /* .nav_mobile end */


        .option {
            display: flex;
            align-items: center;
            gap: 2rem;

            .language {
                display: flex;
                align-items: center;
                gap: 1.6rem;

                a {
                    font-size: clamp(1.6rem, 0.12vw + 1.55rem, 1.8rem);
                    font-weight: 500;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #fff;

                }

                .none {
                    opacity: 0.7;
                }

            }

            /*  .language end */

            .sns {
                display: flex;
                align-items: center;
                gap: 1rem;

                a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                    height: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                    border-radius: 0.6rem;
                    background-color: rgba(255, 255, 255, 0.1);

                    img {
                        width: clamp(2rem, 0.388vw + 1.85rem, 2.6rem);
                        opacity: 0.7;
                    }
                }
            }

            /* .sns end */

            .line {
                background-color: rgba(255, 255, 255, 0.7);
                width: 0.1rem;
                height: 2.4rem;
            }

            /* .line end */


            .mobile_btn {
                display: flex;
                align-items: flex-start;
                padding-left: 0.5rem;
                justify-content: center;
                background-color: rgba(255, 255, 255, 0.1);
                width: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                height: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                border-radius: 0.6rem;
                gap: 0.6rem;
                flex-direction: column;


                .top {
                    height: 0.2rem;
                    width: clamp(2rem, 0.258vw + 1.90rem, 2.4rem);
                    background-color: #fff;
                }

                .bottom {
                    height: 0.2rem;
                    width: clamp(1.4rem, 0.258vw + 1.30rem, 1.8rem);
                    background-color: #fff;


                }
            }

            /* .mobile_btn end */

        }

        /* option end */
    }

    /* inner end */

}

/* header end */

.main_visual {
    position: relative;
    height: 100vh;
    width: 100%;

    video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* video end */

    .title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;

        span {
            font-family: 'Fjalla One';
            font-size: clamp(2.6rem, 7.3139158576vw - 0.1427184466rem, 13.9rem);
            /* 최소              화면넓이 비율            최대 */
            color: white;
            letter-spacing: 0.03rem;
        }

        /* span end */

        .main_btn {
            margin-top: 4.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;

            a {
                font-family: "Poppins", sans-serif;
                color: #fff;
                font-size: clamp(1.6rem, 0.77vw + 1.3rem, 2.8rem);
                display: block;
                padding: clamp(1.4rem, 0.3883495146vw + 1.254368932rem, 2rem) clamp(1.8rem, 0.3883495146vw + 1.654368932rem, 2.4rem);
                border: 1px solid #fff;
                border-radius: 5.5rem;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 1.6rem;
                background-color: rgba(255, 255, 255, 0.16);
                backdrop-filter: blur(1.6rem);
                box-shadow: 0 0 1.6rem rgba(149, 157, 162, 0.16);

                i {
                    width: clamp(2rem, 1vw + 1.6rem, 3.6rem);
                    height: clamp(2rem, 1vw + 1.6rem, 3.6rem);
                    /*  overflow: hidden; */
                    transition: 0.5s;
                    display: flex;
                    overflow: hidden;

                    img {
                        width: 100%;

                        &:nth-child(1) {
                            transform: translateX(0);
                            transition: 0.3s;
                        }

                        &:nth-child(2) {
                            transform: translateX(-200%);
                            opacity: 0;
                            transition: 0.3s;
                        }
                    }

                    /* img end */
                }

                /* i end */
            }

            /* a end */

            &:hover a {
                background-color: #fff;
                color: #111;
            }


            &:hover i img:nth-child(1) {
                opacity: 0;
                transform: translateX(100%);
            }

            &:hover i img:nth-child(2) {
                opacity: 1;
                transform: translateX(-100%);
            }


        }

        /* main_btn end */
    }

    /* title end */

    .scroll_line {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;

        p {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        ;

        .line {
            width: 0.2rem;
            height: clamp(6rem, 2.58vw + 5.029rem, 10rem);
            background-color: rgba(255, 255, 255, 0.7);
            position: relative;
            animation-name: scrollDown;
            overflow: hidden;

            &::before {
                content: '';
                position: absolute;
                left: 0;
                width: 0.2rem;
                height: clamp(1rem, 1.29vw + 0.51rem, 3rem);
                background-color: #fff;

                animation-name: mainSlide;
                animation-duration: 2s;
                animation-iteration-count: infinite;
                animation-timing-function: ease-in-out;
            }
        }
    }

    /* scroll_line end */


}

/* main_visual end */

@keyframes mainSlide {
    0% {
        top: -20%;
    }

    100% {
        top: 120%;
    }
}

.section-01 {
    height: 300rem;
    background-color: #000;

    .inner {
        max-width: 166.4rem;
        width: calc(100% - 60px);
        margin: 0 auto;
        padding-top: 12rem;
        height: 100%;
        position: relative;

        .text {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 15rem;
            position: sticky;
            top: 24rem;
            text-align: center;
            mix-blend-mode: difference;
            z-index: 77;

            h2 {
                font-size: clamp(3rem, 3.75vw + 1.59rem, 8.8rem);
                font-weight: 700;
                line-height: 1.2;
                text-align: center;
                margin-bottom: 1rem;
                -webkit-text-fill-color: rgb(255, 255, 255, 0.1);
                background-clip: text;
                -webkit-background-clip: text;
                background-repeat: no-repeat;
                background-image: linear-gradient(#fff, #fff);
                background-size: 0% 100%;
                display: block;


            }

            h3 {
                font-size: clamp(1.6rem, 1.03vw + 1.21rem, 3.2rem);
                font-weight: 500;
                line-height: 1.4;
                -webkit-text-fill-color: rgb(255, 255, 255, 0);
                background-clip: text;
                -webkit-background-clip: text;
                background-repeat: no-repeat;
                background-image: linear-gradient(#fff, #fff);
                background-size: 0% 100%;
                display: block;


                span {
                    background: linear-gradient(90deg,
                            rgb(158, 129, 238) 0%,
                            rgb(150, 255, 217) 26%,
                            rgb(98, 180, 255) 50%,
                            rgb(243, 153, 110) 71%,
                            rgb(235, 98, 115) 100%);

                    -webkit-background-clip: text;
                }
            }

            .main_btn {
                margin-top: clamp(3.2rem, 2.07vw + 2.42rem, 6.4rem);
                display: flex;
                justify-content: space-between;
                align-items: center;

                a {
                    font-family: "Poppins", sans-serif;
                    font-weight: 500;
                    font-size: clamp(1.4rem, 0.1292vw + 1.35rem, 1.6rem);
                    border: 1px solid #fff;
                    border-radius: 5.5rem;
                    background-color: transparent;
                    color: #fff;
                    padding: clamp(1rem, 0.129vw + 0.95rem, 1.2rem) clamp(1.4rem, 0.25vw + 1.30rem, 1.8rem);
                    line-height: 1.4;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);



                    i {
                        width: clamp(1.6rem, 0.129vw + 1.557rem, 1.8rem);
                        height: clamp(1.6rem, 0.129vw + 1.55rem, 1.8rem);
                        /*  overflow: hidden; */
                        transition: 0.5s;
                        display: flex;
                        overflow: hidden;

                        img {
                            width: 100%;

                            &:nth-child(1) {
                                transform: translateX(0);
                                transition: 0.3s;
                            }

                            &:nth-child(2) {
                                transform: translateX(-200%);
                                opacity: 0;
                                transition: 0.3s;
                            }
                        }

                        /* img end */
                    }

                    /* i end */
                }

                /* a end */

                &:hover a {
                    background-color: #fff;
                    color: #111;
                }


                &:hover i img:nth-child(1) {
                    opacity: 0;
                    transform: translateX(100%);
                }

                &:hover i img:nth-child(2) {
                    opacity: 1;
                    transform: translateX(-100%);
                }
            }

            /* main_btn end */


        }

        /* text end */

        .image_wrap {
            .img {
                position: absolute;
                border-radius: clamp(1.6rem, 0.51vw + 1.40rem, 2.4rem);
                opacity: 0.6148;
                object-fit: cover;

                &.i1 {
                    width: clamp(24rem, 31.06vw + 12.34rem, 72rem);
                    left: 5%;
                    /* top: -50%; */
                }

                &.i2 {
                    width: clamp(18rem, 23.30vw + 9.26rem, 54rem);
                    right: 5%;
                    top: 32%;
                }

                &.i3 {
                    width: clamp(24rem, 19.41vw + 16.71rem, 54rem);
                    left: 0%;
                    top: 44%;
                }

                &.i4 {
                    width: clamp(18rem, 23.30vw + 9.263rem, 54rem);
                    right: 5%;
                    top: 55%;
                }

                &.i5 {
                    width: clamp(28rem, 44.01vw + 11.49rem, 96rem);
                    left: 0%;
                    top: 66%;
                }



            }
        }

        /* image_wrap end */

    }

    /* inner end */
}

/* section-01 end */

.section-02 {
    background-color: #000;
    padding-top: 16rem;
    /*  height: 3000px; */

    .inner {
        padding-top: 18rem;
        max-width: 166.4rem;
        width: calc(100% - 60px);
        margin: 0 auto;


        h2 {
            font-size: clamp(3rem, 3.75vw + 1.59rem, 8.8rem);
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            margin-bottom: 1rem;
            -webkit-text-fill-color: rgb(255, 255, 255, 0.1);
            background-clip: text;
            -webkit-background-clip: text;
            background-repeat: no-repeat;
            background-image: linear-gradient(#fff, #fff);
            background-size: 0% 100%;
            display: block;
        }

        .category_wrap {
            margin-top: clamp(4.8rem, 1.035vw + 4.41rem, 6.4rem);

            .category {
                display: flex;

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

                li {
                    width: auto;
                    margin-right: 1.6rem;

                    .btn {
                        font-family: 'Poppins';
                        padding: 1rem 1.4rem;
                        line-height: 1.4;
                        border: 1px solid #fff;
                        font-weight: 500;
                        color: #fff;
                        font-size: clamp(1.3rem, 0.129vw + 1.251rem, 1.5rem);
                        border-radius: 5.5rem;
                        position: relative;
                        display: block;
                        overflow: hidden;
                        white-space: nowrap;

                    }
                }

            }
        }

        .box_wrap {
            margin-top: clamp(2.4rem, 1.55vw + 1.81rem, 4.8rem);
            display: flex;
            flex-direction: column;
            row-gap: clamp(3rem, 0.64vw + 2.75rem, 4rem);

            .first_box {
                display: flex;
                /*  flex-wrap: wrap; */
                gap: clamp(3rem, 0.64vw + 2.75rem, 4rem);

                & a:hover img {
                    transform: scale(1.05);
                }

                .left_item {
                    width: 58.77%;

                    a {
                        display: block;
                        width: 100%;
                        height: 56rem;
                        position: relative;
                        border-radius: clamp(1.6rem, 0.25vw + 1.5rem, 2rem);
                        overflow: hidden;

                        &::before {
                            content: '';
                            width: 100%;
                            height: 8rem;
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
                            z-index: 2;
                        }

                        .image {
                            width: 100%;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                                transition: 0.3s;
                            }
                        }

                        span {
                            background-color: rgba(0, 0, 0, 0.36);
                            color: #fff;
                            font-size: clamp(1rem, 0.12vw + 0.95rem, 1.2rem);
                            font-weight: 500;
                            position: absolute;
                            left: 2rem;
                            top: 2rem;
                            line-height: 1;
                            padding: 0.8rem 1.2rem;
                            border-radius: 5.5rem;
                            backdrop-filter: blur(40px);
                            box-shadow: 0 2px 16px rgba(149, 157, 162, 0.16);

                        }

                        .text {
                            font-family: 'Poppins';
                            position: absolute;
                            bottom: 3rem;
                            left: clamp(2rem, 1.03vw + 1.614rem, 3.6rem);
                            display: flex;
                            align-items: center;
                            gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);
                            color: #fff;
                            flex-wrap: wrap;
                            z-index: 3;

                            p {
                                font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                                line-height: 1.4;
                            }

                            h3 {

                                font-size: clamp(1.8rem, 0.388vw + 1.65rem, 2.4rem);
                                line-height: 1.4;
                                font-weight: 500;
                            }
                        }
                    }
                }

                /* left_item end */

                .right_item {
                    width: 38.82%;
                    display: flex;
                    justify-content: space-between;
                    flex-direction: column;
                    gap: clamp(3rem, 0.64vw + 2.75rem, 4rem);

                    a {
                        display: block;
                        width: 100%;
                        height: 26rem;
                        position: relative;
                        border-radius: clamp(1.6rem, 0.25vw + 1.5rem, 2rem);
                        overflow: hidden;

                        &::before {
                            content: '';
                            width: 100%;
                            height: 8rem;
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
                            z-index: 2;
                        }

                        .image {
                            width: 100%;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                                transition: 0.3s;
                            }
                        }

                        span {
                            background-color: rgba(0, 0, 0, 0.36);
                            color: #fff;
                            font-size: clamp(1rem, 0.12vw + 0.95rem, 1.2rem);
                            font-weight: 500;
                            position: absolute;
                            left: 2rem;
                            top: 2rem;
                            line-height: 1;
                            padding: 0.8rem 1.2rem;
                            border-radius: 5.5rem;
                            backdrop-filter: blur(40px);
                            box-shadow: 0 2px 16px rgba(149, 157, 162, 0.16);

                        }

                        .text {
                            font-family: 'Poppins';
                            position: absolute;
                            bottom: 3rem;
                            left: clamp(2rem, 1.03vw + 1.614rem, 3.6rem);
                            display: flex;
                            align-items: center;
                            gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);
                            color: #fff;
                            flex-wrap: wrap;
                            z-index: 3;

                            p {
                                font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                                line-height: 1.4;
                            }

                            h3 {

                                font-size: clamp(1.8rem, 0.388vw + 1.65rem, 2.4rem);
                                line-height: 1.4;
                                font-weight: 500;
                            }
                        }
                    }

                }

            }

            /* first_box end */

            .second_box {
                display: flex;
                /* flex-wrap: wrap; */
                gap: clamp(3rem, 0.64vw + 2.75rem, 4rem);

                & a:hover img {
                    transform: scale(1.05);
                }

                .left_item {
                    width: 58.7%;

                    a {
                        display: block;
                        width: 100%;
                        height: 57.4rem;
                        position: relative;
                        border-radius: clamp(1.6rem, 0.25vw + 1.5rem, 2rem);
                        overflow: hidden;

                        &::before {
                            content: '';
                            width: 100%;
                            height: 8rem;
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
                            z-index: 2;
                        }

                        .image {
                            width: 100%;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                                transition: 0.3s;
                            }
                        }

                        span {
                            background-color: rgba(0, 0, 0, 0.36);
                            color: #fff;
                            font-size: clamp(1rem, 0.12vw + 0.95rem, 1.2rem);
                            font-weight: 500;
                            position: absolute;
                            left: 2rem;
                            top: 2rem;
                            line-height: 1;
                            padding: 0.8rem 1.2rem;
                            border-radius: 5.5rem;
                            backdrop-filter: blur(40px);
                            box-shadow: 0 2px 16px rgba(149, 157, 162, 0.16);

                        }

                        .text {
                            font-family: 'Poppins';
                            position: absolute;
                            bottom: 3rem;
                            left: clamp(2rem, 1.03vw + 1.614rem, 3.6rem);
                            display: flex;
                            align-items: center;
                            gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);
                            color: #fff;
                            flex-wrap: wrap;
                            z-index: 3;

                            p {
                                font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                                line-height: 1.4;
                            }

                            h3 {

                                font-size: clamp(1.8rem, 0.388vw + 1.65rem, 2.4rem);
                                line-height: 1.4;
                                font-weight: 500;
                            }
                        }
                    }
                }

                /* left_item end */

                .right_item {
                    width: 38.82%;

                    a {
                        display: block;
                        width: 100%;
                        height: 57.4rem;
                        position: relative;
                        border-radius: clamp(1.6rem, 0.25vw + 1.5rem, 2rem);
                        overflow: hidden;

                        &::before {
                            content: '';
                            width: 100%;
                            height: 8rem;
                            position: absolute;
                            left: 0;
                            bottom: 0;
                            background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
                            z-index: 2;
                        }

                        .image {
                            width: 100%;
                            height: 100%;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                                transition: 0.3s;
                            }
                        }

                        span {
                            background-color: rgba(0, 0, 0, 0.36);
                            color: #fff;
                            font-size: clamp(1rem, 0.12vw + 0.95rem, 1.2rem);
                            font-weight: 500;
                            position: absolute;
                            left: 2rem;
                            top: 2rem;
                            line-height: 1;
                            padding: 0.8rem 1.2rem;
                            border-radius: 5.5rem;
                            backdrop-filter: blur(40px);
                            box-shadow: 0 2px 16px rgba(149, 157, 162, 0.16);

                        }

                        .text {
                            font-family: 'Poppins';
                            position: absolute;
                            bottom: 3rem;
                            left: clamp(2rem, 1.03vw + 1.614rem, 3.6rem);
                            display: flex;
                            align-items: center;
                            gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);
                            color: #fff;
                            flex-wrap: wrap;
                            z-index: 3;

                            p {
                                font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                                line-height: 1.4;
                            }

                            h3 {

                                font-size: clamp(1.8rem, 0.388vw + 1.65rem, 2.4rem);
                                line-height: 1.4;
                                font-weight: 500;
                            }
                        }
                    }
                }
            }

            .third_box {
                & a:hover img {
                    transform: scale(1.05);
                }

                width: 100%;

                a {
                    display: block;
                    width: 100%;
                    height: 56rem;
                    position: relative;
                    border-radius: clamp(1.6rem, 0.25vw + 1.5rem, 2rem);
                    overflow: hidden;

                    &::before {
                        content: '';
                        width: 100%;
                        height: 8rem;
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
                        z-index: 2;
                    }

                    .image {
                        width: 100%;
                        height: 100%;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            display: block;
                            transition: 0.3s;
                        }
                    }

                    span {
                        background-color: rgba(0, 0, 0, 0.36);
                        color: #fff;
                        font-size: clamp(1rem, 0.12vw + 0.95rem, 1.2rem);
                        font-weight: 500;
                        position: absolute;
                        left: 2rem;
                        top: 2rem;
                        line-height: 1;
                        padding: 0.8rem 1.2rem;
                        border-radius: 5.5rem;
                        backdrop-filter: blur(40px);
                        box-shadow: 0 2px 16px rgba(149, 157, 162, 0.16);

                    }

                    .text {
                        font-family: 'Poppins';
                        position: absolute;
                        bottom: 3rem;
                        left: clamp(2rem, 1.03vw + 1.614rem, 3.6rem);
                        display: flex;
                        align-items: center;
                        gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);
                        color: #fff;
                        flex-wrap: wrap;
                        z-index: 3;

                        p {
                            font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                            line-height: 1.4;
                        }

                        h3 {

                            font-size: clamp(1.8rem, 0.388vw + 1.65rem, 2.4rem);
                            line-height: 1.4;
                            font-weight: 500;
                        }
                    }
                }

            }
        }

        /* box_wrap end */

        .main_btn {
            margin-top: clamp(3.2rem, 2.07vw + 2.42rem, 6.4rem);
            display: flex;
            justify-content: center;
            align-items: center;

            a {
                font-family: "Poppins", sans-serif;
                font-weight: 500;
                font-size: clamp(1.4rem, 0.1292vw + 1.35rem, 1.6rem);
                border: 1px solid #fff;
                border-radius: 5.5rem;
                background-color: transparent;
                color: #fff;
                padding: clamp(1rem, 0.129vw + 0.95rem, 1.2rem) clamp(1.4rem, 0.25vw + 1.30rem, 1.8rem);
                line-height: 1.4;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);



                i {
                    width: clamp(1.6rem, 0.129vw + 1.557rem, 1.8rem);
                    height: clamp(1.6rem, 0.129vw + 1.55rem, 1.8rem);
                    /*  overflow: hidden; */
                    transition: 0.5s;
                    display: flex;
                    overflow: hidden;

                    img {
                        width: 100%;

                        &:nth-child(1) {
                            transform: translateX(0);
                            transition: 0.3s;
                        }

                        &:nth-child(2) {
                            transform: translateX(-200%);
                            opacity: 0;
                            transition: 0.3s;
                        }
                    }

                    /* img end */
                }

                /* i end */
                &:hover {
                    background-color: #fff;
                    color: #111;
                }


                &:hover i img:nth-child(1) {
                    opacity: 0;
                    transform: translateX(100%);
                }

                &:hover i img:nth-child(2) {
                    opacity: 1;
                    transform: translateX(-100%);
                }
            }

            /* a end */


        }

    }


}

.section-03 {
    background-color: #000;
    padding-top: clamp(8rem, 2.588vw + 7.029rem, 12rem);
    padding-bottom: clamp(8rem, 2.588vw + 7.029rem, 12rem);

    .inner {
        padding-top: 6rem;
        max-width: 166.4rem;
        width: calc(100% - 60px);
        margin: 0 auto;

        h2 {
            font-size: clamp(3rem, 3.75vw + 1.59rem, 8.8rem);
            font-weight: 700;
            line-height: 1.2;
            text-align: center;
            /* margin-bottom: 1rem; */
            -webkit-text-fill-color: rgb(255, 255, 255, 0.1);
            background-clip: text;
            -webkit-background-clip: text;
            background-repeat: no-repeat;
            background-image: linear-gradient(#fff, #fff);
            background-size: 0% 100%;
            display: block;
        }

        .item_wrap {
            margin-top: clamp(4.8rem, 1.035vw + 4.41rem, 6.4rem);
            display: flex;
            flex-direction: column;
            gap: clamp(6rem, 2.33vw + 5.12rem, 9.6rem);


            .item_box {
                display: flex;
                align-items: center;
                gap: clamp(7rem, 1.94vw + 6.27rem, 10rem);

                .image {
                    width: 50%;
                    height: clamp(12rem, 27.57vw + 1.66rem, 54.6rem);
                    border-radius: clamp(1.6rem, 1.294vw + 1.114rem, 3.6rem);
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                .text {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    width: 50%;
                    height: clamp(12rem, 27.57vw + 1.66rem, 54.6rem);

                    h3 {
                        max-width: 60.3rem;
                        color: #fff;
                        font-family: "Poppins", sans-serif;
                        font-size: clamp(2rem, 2.20vw + 1.17rem, 5.4rem);
                        font-weight: 600;
                        line-height: 1.2;
                        margin-bottom: clamp(1.6rem, 0.517vw + 1.40rem, 2.4rem);
                    }

                    p {
                        max-width: 60.3rem;
                        color: #fff;
                        font-size: clamp(1.6rem, 0.258vw + 1.502rem, 2rem);
                        font-weight: 500;
                        line-height: 1.4;
                        margin-bottom: clamp(3.2rem, 2.071vw + 2.42rem, 6.4rem);
                        display: flex;
                        letter-spacing: -0.04rem;
                        /* white-space: nowrap; */

                    }

                    .main_btn {
                        /*                      display: flex;
                        justify-content: flex-start;
                        align-items: center; */
                        text-align: left;
                        display: block;

                        a {
                            font-family: "Poppins", sans-serif;
                            font-weight: 500;
                            font-size: clamp(1.4rem, 0.1292vw + 1.35rem, 1.6rem);
                            border: 1px solid #fff;
                            border-radius: 5.5rem;
                            background-color: transparent;
                            color: #fff;
                            padding: clamp(1rem, 0.129vw + 0.95rem, 1.2rem) clamp(1.4rem, 0.25vw + 1.30rem, 1.8rem);
                            line-height: 1.4;
                            display: inline-flex;
                            justify-content: center;
                            align-items: center;
                            gap: clamp(0.8rem, 0.129vw + 0.75rem, 1rem);



                            i {
                                width: clamp(1.6rem, 0.129vw + 1.557rem, 1.8rem);
                                height: clamp(1.6rem, 0.129vw + 1.55rem, 1.8rem);
                                /*  overflow: hidden; */
                                transition: 0.5s;
                                display: flex;
                                overflow: hidden;

                                img {
                                    width: 100%;

                                    &:nth-child(1) {
                                        transform: translateX(0);
                                        transition: 0.3s;
                                    }

                                    &:nth-child(2) {
                                        transform: translateX(-200%);
                                        opacity: 0;
                                        transition: 0.3s;
                                    }
                                }

                                /* img end */
                            }

                            /* i end */


                            &:hover {
                                background-color: #fff;
                                color: #111;
                            }


                            &:hover i img:nth-child(1) {
                                opacity: 0;
                                transform: translateX(100%);
                            }

                            &:hover i img:nth-child(2) {
                                opacity: 1;
                                transform: translateX(-100%);
                            }


                        }

                        /* a end */

                    }
                }

            }

            .box02 {
                justify-content: flex-end;

                .text {
                    order: -1;

                }
            }

            .box04 {
                justify-content: flex-end;

                .text {
                    order: -1;

                }
            }

        }

        /* item_wrap end */

    }
}


.section-partner {
    background-color: #000;
    padding: clamp(4rem, 5.177vw + 2.058rem, 12rem) 0;
    display: flex;
    gap: clamp(8rem, 2.588vw + 7.029rem, 12rem);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: clamp(2rem, 9.061vw - 1.398rem, 16rem);
        height: 100%;
        background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
        z-index: 2;
    }

    &::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: clamp(2rem, 9.061vw - 1.398rem, 16rem);
        height: 100%;
        background: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
        z-index: 2;
    }

    img {
        width: clamp(600rem, 582.524vw + 381.553rem, 1500rem);
        animation: marquee 200s linear infinite;
    }


}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.section-04 {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;


    &::before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: clamp(4rem, 2.588vw + 3.029rem, 8rem);
        z-index: 2;
        left: 0;
        background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
    }

    &::after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        width: 100%;
        height: clamp(4rem, 2.588vw + 3.029rem, 8rem);
        z-index: 2;
        left: 0;
        background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
    }

    .inner {
        max-width: 166.4rem;
        width: calc(100% - 60px);
        margin: 0 auto;
        height: 100%;

        .title {
            .title_box {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                position: relative;
                z-index: 99;
                margin-top: 20rem;
                mix-blend-mode: difference;


                &>span {
                    font-size: clamp(2rem, 0.64vw + 1.75rem, 3rem);
                    font-weight: 600;
                    line-height: 1.2;
                    margin-bottom: clamp(2rem, 1.94vw + 1.27rem, 5rem);
                    text-align: center;
                    color: #fff;

                }

                .animated-title {
                    font-size: clamp(3.4rem, 4.91vw + 1.55rem, 11rem);
                    font-weight: 700;
                    line-height: 1.2 !important;
                    /* height: clamp(10rem, 18.77vw + 2.96rem, 39rem); */
                    color: #fff;
                    background-clip: text;
                    -webkit-text-fill-color: rgb(255, 255, 255, 0.1);
                    -webkit-background-clip: text;
                    background-repeat: no-repeat;
                    background-size: 100%;
                    mix-blend-mode: difference;
                    background-image: linear-gradient(#fff, #fff);
                    display: block;
                    position: relative;
                    transition: 0.5s;
                    position: relative;

                    &:before {
                        content: '';
                        width: clamp(1rem, 1.5vw + 1.0rem, 5rem);
                        height: clamp(1rem, 1.5vw + 1.0rem, 5rem);
                        border-radius: 50%;
                        background-color: #fff;
                        position: absolute;
                        left: 0;
                        top: -2rem;
                        transition: 0.3s linear;

                    }

                    &.active {
                        transform: translateY(20%);

                        span {
                            text-decoration: underline 0.3rem white;
                            text-underline-offset: clamp(1rem, 0.6vw + 1rem, 3rem);
                        }

                        &:before {
                            left: 95%;
                        }
                    }

                    span {
                        letter-spacing: -1px;
                        transition: 0.5s;
                    }
                }

            }
        }

        /* title end */

        .wrap {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 0;
            height: 100vh;

            .item {

                li {
                    position: relative;

                    img {
                        width: clamp(10rem, 12.94vw + 5.14rem, 30rem);
                        height: auto;
                        border-radius: clamp(1.2rem, 0.258vw + 1.10rem, 1.6rem);
                    }
                }
            }

            &.left_wrap {
                left: 2.2rem;
                ;

                .left {
                    position: absolute;
                    /* padding-bottom: 20rem; */
                    /* animation: leftUp 5s linear infinite;  */
                    animation: leftUp 5s linear 0s infinite normal;



                    .left1 {
                        padding-bottom: clamp(15rem, 1.94vw + 14.27rem, 18rem);
                        left: 40%;

                        img {
                            transform: rotate(16deg);
                        }
                    }

                    .left2 {
                        padding-bottom: clamp(12rem, 1.94vw + 11.27rem, 15rem);

                        img {
                            transform: rotate(-8deg);
                        }
                    }

                    .left3 {
                        padding-bottom: clamp(13rem, 1.94vw + 12.27rem, 16rem);

                        img {
                            transform: rotate(8deg);
                        }
                    }

                    .left4 {
                        left: 50%;
                        padding-bottom: clamp(10rem, 1.94vw + 9.27rem, 13rem);

                        img {
                            transform: rotate(75deg);
                        }
                    }

                    .left5 {
                        padding-bottom: clamp(15rem, 1.94vw + 14.27rem, 18rem);

                        img {
                            transform: rotate(12deg);
                        }
                    }
                }
            }

            &.right_wrap {
                right: 31.2rem;

                .right {
                    position: absolute;
                    padding-bottom: 20rem;
                    animation: leftDown 4s linear 0s infinite normal;

                    .right1 {
                        padding-bottom: clamp(15rem, 1.94vw + 14.27rem, 18rem);
                        right: 30%;

                        img {
                            transform: rotate(-14deg);
                        }
                    }

                    .right2 {
                        padding-bottom: clamp(12rem, 1.94vw + 11.27rem, 15rem);

                        img {
                            transform: rotate(77deg);
                        }
                    }

                    .right3 {
                        padding-bottom: clamp(11rem, 1.94vw + 10.27rem, 14rem);

                        img {
                            transform: rotate(8deg);
                        }
                    }

                    .right4 {
                        padding-bottom: clamp(13rem, 1.94vw + 12.27rem, 16rem);
                        right: 40%;

                        img {
                            transform: rotate(-8deg);
                        }
                    }

                    .right5 {
                        padding-bottom: clamp(13rem, 1.94vw + 12.27rem, 16rem);


                        img {
                            transform: rotate(24deg);
                        }
                    }

                }

                /* right end */
            }

            /* right_wrap end */
        }

        /* wrap end */
    }

    /* inner end */



}

/* section-04 end */



@keyframes leftUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes leftDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0%);
    }
}

.footer {
    width: 100%;
    line-height: 1.68;
    text-align: center;
    background-color: #000;

    .inner {
        padding-top: clamp(4rem, 0.90vw + 3.66rem, 5.4rem);
        padding-bottom: clamp(4rem, 0.90vw + 3.66rem, 5.4rem);
        max-width: 166.4rem;
        width: calc(100% - 60px);
        margin: 0 auto;

        .footer_menu {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: clamp(2rem, 0.647vw + 1.75rem, 3rem);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            flex-wrap: wrap;
            gap: 2.4rem;

            .logo {
                width: clamp(12rem, 1.29vw + 11.51rem, 14rem);
                max-width: clamp(12rem, 1.29vw + 11.51rem, 14rem);

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            /* logo end */

            .nav {
                display: flex;
                gap: clamp(1.6rem, 0.51vw + 1.40rem, 2.4rem);
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;

                li {
                    a {
                        font-family: 'Poppins';
                        color: #fff;
                        font-weight: 500;
                        font-size: clamp(1.4rem, 0.129vw + 1.351rem, 1.6rem);

                        &:hover {
                            text-decoration: underline 2px;
                        }
                    }
                }
            }
        }

        /* footer _menu */

        .footer_info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: clamp(2rem, 0.647vw + 1.75rem, 3rem) 0;

            .name {
                display: flex;
                flex-direction: column;
                gap: 1rem;


                .box {
                    display: flex;
                    gap: 1.5rem;
                    flex-wrap: wrap;

                    .com {
                        display: flex;
                        gap: 1.2rem;
                        align-items: center;
                        font-family: 'Pretendard-Regular';
                        font-size: clamp(1.4rem, 0.129vw + 1.351rem, 1.6rem);
                        line-height: 1.3;

                        b {
                            color: rgba(255, 255, 255, 0.5);
                        }

                        p {
                            color: #fff;
                        }
                    }
                }

            }

            /* name end */

            .sns_wrap {
                display: flex;
                align-items: center;
                gap: 1rem;

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 0.6rem;
                    background-color: rgba(255, 255, 255, 0.1);
                    width: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);
                    height: clamp(3rem, 0.388vw + 2.85rem, 3.6rem);

                    img {
                        width: clamp(2rem, 0.388vw + 1.85rem, 2.6rem);
                        opacity: 0.7;
                    }


                }
            }

        }

        /* footer_info end */

        .footer_map {
            ul {
                padding: clamp(2rem, 0.64vw + 1.75rem, 3rem) 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: clamp(1.6rem, 0.51vw + 1.405rem, 2.4rem);

                li {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1rem;
                    line-height: 1.3;

                    b {
                        color: rgba(255, 255, 255, 0.5);
                        font-size: clamp(1.4rem, 0.129vw + 1.35rem, 1.6rem);
                    }

                    p {
                        font-size: clamp(1.2rem, 0.129vw + 1.151rem, 1.4rem);
                        color: #fff;
                        text-align: left;
                    }
                }
            }
        }

        .footer_bottom {
            padding-top: clamp(2rem, 0.647vw + 1.757rem, 3rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.6rem;

            .left {
                display: flex;
                align-items: center;
                gap: 1rem;

                a {
                    color: #fff;
                    font-size: clamp(1.2rem, 0.129vw + 1.15rem, 1.4rem);
                    font-weight: 500;
                    line-height: 1.3;
                }
            }

            /* left end */

            address {
                font-size: clamp(1.4rem, 0.129vw + 1.351rem, 1.6rem);
                color: #fff;
                line-height: 1.3;
            }
        }

        /* footer_bottom end */
    }
}








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


    .header {
        .inner {
            .nav {
                display: none;
            }

            .nav_mobile {
                .mobile_inner {
                    .mobile_header {
                        height: 9.6rem;
                        min-height: 9rem;
                    }

                    .mobile_info {
                        align-items: flex-start;

                        .mobile_gnb {
                            flex-direction: column;
                            padding: 0 1rem;
                            gap: 1.5rem;

                            .depth-02 {
                                display: flex;
                                flex-direction: row;
                                flex-wrap: wrap;
                                margin-top: 1.4rem;

                                li {
                                    white-space: nowrap;
                                    position: relative;

                                    a {
                                        padding-right: clamp(1rem, 1.29vw + 0.51rem, 3rem);

                                        .line {
                                            display: block;
                                        }
                                    }
                                }

                            }
                        }
                    }

                    .text_info {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                    }
                }
            }
        }



    }

    .section-02 .inner .box_wrap .first_box .left_item {
        width: 57.46%;
    }

    .section-02 .inner .box_wrap .first_box .left_item a {
        height: 49.3rem;
    }

    .section-02 .inner .box_wrap .first_box .right_item a {
        height: 22.6rem;
    }

    .section-02 .inner .box_wrap .second_box .left_item {
        width: 57.46%;
    }

    .section-02 .inner .box_wrap .second_box .left_item a {
        height: 45.8rem;
    }

    .section-02 .inner .box_wrap .second_box .right_item a {
        height: 45.8rem;
    }

    .section-02 .inner .box_wrap .third_box a {
        height: 48.8rem;
    }

    /*     .section-03 .inner .item_wrap .item_box .text {
        width: 50%;
    } */

    .section-03 .inner .item_wrap .item_box .text {
        height: auto;
    }

    .section-03 .inner .item_wrap .box02 .text {}

    .section-04 .inner .wrap.right_wrap {
        right: 22.2rem;
    }


}

@media screen and (max-width: 768px) {
    .cursor {
        &.active {
            width: 5rem;
            height: 5rem;
        }
    }

    .header {
        height: 6.6rem;

        .inner {
            .nav_mobile {
                .mobile_inner {
                    width: calc(100% - 40px);

                    .mobile_header {
                        height: 6.6rem;
                        min-height: 6.6rem;
                        padding: 0 1rem;
                    }

                    .mobile_info {
                        display: flex;
                        align-items: center;

                        .mobile_gnb {
                            padding: 0;
                            gap: clamp(1.6rem, 2.847vw + 0.53rem, 6rem);

                            li {
                                span {
                                    display: none;
                                }
                            }
                        }
                    }
                }

            }
        }
    }

    .section-02 {

        .inner {
            .box_wrap {

                .first_box {
                    flex-wrap: wrap;
                }

                .second_box {
                    flex-wrap: wrap;
                }

                .box {
                    .item {
                        width: 100%;

                        a {
                            height: 33.1rem;
                        }
                    }

                    a {
                        height: 33.1rem;
                    }

                }
            }
        }

    }

    .section-03 .inner .item_wrap .item_box {
        flex-wrap: wrap;
        gap: 2.4rem;

        .image {
            width: 100%;
            height: auto;
        }

        .text {
            width: 100%;

            p {
                max-width: 100%;
            }
        }
    }

    .section-03 .inner .item_wrap .box02 .text {
        order: 0;
    }

    .section-03 .inner .item_wrap .box04 .text {
        order: 0;
    }

    .section-04 .inner .wrap.right_wrap {
        right: 17.2rem;
    }

}

@media screen and (max-width: 544px) {
    .cursor {
        display: none;
    }

    .header .inner .option .sns {
        display: none;
    }

    .header .inner .option .line02 {
        display: none;
    }

    .section-02 .inner .category_wrap .category {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 1.6rem;
    }


    .section-04 .inner .wrap.right_wrap {
        right: 14.2rem;
    }
}