@charset "utf-8";
@import url('https://fonts.cdnfonts.com/css/franklin-gothic');

@font-face {
    font-family: 'FranklinH';
    src: url('../fonts/Franklin\ Gothic\ Heavy\ Italic.ttf') format('woff'),
        url('../fonts/Franklin-Gothic-Heavy-Italic.woff') format('woff2');
    font-weight: initial;
}

@font-face {
    font-family: 'FranklinM';
    src: url('../fonts/Franklin\ Gothic\ Medium\ Italic.ttf') format('woff'),
        url('../fonts/Franklin\ Gothic\ Medium\ Italic.ttf') format('woff2');
    font-weight: initial;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
    line-height: 1.5;
    border: none;
    outline: none;
}

:root {
    --sub-color: #E6002D;
    --fh: 'FranklinH', sans-serif;
    --fm: 'FranklinM', sans-serif;
    --ro: 'Roboto', sans-serif;
    --pre: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

body {
    background: black;
    scroll-behavior: smooth;
}

img {
    vertical-align: top;
    pointer-events: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--fh);
}

h1 {
    font-size: 6em;
    font-size: calc(1em + 2vw);
    font-family: var(--fh);
    margin: 0;
    font-style: italic;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.section {
    padding-left: 20rem;
    text-align: center;
    position: relative;
    font-family: var(--pre);
    color: #fff;
    background-color: black;
    /* overflow: hidden; */
}

.wrap {
    position: fixed;
    left: 0;
    width: 20rem;
    z-index: 2;
    height: 100%;
    background-color: transparent;
}

header {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100px;
}

header .header_wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2.5rem 5% 0;
}

header .header_bg {
    position: fixed;
    inset: 0px;
    opacity: 0;
    z-index: 3;
    transition: 0.3s cubic-bezier(0, 0.55, 0.45, 1);
    background-color: rgba(0, 0, 0, 0.7);
    pointer-events: auto;
    visibility: hidden;
}

.header_bg.show {
    opacity: 1;
    visibility: visible;
}

header button {
    position: relative;
    z-index: 9999999999;
    cursor: pointer;
    appearance: none;
    background: transparent;
}

.m_box {
    display: block;
    background-color: rgba(0, 0, 0, 0.88);
    border-left: 1px solid #ffffff77;
    position: fixed;
    height: 100dvh;
    z-index: 99;
    width: 50dvw;
    right: -100vw;
    text-align: center;
    padding-top: 6rem;
    overflow-y: auto;
    box-sizing: border-box;
    font-family: var(--pre);
    backdrop-filter: blur(10px);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1)
}

.m_box.open {
    display: block;
    right: 0;
    /* Slide in */
}

.m_box .m_menu {
    display: grid;
    grid-auto-rows: 1fr;
    margin-top: 0.5rem;
}

.m_box>ul:first-child {
    border-top: 1px solid #8080804f;
}

.m_box>ul>li {
    border-bottom: 1px solid #8080804f;
    text-align: left;
    padding: 1.75rem 5.75vw;
    align-content: center;
    opacity: 0;
}

.m_box>ul>li>a {
    font-family: var(--fh);
    width: 100%;
    display: block;
    font-size: 3.8rem;
    text-align: left;
    text-transform: uppercase;
    transition: 0.3s;
}


.m_box>ul>li .depth {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    gap: 2.75rem;
}

.m_box>ul>li .depth li a {
    font-family: var(--fm);
    font-style: italic;
    color: #666;
    text-transform: uppercase;
    font-size: 1.5rem;
    transition: 0.3s;
}

.m_box>ul>li .depth li:hover a {
    color: var(--sub-color);
    /* color: white; */
}

.m_box .copy {
    position: absolute;
    right: 10%;
    bottom: 4%;
    letter-spacing: 0.25px;
}

.m_box .copy span {
    text-align: right;
    opacity: 0.35;
    font-style: italic;
    font-weight: 300;
    font-family: var(--fm);
    text-transform: uppercase;
    font-size: 0.95rem;
}

/* Backgrounds colors for sections */
/* .fp-section:nth-child(1) {
                background-image: linear-gradient(128deg, #40afff, #3f61ff);
            } */
.fp-section {
    background-color: black;
}

.fp-is-overflow .fp-overflow.fp-auto-height,
.fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.fp-is-overflow>.fp-overflow {
    overflow: auto;
}

.body {
    position: relative;
}


.main_full .section {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: -1;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center 60%;
    background-size: cover;
    transition: transform 1.5s ease;
    transform: translateY(100%) scale(0.85) rotate(0.001deg);
    filter: blur(8px)
}

.main_full #m1 {
    z-index: 7;
    overflow: hidden;
    transform: translateY(0);
    filter: blur(0);
}

.main_full .section.active {
    transform: translateY(0);
    filter: blur(0);
}

.main_full #m2.active {
    z-index: 6;
}

.main_full #m3.active {
    z-index: 5;
}

.main_full #m4.active {
    z-index: 4;
}

.main_full #m5.active {
    z-index: 3;
}

.main_full #footer.active {
    z-index: 2;
}


.fix-logo {
    display: flex;
    justify-content: center;
    padding: 2.5rem 2.5rem 5rem 5rem;
    left: 0;
    z-index: 9;
    width: 20rem;
    height: 100%;
    background: transparent;
}

.fix-logo .fix-cont {
    max-width: 135px;
    overflow: hidden;
}

.fix-logo .fix-cont>img {
    width: 100%;
    display: block;
    opacity: 0;
}

.sub .fix-logo .fix-cont>img {
    opacity: 1;
}

.m1_wrap {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background: #fff;
    background-color: black;
    overflow: hidden;
}

.m1-top {
    position: relative;
    z-index: 0;
    background-color: rgb(255, 255, 255);
    width: 100%;
    background-color: black;
    bottom: 15%;
    right: 10%;
}

.m1-bot {
    width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 4rem;
    z-index: 1;
    background-color: black;
}

.m1-bot ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-inline: 48% 5%;
}

.m1-bot ul li {
    flex: 1 1 0;
    border-inline: 1px solid white;
}

.m1-bot ul li a {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.m1-bot ul li a span {
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.m_pro .slide_wrap {
    display: flex;
    height: 100%;
    width: 100%;
}

/* .mpro1 .slide_wrap {
    background: radial-gradient(#6f228b 0%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 75%;
    background-position: 0% 100%;
    animation: circle 10s ease-in infinite;
} */
#footer .fp-overflow,
#m2 .fp-overflow {
    overflow: hidden;
}

.m_pro .slide_wrap .m2-1 {
    flex: 1;
    text-transform: uppercase;
    text-align: left;
    padding-top: 15%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.m_pro .slide_wrap .m2-1 span {
    font-family: var(--fm);
    color: var(--sub-color);
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
}

.m_pro .slide_wrap .m2-1 h2 {
    font-size: 5rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    margin-block: 0.9rem 0.3rem;
}

.m_pro .slide_wrap .m2-1 h3 {
    font-family: var(--fm);
    font-size: 1.85rem;
    text-wrap: nowrap;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.m_pro .slide_wrap .m2-1 .desc {
    margin-top: 5rem;
}

.m_pro .slide_wrap .m2-1 p {
    font-size: 1.25rem;
    transform: translateX(20%);
    opacity: 0;
    transition: 0.3s;
    font-family: var(--ro);
}

.m_pro .slide_wrap .m2-1 p:hover {
    font-size: 1.5rem;
    transition: 0.3s;
}

.m_pro .slide_wrap .m2-2 {
    position: relative;
    flex: 3;
    background-blend-mode: overlay;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 0;
    align-content: center;
    /* background-image: radial-gradient(#6f228b, #32094123, transparent); */
    z-index: 0;
    perspective: 1000px;
    transform-style: preserve-3d;


    >div {
        transform-style: preserve-3d;
    }

    &::after {
        position: absolute;
        width: 100%;
        top: 0;
        height: 100%;
        z-index: 3;
        background: url(../1x/자산\ 25aa.png);
        display: none;
        content: '';
        opacity: 0.05;
    }
}

.mpro2 {
    background: url(../1x/자산\ 33bgaa.png);
    background-size: cover;
    width: 100%;
}

.mpro2 .slide_wrap .m2-2 {
    background: none;
}

.m_pro .slide_wrap .m2-3 {
    /* background: url(../1x/자산\ 26bgaa.png); */
    background: linear-gradient(40deg, rgba(25, 0, 36, 1) 0%, rgba(0, 0, 0, 0) 50%);
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-block: 15% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpro2 .slide_wrap .m2-3 {
    background: rgba(0, 0, 0, 0.42);
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-block: 15% 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m_pro .slide_wrap .m2-3 ul {
    padding: 2rem;
    font-family: var(--ro);
    overflow: hidden;
}

.m_pro .slide_wrap .m2-3 ul li {
    margin-bottom: 5rem;
    overflow: hidden;
    transform: translateY(-50%);
    opacity: 0;
}

.m_pro .slide_wrap .m2-3 ul span {
    color: #666;
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.15rem;
    font-family: var(--ro);
}

.m_pro .slide_wrap .m2-3 ul p {
    font-size: 1.38rem;
}

.m_pro .slide_wrap a {
    border: 1px solid #fff;
    padding: 0.55rem 2.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: 0.3s;
}

.m_pro .slide_wrap a:hover {
    background: white;
    color: #320941;
    font-weight: 700;
}

.m_pro .slide_wrap a>i {
    margin-top: 1px;
    font-size: 1.25rem;
    transition: 0.7s;
    font-family: 'Roboto', sans-serif;
}

.m_pro .slide_wrap a:hover i {
    color: #320941;
    font-weight: 700;
    transform: translateX(8px);
}

.m1-nav li {
    transform: translateY(100%);
    opacity: 0;
}

.m1-nav li:hover span {
    color: var(--sub-color);
    transition: 0.3s;
}

.m1-nav li:hover i {
    filter: invert(75%) sepia(120%) saturate(5000%) hue-rotate(-20deg) brightness(95%) contrast(115%);
}




.m4_wrap {
    padding-top: 7%;
    padding-right: 7%;
    padding-left: 1rem;
    text-transform: uppercase;
}

.m4_wrap .m4_title {
    transform: translateY(-50%);
    opacity: 0;
}

.m4_wrap span {
    display: block;
    margin-bottom: 1rem;
    color: #666;
}

.gal {
    display: flex;
    width: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.gal li {
    flex: 1;
    background-size: cover;
    background-repeat: no-repeat;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
    /* box-shadow: inset 3px 3px 5px 0px #161616; */
    text-transform: uppercase;
    font-style: italic;
    font-size: 1.65rem;
    align-content: center;
    position: relative;
    min-height: 760px;
    height: 100%;
    filter: brightness(0.7);
}

.gal li h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.gal li h2+p {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    padding-top: 4rem;
    text-wrap: balance;
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-style: normal;
    opacity: 0;
    color: #afafaf;
    height: 0;
    text-transform: none;
}

.gal>li:hover p {
    width: 76%;
    margin: 0 auto;
    height: 100%;
    transition: all 0.3s;
    opacity: 1;
}

.gal li>* {
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

.gal li:hover::after {
    opacity: 1;
    transition: 0.2s;
}

.gal li:after {
    opacity: 0.2;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    position: absolute;
    height: 100%;
    content: '';
    background: rgba(0, 0, 0, 0.72);
}

.gal .gal_item:nth-child(1) {
    background: url(../1x/자산\ 183811.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.gal .gal_item:nth-child(2) {
    background: url(../1x/자산\ 193811.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.gal .gal_item:nth-child(3) {
    background: url(../1x/자산\ 203811.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.gal .gal_item:nth-child(4) {
    background: url(../1x/자산\ 213811.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.gal li:hover>* {
    opacity: 1;
}

.gal li:hover {
    outline: 2px solid #F82F4D;
    filter: brightness(1);
    background: #161616;
    /* box-shadow: inset 200px 200px 100px 100px #00000060; */
    margin: 0 !important;
}

.gal li.hover-next {
    filter: brightness(0.6);
    transform: rotateY(-20deg);
    box-shadow: inset 60px 0px 100px 0px #0000007c;
}

.gal li.hover-next-next {
    filter: brightness(0.4);
    transform: rotateY(-40deg);
}

.gal li.hover-next-next-next {
    filter: brightness(0.2);
    transform: rotateY(-60deg);
}

.gal li.hover-prev {
    filter: brightness(0.6);
    transform: rotateY(20deg);
    box-shadow: inset -60px 0px 100px 0px #0000007c;
}

.gal li.hover-prev-prev {
    filter: brightness(0.4);
    transform: rotateY(40deg);
}

.gal li.hover-prev-prev-prev {
    filter: brightness(0.2);
    transform: rotateY(60deg);
}

#m5 {
    background: url(../1x/자산\ 33bgaa.png);
    background-size: cover;
    width: 100%;
    align-items: center;
    justify-content: center;
}

#m5 div {
    padding-right: 10%;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: relative;

}

#m5 div ul {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

#m5 div ul li {
    min-height: 260px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

#m5 div>ul>li::before {
    position: absolute;
    inset: 0 0 0 0;
    background-image: linear-gradient(360deg, #00000085, transparent);
    background-color: #ff0033;
    opacity: 0;
    content: '';
    z-index: -1;
    height: 100%;
    width: 100%;
    display: block;
    filter: blur(4px);
    mix-blend-mode: darken;
    transition: all 0.3s;
    box-shadow: inset 2px 2px 4px 0px #161616;
}

#m5 div>ul>li:hover::before {
    opacity: 0.8;
}

#m5 div>ul>li:hover i {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}

#m5 div>ul>li>h3 {
    font-size: 3rem;
}

#m5 div>ul>li a {
    color: #919191;
    padding-top: 0.95rem;
    font-family: var(--pre);
}

#footer {
    height: 35vh;
}

#footer .footer_wrap .gotop {
    margin-block: 3px 2rem;
    display: block;
    width: 100%;
    text-align: right;
}

#footer .footer_wrap .gotop>button {
    border: 1px solid #E6002D;
    padding: 0.45em 1rem;
    color: #E6002D;
    background-color: black;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer;
}

#footer .footer_wrap {
    position: relative;
    height: 100%;
    width: 100%;
    padding-right: 20rem;
}

#footer .f_logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

#footer .info {
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
}

#footer .add {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
}

#footer .add span {
    font-weight: 500;
}

#footer .info ul {
    display: flex;
    gap: 2vw;
}

#footer .info ul li {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
}

#footer .info ul li a {
    color: #ccc;
    font-weight: 300;
}

#footer .info2 {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #262626;
    min-height: 50px;
    position: absolute;
    z-index: 99999;
    bottom: 0;
}

#footer .info2 li {
    border-right: 1px solid #ccc;
    padding-inline: 2vw;
    color: #ccc;
    font-size: 12px;
    font-weight: 300;

    &:last-child {
        border: none;
    }
}

@keyframes circle {
    to {
        background-position: 0% 100%;
    }

    50% {
        background-position: 150% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

@keyframes circle2 {
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.8;
    background: transparent;
    animation: circle2 8s infinite;
}

.bg-video__content {
    height: 99dvh;
    width: 100vw;
    object-fit: cover;
    transform: translateX(-30%);
    background: transparent;
    position: relative;
    z-index: -2;
}