@font-face {
    font-family: "Circularstd";
    src: url(https://www.densed.net/files/fonts/web-font/circular-std-medium-500.ttf);
}

:root{
    --font-headin: "Raleway", "Arial", sans-serif;
    --font-Normal: "Circularstd", sans-serif;
    --size-small: 14px;
    --size-mid: 16px;
    --size-large: 18px;
    --size-headin-smaller: 24px;
    --size-headin-small: 28px;
    --size-headin-mid: 38px;
    --size-headin: 48px;
    --size-title-small: 58px;
    --size-title: 68px;
    --size-title-large: 78px;
    --size-title-extra: 88px;
    --main-color: #186dc2;
    --primary-color: white;
    --secondary-color: #0d1c36;
    --border: 1px solid #3d4249;
    --shadow: rgba(118, 120, 130, 0.325) 0px 0px 0px 1px inset;
    --button-font: "Fragment Mono", "Arial", sans-serif;
}

*{
    margin: 0px;
    padding: 0px;
}

a{
    text-decoration: none;
    color: unset;
}

h1, h2, h3, h4, h5, h6{
    font-size: inherit;
    font-weight: inherit;
    margin: inherit;
    line-height: inherit;
}

button{
    font-family: var(--font-Normal);
    font-weight: 300;
    letter-spacing: 0.06em;
    cursor: pointer;
}

body{
    font-family: "Geist", "Arial", sans-serif;
    font-size: var(--size-mid);
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: .02em;
    color: black;
    background: var(--primary-color);
}


/* Header */


header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffffb8;
    display: flex;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

header.__dark{
    background: #000000b8;
}

.header{
    flex: 1;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-contain{
    width: 75%;
    padding: 15px 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo svg{
    height: 28px;
    color: black;
}


/* Navigation */


nav{
    display: flex;
    align-items: center;
    gap: 30px;
}

.option{
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #4b4b4b;
    cursor: pointer;
}

.option.__selected{
    font-weight: 500;
    color: black;
}

.header-content{
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-button button{
    width: auto;
    height: 34px;
    padding: 0px 8px 0px 21px;
    border: none;
    border-radius: 42px;
    font-size: 12px;
    color: var(--primary-color);
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.header-button button div{
    min-width: 21px;
    min-height: 21px;
    border-radius: 34px;
    color: black;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.3);
    transition: all 0.4s ease;
}

.header-button button:hover div{
    transform: scale(1);
}

.header-button button div i{
    opacity: 0;
    transition: all 0.4s ease;
}

.header-button button:hover div i{
    opacity: 1;
}


/* Nav */


.__nav{
    position: relative;
    width: auto;
    display: none;
}


/* Nav : Button */


.__nav-button{
    position: relative;
    width: 18px;
    height: 16px;
    transition: all 0.6s ease;
    cursor: pointer;
}

.__nav-line{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
    transition: all 0.4s ease-in-out;
}

.__nav-line:first-child{
    top: 0;
}

.__nav-line:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
}

.__nav-line:last-child{
    bottom: 0;
}

.__nav.active .__nav-line:first-child{
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
}

.__nav.active .__nav-line:nth-child(2){
    opacity: 0;
}

.__nav.active .__nav-line:last-child{
    bottom: 50%;
    transform: rotate(-45deg) translateY(50%);
}



/* Drop */


.__drop{
    position: absolute;
    top: calc(100% + 40px);
    right: -14px;
    width: 140px;
    padding: 22px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    background: #ffffff;
    transform: translateY(-40px);
    opacity: 0;
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.__nav.active .__drop{
    transform: translateY(0);
    opacity: 1;
    pointer-events: unset;
}

.__drop-contain{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.__drop-content{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.__drop-item{
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.03em;
    color: #4b4b4b;
    cursor: pointer;
}



/* Drop : Button */


.__drop-button button{
    width: 140px;
    height: 42px;
    padding: 0px 10px 0px 22px;
    border: none;
    border-radius: 28px;
    font-size: 13px;
    color: var(--primary-color);
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.__drop-button button div{
    min-width: 28px;
    min-height: 28px;
    border-radius: 28px;
    color: black;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.3);
    transition: all 0.4s ease;
}

.__drop-button button:hover div{
    transform: scale(1);
}

.__drop-button button div i{
    opacity: 0;
    transition: all 0.4s ease;
}

.__drop-button button:hover div i{
    opacity: 1;
}


/* Head */


.head{
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
}


/* Head : Contain */


.head-contain{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Headin */


.headin{
    flex: 1;
    display: flex;
    justify-content: center;
}

.headin-contain{
    padding: 13vh 0px 10vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* Headin : Content */


.headin-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Headin : Canva */


.headin-canva{
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


/* Headin : Label */


.headin-label{
    width: auto;
    display: flex;
    justify-content: center;
}

.headin-label-contain{
    width: fit-content;
    padding: 5px 19px 5px 5px;
    box-shadow: rgba(13, 152, 252, 0.323) 0px 0px 0px 1px inset;
    border-radius: 30px;
    font-size: var(--size-small);
    display: flex;
    align-items: center;
    gap: 7px;
}

.headin-label-content{
    display: flex;
    align-items: center;
}

.headin-label-logo{
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-radius: 25px;
    display: flex;
}

.headin-label-logo:not(:first-child){
    margin-left: -14px;
}

.headin-label-logo img{
    width: 25px;
    height: 25px;
    border-radius: 25px;
    object-fit: cover;
}

.headin-label-icon{
    width: 25px;
    height: 25px;
    margin-left: -14px;
    border: 3px solid white;
    border-radius: 34px;
    font-size: 12px;
    color: white;
    background: #0d97fc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headin-label-name{
    font-family: var(--font-Normal);
    font-size: var(--size-small);
    font-weight: 500;
}


/* Headin : Title */


.headin-title{
    width: 1300px;
    font-family: var(--font-headin);
    font-size: 125px;
    font-weight: 900;
    line-height: 0.8em;
    color: black;
}


/* Headin : Bottom */


.headin-bottom{
    width: 100%;
    background: #ffffffb8;
    z-index: 2;
}

.headin-bottom-contain{
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.headin-subname{
    width: 500px;
    padding: 35px 0px;
    font-size: 16px;
    letter-spacing: 0.4px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.5em;
    color: black;
}

.headin-button{
    display: flex;
    justify-content: center;
}

.headin-button button{
    width: 170px;
    height: 47px;
    border: none;
    border-radius: 49px;
    font-size: 15px;
    font-size: var(--size-mid);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    background: black;
    cursor: pointer;
}


/* Headin : Pane */


.headin-pane{
    padding-top: 8vh;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.headin-item{
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.headin-item-name{
    font-family: var(--font-headin);
    font-size: var(--size-headin);
    font-weight: 500;
    line-height: 0.9em;
    color: #757575;
}

.headin-item-subname{
    width: 70px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #0000008a;;
}


/* Slide */


.slide{
    position: relative;
    width: 100%;
    display: flex;
}


/* Slide : Contain */


.slide-contain{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.slide-content{
    display: flex;
    gap: 20px;
    will-change: transform;
}

.slide-item{
    width: 15vw;
    aspect-ratio: 16 / 10;
    border-radius: 11px;
    display: flex;
}

.slide-item img{
    width: 100%;
    height: 100%;
    border-radius: 11px;
    object-fit: cover;
}


/* Slide : Canva */


.slide-canva{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
}

.slide-canva.left{
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slide-canva.right{
    right: 0;
    background: linear-gradient(to left, white, transparent);
}


/* UN */


.un{
    width: auto;
    display: flex;
    justify-content: center;
}

.un-contain{
    width: 75%;
    max-width: 1150px;
    padding: 15vh 0px 10vh;
    display: flex;
    flex-direction: column;
    gap: 7vh;
    transform: scale(0.7);
    will-change: transform;
}


/* UN : Headin */


.un-headin{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.un-headin-title{
    width: 90%;
    max-width: 1000px;
    font-family: var(--font-headin);
    font-size: var(--size-title);
    font-weight: 900;
    line-height: 0.95em;
}

.un-headin-subname{
    width: 85%;
    max-width: 500px;
    font-size: var(--size-mid);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.5em;
    color: #0000008a;
}


/* UN : Content */


.un-content{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.un-column{
    display: flex;
    gap: 25px;
}


/* UN : Box */


.un-box{
    position: relative;
    flex: 1;
    min-height: 500px;
    height: 500px;
    max-height: 500px;
    border-radius: 19px;
    /* box-shadow: rgba(0, 0, 0, 0.157) 0px 0.48175px 1.44525px -1.08333px, rgba(0, 0, 0, 0.145) 0px 1.83083px 5.49248px -2.16667px, rgba(0, 0, 0, 0.086) 0px 8px 24px -3.25px; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.un-box.__border{
    border: 1px solid #ececec;
    background: #f7f7f7;
}

.un-box.__small{
    flex: unset;
    width: 40%;
}

.un-box.__dark{
    background: #0d0d0d;
    color: white;
}

.un-box.__canva{
    flex: unset;
    width: 40%;
    color: white;
}

.un-box-headin{
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.un-box.__canva .un-box-headin{
    flex: 1;
    border-radius: 19px;
    background: #00000084;
    justify-content: flex-end;
    z-index: 2;
}

.un-box-name{
    font-family: var(--font-headin);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2em;
}

.un-box.__canva .un-box-name{
    font-size: var(--size-headin-smaller);
}

.un-box-subname{
    width: auto;
    font-size: 15px;
    letter-spacing: .04em;
    line-height: 1.3em;
    color: #0000008a;
}

.un-box.__dark .un-box-subname{
    color: #ffffff8a;
}

.un-box.__canva .un-box-subname{
    color: white;
}


/* Un Box Contain */


.un-box-content,
.un-box-all{
    position: relative;
    flex: 1;
    border-radius: 0px 0px 28px 28px;
    overflow: hidden;
}

.un-box-slide{
    position: absolute;
    left: 0;
    bottom: 10%;
    height: 90%;
    display: flex;
    gap: 25px;
}

.un-box-item{
    height: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0.48175px 1.44525px -1.08333px, rgba(0, 0, 0, 0.1) 0px 1.83083px 5.49248px -2.16667px, rgba(0, 0, 0, 0.1) 0px 8px 24px -3.25px;
    box-shadow: rgba(0, 0, 0, 0.157) 0px 0.48175px 1.44525px -1.08333px, rgba(0, 0, 0, 0.145) 0px 1.83083px 5.49248px -2.16667px, rgba(0, 0, 0, 0.086) 0px 8px 24px -3.25px;
    display: flex;
}

.un-box-item img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.un-box-bottom{
    position: relative;
    flex: 1;
    border-radius: 0px 0px 28px 28px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.un-box-bottom img{
    max-width: 100%;
    height: 100%;
}

.un-box-canva{
    position: absolute;
    inset: 0;
    border-radius: 28px;
    display: flex;
    z-index: 1;
}

.un-box-canva img{
    width: 100%;
    height: 100%;
    border-radius: 19px;
    object-fit: cover;
    object-position: 50% 50%; /* starting point */
    display: block;
}



/*  */


/* Box : Graph */


.graph{
    position: absolute;
    top: 5%;
    left: 35%;
    height: 70%;
    aspect-ratio: 16 / 10;
    padding: 21px;
    border: 1px solid rgba(11, 10, 9, 0.04);
    border-radius: 14px;
    box-shadow: 0 -8px 24px -8px rgba(0, 0, 0, 0.03), 0 20.187px 40.374px -20.187px rgba(0, 0, 0, 0.10);
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(30%);
    will-change: transform, opacity;
}

.graph-headin{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.graph-name{
    width: auto;
    font-size: var(--size-mid);
    font-weight: 600;
}

.graph-subname{
    width: auto;
    font-size: 13px;
    letter-spacing: .04;
    line-height: 1.4em;
    color: #3d4249;
}

.graph-content{
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.graph-line{
    width: 2%;
    height: 50%;
    background: #7f7dfc;
}


/* Flot */


.flot{
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(11, 10, 9, 0.04);
    border-radius: 7px;
    box-shadow: 0 -8px 24px -8px rgba(0, 0, 0, 0.1), 0 20.187px 40.374px -20.187px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flot-1{
    top: 70%;
    left: calc(10% + 60px);
}

.flot-2{
    top: calc(70% - 60px);
    left: calc(10% + 30px);
}

.flot-3{
    top: 70%;
    left: 10%;
}

.flot img{
    width: 20px;
    height: 20px;
}


/* Let */


.let{
    width: auto;
    display: flex;
}

.let-contain{
    flex: 1;
    padding: 5vh 0px 10vh;
    display: flex;
    flex-direction: column;
}


/* let : Headin */


.let-headin{
    text-align: center;
    display: flex;
    justify-content: center;
}

.let-headin-contain{
    width: 75%;
    max-width: 1150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.let-headin-title{
    width: 90%;
    font-family: var(--font-headin);
    font-size: var(--size-title-extra);
    font-weight: 900;
    line-height: 0.95em;
}

.let-headin-subname{
    width: 85%;
    max-width: 500px;
    font-size: var(--size-mid);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.5em;
    color: #0000008a;
}


/* Let : All */


.let-all{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.let-content{
    width: max-content;
    height: calc(100% - 180px);
    padding: 100px 12.5vw 80px 12.5vw;
    display: flex;
    gap: 100px;
}


/* Lean */


.lean{
    width: 75vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 35px;
}


/* Lean : Headin */


.lean-headin{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lean-headin-title{
    width: 90%;
    font-family: var(--font-headin);
    font-size: var(--size-headin-mid);
    font-size: 34px;
    font-weight: 800;
    line-height: 1em;
}

.lean-headin-content{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.lean-item{
    width: fit-content;
    padding: 7px 15px;
    border: 1px solid #dbdee1;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 300;
}


/* Lean : Content */


.lean-content{
    flex: 1;
    display: flex;
    gap: 30px;
}

.lean-logo{
    flex: 1;
    border-radius: 14px;
    display: flex;
}

.lean-pane{
    width: 350px;
    padding: 44px;
    box-sizing: border-box;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    border: 1px solid #ececec;
    background: #f7f7f7;
}

.lean-pane-name{
    font-size: var(--size-small);
    font-weight: 600;
    color: #00000084;
}

.lean-pane-subname{
    font-size: var(--size-mid);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.4em;
}

.lean-pane-content{
    flex: 1;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.lean-pane-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.lean-pane-item-icon{
    font-size: var(--size-mid);
}

.lean-pane-item-name{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.4em;
}


/* Project */


.pro{
    position: relative;
    flex: 1;
    border-radius: 14px;
    background: #0d0d0d;
    background: #5e6872;
    overflow: hidden;
}

.pro-content{
    position: absolute;
    left: 8%;
    bottom: 14%;
    width: 170%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pro-content img{
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 4px;
    box-shadow: 0 -8px 24px -8px rgba(0, 0, 0, 0.03), 0 20.187px 40.374px -20.187px rgba(0, 0, 0, 0.10);
    box-shadow: rgba(0, 0, 0, 0.267) 0px 8px 24px 0px;
}


/* Event */


.even{
    position: relative;
    flex: 1;
    border-radius: 14px;
    background: #efeff2;
    overflow: hidden;
}

.even-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    display: flex;
    gap: 30px;
}

.even-column{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    will-change: transform;
}

.even-column img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 -8px 24px -8px rgba(0, 0, 0, 0.03), 0 20.187px 40.374px -20.187px rgba(0, 0, 0, 0.10);
    box-shadow: rgba(0, 0, 0, 0.267) 0px 8px 14px 0px;
}


/* Quontrol */


.quo{
    position: relative;
    flex: 1;
    border-radius: 14px;
    background: #efeff2;
    overflow: hidden;
}

.quo img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    border-radius: 7px;
    transform: translate(-50%, -50%);
    box-shadow: rgba(0, 0, 0, 0.081) 0px 10px 21px 0px;
}



/* Has */


.has{
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.has-contain{
    width: 75%;
    padding: 0vh 0px 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}


/* Has : Headin */


.has-headin{
    max-width: 1100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.has-title{
    width: auto;
    font-family: var(--font-headin);
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1em;
}

.has-title h2{
    will-change: transform;
}


/* Has : Stack */


.has-stack{
    width: 100%;
    background: #ffffffb8;
    z-index: 2;
}

.has-cover{
    display: flex;
    flex-direction: column;
    gap: 5vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Has : Line */


.has-line{
    width: auto;
    display: flex;
    justify-content: center;
}

.has-line img{
    width: 100%;
    max-width: 600px;
    height: 1px;
}


/* Has : All */


.has-all{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vh;
}


/* Has : Subname */


.has-subname{
    width: 85%;
    max-width: 600px;
    text-align: center;
    font-size: var(--size-mid);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.5em;
    color: #0000008a;
}

/* Has : Content */


.has-content{
    display: flex;
    gap: 50px;
}


/* Has : Box */


.has-box{
    width: 240px;
    padding: 34px;
    box-sizing: border-box;
    border-radius: 32px;
    box-shadow: 0 8px 24px 4px #a9aaac29;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.has-box-name{
    text-transform: uppercase;
    font-size: var(--size-small);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.has-box-title{
    font-family: var(--font-headin);
    font-size: var(--size-headin);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.2em;
}

.has-box-subname{
    width: auto;
    font-size: var(--size-small);
    letter-spacing: .04;
    line-height: 1.4em;
    color: #0000008a;
}


/* Has : Button */


.has-button{
    display: flex;
    justify-content: center;    
}

.has-button button{
    width: auto;
    width: 160px;
    height: 47px;
    border: none;
    border-radius: 49px;
    font-size: var(--size-mid);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: white;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}



/* Footer */


footer{
    padding: 8px;
    min-height: calc(100vh - 100px);
    display: flex;
}

.footer{
    position: relative;
    flex: 1;
    border-radius: 14px;
    color: white;
    background: #09090a;
    display: flex;
    overflow: hidden;
}


/* Footer : Canva */


.footer-canva{
    position: absolute;
    inset: 0;
    display: none;
}

.footer-canva-box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #186dc2;
    transform: translate(-50%, 18%);
}


/* Footer : Stack */


.footer-stack{
    flex: 1;
    background: #09090a7a;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(200px);
    -webkit-backdrop-filter: blur(200px)
}


/* Footer : Contain */


.footer-contain{
    width: 75%;
    padding: 5vh 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* Footer : Center */


.footer-center{
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
}

.footer-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(-25vh);
    will-change: transform, opacity;
}


/* Footer : Headin */


.footer-headin{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.footer-headin-line{
    width: 50px;
    height: 2px;
    background: linear-gradient(to left, gray, transparent);
}

.footer-headin-line:last-child{
    background: linear-gradient(to right, gray, transparent);
}

.footer-headin-name{
    font-size: var(--size-large);
    font-style: italic;
    font-weight: 300;
    color: #ffffff8a;
}


/* Footer : All */


.footer-all{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-name{
    width: 90%;
    font-family: var(--font-headin);
    font-size: var(--size-title-large);
    font-weight: 800;
    line-height: 1em;
}

.footer-subname{
    max-width: 450px;
    font-size: var(--size-mid);
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.4em;
    color: #ffffff8a;
}

.footer-button button{
    width: auto;
    height: 66px;
    padding: 0px 10px 0px 30px;
    border: 7px solid #4e4e4e;
    border-radius: 54px;
    font-size: 15px;
    color: white;
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.footer-button button div{
    min-width: 36px;
    min-height: 36px;
    border-radius: 38px;
    color: black;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.3);
    transition: all 0.4s ease;
}

.footer-button button div i{
    opacity: 0;
    transition: all 0.4s ease;
}

.footer-button button:hover div{
    transform: scale(1);
}

.footer-button button:hover div i{
    opacity: 1;
}


/* Footer : Bottom */


.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


/* Footer : Pane */


.footer-pane{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo{
    width: auto;
}

.footer-logo svg{
    height: 34px;
    color: black;
    color: white;
}

.footer-endless{
    max-width: 200px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.2em;
    color: #4e4e4e;
    color: #ffffff8a;
}


/* Footer : Brands */


.footer-brands{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.footer-brand{
    width: 40px;
    height: 40px;
    border: 3px solid #4e4e4e;
    border-radius: 40px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Responsive Mobile */


/* 1500px */

@media screen and (max-width: 1500px) {

    /*  */

    .header-contain,
    .un-contain,
    .let-headin-contain,
    .has-contain{
        width: 85%;
    }

    .let-content{
        padding: 100px 7.5vw 80px;
    }

}


/* 1400px */

@media screen and (max-width: 1400px) {

    /*  */

}


/* 1300px */

@media screen and (max-width: 1300px) {

    /*  */

    .header-contain{
        width: 95%;
    }

    /* Headin */

    .headin-title{
        width: 1000px;
        font-size: 100px;
    }

    /* Lean */

    .lean-pane{
        width: 300px;
        padding: 34px;
    }

    /* Footer */

    .footer-contain{
        width: 90%;
    }

}


/* 1200px */

@media screen and (max-width: 1200px) {

    /* Slide */

    .slide-item{
        width: 20vw;
    }

    /* Let */

    .let-content{
        padding: 100px 5vw 80px;
        gap: 80px;
    }

    .lean{
        width: 85vw;
        min-width: 800px;
    }

}


/* 1100px */

@media screen and (max-width: 1100px) {

    /* En */

    

}


/* 1100px */

@media screen and (max-width: 1000px) {

    /* Headin */

    .headin-title{
        width: 800px;
        font-size: 80px;
    }

    /* Has */

    .has-content{
        gap: 30px;
    }

    .has-box{
        width: 200px;
        padding: 28px;
    }

    .has-box-title{
        font-size: var(--size-headin-mid);
    }
    

}


/* 900px */

@media screen and (max-width: 900px) {

    /*  */

    .un-headin-title{
        font-size: var(--size-title-small);
    }

    .let-headin-title{
        font-size: var(--size-title);
    }

    .footer-name{
        font-size: var(--size-title);
    }

    .has-title{
        font-size: 120px;
    }

    /* Slide */

    .slide-contain,
    .slide-content{
        gap: 15px;
    }

    .slide-item{
        width: 25vw;
    }

    /* Lean */

    .lean-content{
        height: 350px;
    }

    .lean-pane{
        width: 250px;
        padding: 24px;
    }

    .lean-pane-subname{
        font-size: var(--size-small);
    }

    /* Footer */

    .footer-subname{
        max-width: 300px;
        font-size: var(--size-small);
    }

}


/* 850px */

@media screen and (max-width: 850px) {

    /*  */

}


/* 800px */

@media screen and (max-width: 800px) {

    /* Headin */

    .headin-title{
        width: 700px;
        font-size: 70px;
    }

    /*  */

    .un-headin-title{
        font-size: var(--size-headin);
    }

    .let-headin-title{
        font-size: var(--size-title-small);
    }

    .let-headin-subname{
        max-width: 350px;
    }

    .footer-name{
        font-size: var(--size-title-small);
    }

    .has-title{
        font-size: 100px;
    }

    /* UN */

    .un-box.__small,
    .un-box.__canva{
        flex: 1;
        width: auto;
    }

    .un-box-headin{
        padding: 24px;
    }

    .pro-content{
        width: 220%;
    }

    .even-content{
        width: 150%;
    }

    .quo img{
        width: 80%;
    }

}


/* 700px */

@media screen and (max-width: 700px) {

    /* Headin */

    .headin-title{
        width: 600px;
        font-size: 60px;
    }

    .headin-subname{
        max-width: 400px;
        font-size: var(--size-small);
    }

    .headin-button button,
    .has-button button{
        width: 120px;
        height: 40px;
        font-size: 13px;
    }

    /* Slide */

    .slide-contain,
    .slide-content{
        gap: 10px;
    }

    .slide-item{
        width: 30vw;
    }

    /* Absolute */

    .pro-content{
        width: 260%;
    }

    .even-content{
        width: 180%;
    }

    /* Has */

    .has-content{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .has-box{
        width: 230px;
        box-shadow: rgba(155, 155, 155, 0.18) 0px 4px 12px 0px;
    }

    .has-box-title{
        font-size: var(--size-headin-smaller);
    }

}


/* 650px */

@media screen and (max-width: 650px) {

    /* Header */

    nav{
        display: none;
    }

    .__nav{
        display: block;
    }

    /* Un */

    .un-column{
        flex-direction: column;
        gap: 20px;
    }

    .un-box-headin{
        padding: 34px;
    }

    /* Footer */

    .footer-content{
        gap: 30px;
    }

    .footer-headin-name{
        font-size: var(--size-small);
    }

    .footer-button button{
        width: auto;
        height: 50px;
        padding: 0px 8px 0px 20px;
        border: 5px solid #4e4e4e;
        font-size: 13px;
        gap: 14px;
    }

    .footer-button button div{
        min-width: 26px;
        min-height: 26px;
    }

}


/* 600px */

@media screen and (max-width: 600px) {

    /* Drop */

    .__drop{
        top: calc(100% + 20px);
        right: 0;
    }

    /*  */

    .headin-title{
        width: 500px;
        font-size: 50px;
        line-height: 1em;
    }

    /*  */

    .un-headin-title{
        font-size: var(--size-headin-mid);
        line-height: 1em;
    }

    .let-headin-title{
        font-size: var(--size-headin);
        line-height: 1em;
    }

    .footer-name{
        font-size: var(--size-headin);
        line-height: 1em;
    }

    /* Let */

    .let-content{
        height: calc(100% - 130px);
        padding: 80px 5vw 50px;
        gap: 80px;
    }

    /* Lean */

    .lean{
        gap: 25px;
    }

    .lean-headin{
        gap: 15px;
    }

    .lean-headin-title{
        font-size: var(--size-headin-small);
    }

    .lean-item{
        padding: 5px 10px;
        font-size: 12px;
    }

    /* .lean-content{
        height: auto;
        flex-direction: column;
        gap: 15px;
    }

    .lean-logo{
        height: 350px;
        min-height: 350px;
    } */

    .lean-pane{
        padding: 30px;
        gap: 10px;
    }

    .lean-pane-name{
        font-size: 13px;
    }

    .lean-pane-subname{
        max-width: 350px;
    }

    /* Has */

    .has-box{
        width: 200px;
        padding: 20px;
        gap: 10px;
    }

    .has-box-name{
        font-size: 13px;
    }

    /* Footer */

    .footer{
        min-height: calc(100vh - 80px);
    }

    .footer-bottom{
        flex-direction: column;
    }

    .footer-pane{
        flex-direction: column;
        gap: 17px;
    }

    .footer-logo{
        padding: 0px;
        border: 0px;
        border-radius: 0px;
        background: transparent;
    }

    .footer-logo svg{
        height: 28px;
        color: white;
    }

    .footer-endless{
        text-align: center;
        line-height: 1.4em;
    }

    .footer-brands{
        justify-content: center;
    }

}


/* 500px */

@media screen and (max-width: 500px) {

    /* Headin */

    .headin-title{
        width: 400px;
        font-size: 40px;
    }

    .headin-subname{
        max-width: 300px;
    }

    .headin-pane{
        gap: 40px;
    }

    /* Slide */

    .slide-contain,
    .slide-content{
        gap: 10px;
    }

    .slide-item{
        width: 40vw;
    }

    /* Has */

    .has-title{
        font-size: 90px;
    }

}


/* 450px */

@media screen and (max-width: 450px) {

    /* Has */

    .has-box{
        width: 250px;
    }

}


/* 400px */

@media screen and (max-width: 400px) {

    /*  */

    .headin-title{
        width: 100%;
        font-size: 45px;
    }

    /*  */

    .un-headin-title{
        font-size: var(--size-headin-small);
        line-height: 1.1em;
    }

    .let-headin-title,
    .footer-name{
        font-size: var(--size-headin-mid);
        line-height: 1.1em;
    }

    /* Has */

    .has-title{
        font-size: 70px;
    }

    .un-headin-subname,
    .let-headin-subname,
    .has-subname{
        font-size: var(--size-small);
    }

    /* Headin */

    .headin-pane{
        gap: 30px;
    }

    /* Slide */

    .slide-item{
        width: 45vw;
    }

    /* UN */

    .un-box-headin{
        padding: 24px;
    }

    .un-box.__canva .un-box-name{
        font-size: 21px;
    }

    /* Lean */

    .lean-headin-title{
        font-size: var(--size-headin-smaller);
    }

    /* Footer */

    .footer-headin{
        gap: 10px;
    }

    .footer-headin-name{
        font-size: 13px;
    }

    .footer-subname{
        width: 80%;
        font-size: 13px;
    }

}

/* 350px */

@media screen and (max-width: 350px) {

    /* Header */

    .header-button button{
        height: 30px;
        padding: 0px 7px 0px 14px;
        gap: 7px;
    }

    .header-button button div{
        min-width: 18px;
        min-height: 18px;
    }

    /* Has */

    .has-title{
        font-size: 60px;
    }

}