@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{
    min-width: 300px;
    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{
    display: flex;
    justify-content: center;
}

.head-contain{
    width: 75%;
    display: flex;
    flex-direction: column;
}


/* Headin */


.headin{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headin-contain{
    max-width: 800px;
    padding: 22vh 0px 10vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* Headin : Title */


.headin-title{
    font-family: var(--font-headin);
    font-size: 140px;
    font-weight: 900;
    line-height: 130px;
    z-index: 1;
}

.headin-title span{
    color: #0d97fc;
}


/* Headin : Content */


.headin-center{
    width: auto;
    background: #ffffffb8;
    z-index: 2;
}

.headin-content{
    display: flex;
    flex-direction: column;
    gap: 8vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.headin-line{
    width: auto;
    display: flex;
    justify-content: center;
}

.headin-line img{
    width: 100%;
    max-width: 600px;
    height: 1px;
}

.headin-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.headin-subname{
    width: auto;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.6em;
    color: #4b4b4b;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.headin-subname span{
    color: black;
}

.headin-subname img{
    width: 28px;
    height: 28px;
    border-radius: 20px;
    object-fit: cover;
    vertical-align: middle;
}

.headin-icon{
    font-size: var(--size-headin-small);
    color: #3d3d3d;
}


/* UX */


.ux{
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.ux-contain{
    width: 65%;
    padding: 0px 0px 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}


/* UX : Pane */


.ux-pane{
    height: 75vh;
    border-radius: 14px;
    color: white;
    background: #09090a;
    display: flex;
    transform: scale(0.8);
}


/* UX : Headin */


.ux-headin{
    width: calc(100% - 250px);
    height: 100%;
    display: flex;
}

.ux-headin img{
    width: 100%;
    height: 100%;
    border-radius: 14px 0px 0px 14px;
    object-fit: cover;
}


/* UX : Content */


.ux-content{
    width: 250px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}


/* UX : Box */


.ux-box{
    position: relative;
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
}

.ux-box:first-child{
    border-radius: 0px 14px 0px 0px;
}

.ux-box:not(:last-child){
    border-bottom: var(--border);
    border-bottom: 1px solid #222222;
}

.ux-box:last-child{
    border-radius: 0px 0px 14px 0px;
}

.ux-box-canva{
    position: absolute;
    width: 10px;
    height: 10px;
    background: #167de4;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition: transform 1.1s ease;
    will-change: transform;
    pointer-events: none;
    z-index: 1;
}

.ux-box-name{
    position: relative;
    font-family: var(--font-headin);
    font-size: var(--size-title);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2em;
    z-index: 2;
}

.ux-box-subname{
    font-size: var(--size-small);
    letter-spacing: .04;
    line-height: 1.4em;
    color: #ffffff8a;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.ux-box:hover .ux-box-subname{
    color: white;
}


/* UX : All */


.ux-all{
    width: auto;
    display: flex;
    justify-content: center;
}

.ux-all-contain{
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 5vw;
}


/* UX : Item */


.ux-item{
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.ux-item p{
    opacity: 0;
    transform: translateY(50px);
    will-change: opacity transform;
    transition: all 0.8s ease-in-out;
}

.ux-item.active p{
    opacity: 1;
    transform: translateY(0);
}

.ux-item-title{
    text-transform: uppercase;
    font-size: var(--size-small);
    font-weight: 400;
    letter-spacing: .05em;
}

.ux-item-title p{
    transition-delay: 0.4s;
}

.ux-item.active .ux-item-title p{
    transition-delay: 0.0s;
}

.ux-item-name{
    font-family: var(--font-headin);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2em;
}

.ux-item-name p{
    transition-delay: 0.2s;
}

.ux-item.active .ux-item-name p{
    transition-delay: 0.2s;
}

.ux-item-subname{
    width: auto;
    letter-spacing: .04em;
    line-height: 1.5em;
}

.ux-item-subname p{
    transition-delay: 0.0s;
}

.ux-item.active .ux-item-subname p{
    transition-delay: 0.4s;
}


/* UI */


.ui{
    position: relative;
    min-height: 100vh;
}


/* UI : Canva */


.ui-canva{
    position: sticky;
    bottom: 0;
    height: 15vh;
    background: linear-gradient(to bottom, transparent 0%, #ffffffec 40%, #ffffff 100%);
    display: flex;
}


/* UI : All */


.ui-all{
    width: auto;
    display: flex;
    justify-content: center;
}


/* UI : Contain */


.ui-contain{
    width: 75%;
    padding: 15vh 0px 0vh;
    display: flex;
    flex-direction: column;
    gap: 5vh;
}


/* UI : Headin */


.ui-headin{
    text-align: center;
    font-family: var(--font-headin);
    font-size: 8vw;
    font-weight: 900;
    line-height: 1em;
}

.ui-headin p:first-child{
    transform: translateX(-10vw);
}

.ui-headin p:last-child{
    transform: translateX(10vw);
}


/* UI : Content */


.ui-content{
    display: flex;
    justify-content: center;
}


/* UI : Pane */


.ui-pane{
    position: relative;
    width: 700px;
    padding: 100px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* Box */


.box{
    width: auto;
    display: flex;
}

.box:nth-child(even){
    justify-content: flex-end;
}

.box-all{
    width: 50%;
    text-align: right;
    display: flex;
    gap: 30px;
}

.box:nth-child(even) .box-all{
    text-align: left;
    flex-direction: row-reverse;
}

.box-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.box-name{
    font-family: var(--font-headin);
    font-size: var(--size-headin-small);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.box-subname{
    width: auto;
    letter-spacing: .04em;
    line-height: 1.6em;
    color: #3d3d3d;
}

.box-line{
    width: 50px;
    height: 1px;
    margin-top: 15px;
    background: black;
}


/* UI : Line */


.ui-line{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: black;
    transform: translateX(-50%);
}

.ui-line::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 15%;
    background: linear-gradient(to bottom, #ffffff, #090909);;
}

.ui-line::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 15%;
    background: linear-gradient(to top, #ffffff, #090909);;
}


/* End */


.end{
    width: auto;
}


/* Has */


.has{
    min-height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.has-contain{
    width: 75%;
    padding: 10vh 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6vh;
}


/* Has : Headin */


.has-headin{
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.has-headin-name{
    width: 95%;
    font-family: var(--font-headin);
    font-size: var(--size-headin);
    font-weight: 800;
    letter-spacing: 0.00em;
    line-height: 0.95em;
}

.has-headin-subname{
    width: 75%;
    max-width: 600px;
    font-size: var(--size-large);
    letter-spacing: .02em;
    line-height: 1.6em;
}


/* Has : Content */


.has-content{
    display: flex;
    gap: 40px;
}


/* Has : Box */


.has-box{
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    box-shadow: 0 24px 54px 0 #70727b14;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.has-box:first-child{
    transform: rotate(-5deg) translateY(30px) translateX(100%);
}

.has-box:last-child{
    transform: rotate(5deg) translateY(30px) translateX(-100%);
}

.has-box-headin{
    flex: 1;
    height: 100%;
    border-radius: 14px;
    display: flex;
}

.has-box-logo{
    flex: 1;
    display: flex;
}

.has-box-logo img{
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.has-box-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 20px;
    border-radius: 0px 0px 14px 14px;
    color: white;
    background: black;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.has-box-name{
    font-size: var(--size-large);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.has-box-subname{
    width: auto;
    font-size: var(--size-small);
    letter-spacing: .04em;
    color: #ffffff8a;
}


/* Has : Button */


.has-button{
    display: flex;
    justify-content: center;
}

.has-button button{
    width: auto;
    height: 44px;
    padding: 0px 7px 0px 25px;
    border: none;
    border-radius: 42px;
    font-size: var(--size-small);
    color: var(--primary-color);
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.has-button button div{
    min-width: 28px;
    min-height: 28px;
    border-radius: 34px;
    color: black;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.3);
    transition: all 0.4s ease;
}

.has-button button div i{
    opacity: 0;
    transition: all 0.4s ease;
}

.has-button button:hover div{
    transform: scale(1);
}

.has-button button:hover div i{
    opacity: 1;
}


/* 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 */


/* 1600px */

@media screen and (max-width: 1600px) {

    .ux-contain{
        width: 80%;
    }

}


/* 1500px */

@media screen and (max-width: 1500px) {

    /*  */

    .header-contain{
        width: 85%;
    }

}


/* 1400px */

@media screen and (max-width: 1400px) {

}

/* 1300px */

@media screen and (max-width: 1300px) {

    /* Header */

    .header-contain{
        width: 95%;
    }

    .head-contain,
    .ux-contain,
    .ui-contain,
    .has-contain{
        width: 85%;
    }

    /* UX */

    .ux-item-title{
        font-size: 13px;
    }

    .ux-item-name{
        font-size: var(--size-headin-small);
    }

    .ux-item-subname{
        font-size: var(--size-small);
    }

    /* Box */

    .box-all{
        gap: 20px;
    }

    .box-content{
        gap: 7px;
    }

    .box-name{
        font-size: var(--size-large);
    }

    .box-subname{
        font-size: var(--size-small);
    }

    .box-line{
        width: 30px;
    }

    /* Has */

    .has-content{
        gap: 20px;
    }

    .has-box{
        width: 280px;
        height: 380px;
    }

    .has-headin-name{
        font-weight: 900;
    }

    .has-headin-subname{
        max-width: 500px;
        font-size: var(--size-mid);
    }

    /* Footer */

    .footer-contain{
        width: 90%;
    }

}


/* 1200px */

@media screen and (max-width: 1200px) {

    /* UI */

    .ui-contain{
        padding-top: 10vh;
    }

}


/* 1100px */

@media screen and (max-width: 1100px) {

}


/* 1100px */

@media screen and (max-width: 1000px) {

    /* Headin */

    .head-contain,
    .ux-contain,
    .ui-contain,
    .has-contain{
        width: 90%;
    }

    /* UI */

    .ui-contain{
        padding-top: 5vh;
    }

    /* Has */

    .has-contain{
        padding-top: 5vh;
    }

    .has-content{
        gap: 20px;
    }

    .has-box{
        width: 240px;
        height: 340px;
    }

    .has-box-name{
        font-size: var(--size-mid);
    }

    .has-box-subname{
        font-size: 13px;
    }

}


/* 900px */

@media screen and (max-width: 900px) {

    .headin-title{
        font-size: 100px;
        line-height: 90px;
    }

    /* Footer */

    .footer-name{
        font-size: var(--size-title);
    }

    .footer-subname{
        max-width: 300px;
        font-size: var(--size-small);
    }

}


/* 850px */

@media screen and (max-width: 850px) {

    .has-contain{
        padding-top: 0vh;
    }

    .has-content{
        gap: 15px;
    }

    .has-box{
        width: 220px;
        height: 320px;
    }

}


/* 800px */

@media screen and (max-width: 800px) {

    /* Header */

    .logo svg{
        height: 24px;
    }

    .header-button button
    {
        height: 38px;
        font-size: 12px;
    }

    .header-button button div{
        min-width: 24px;
        min-height: 24px;
    }

    /* Footer */

    .footer-name{
        font-size: var(--size-title-small);
    }

}


/* 750px */

@media screen and (max-width: 750px) {

    /* Has */

    .has-content{
        flex-direction: column;
    }

    .has-box{
        width: 300px;
        height: 400px;
    }

    .has-box:first-child{
        transform: unset;
    }

    .has-box:nth-child(2){
        transform: rotate(-5deg) translateX(30px) translateY(-100%);
    }

    .has-box:last-child{
        transform: rotate(4deg) translateX(-30px) translateY(-200%);
    }

}


/* 700px */

@media screen and (max-width: 700px) {

    /*  */

}


/* 650px */

@media screen and (max-width: 650px) {

    /* Header */

    nav{
        display: none;
    }

    .__nav{
        display: block;
    }

    /* UX */

    .ux-pane{
        flex-direction: column;
    }

    .ux-headin{
        flex: 1;
        width: 100%;
        height: auto;
    }

    .ux-headin img{
        border-radius: 14px 14px 0px 0px;
    }

    .ux-content{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ux-box{
        padding: 25px;
    }

    .ux-box:first-child{
        border-radius: 0;
        border-right: 1px solid #222222;
    }

    .ux-box:last-child{
        border-radius: 0px 0px 0px 14px;
        border-right: 1px solid #222222;
    }

    .ux-box-name{
        font-size: var(--size-headin);
    }

    /* UI */

    .ui-headin{
        font-size: 9vw;
    }

    /* 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{
        font-size: 90px;
        line-height: 80px;
    }

    .headin-subname{
        font-size: 15px;
    }

    .headin-subname span{
        color: black;
    }

    .headin-subname img{
        width: 24px;
        height: 24px;
    }

    /* UX */
    
    .ux-contain{
        gap: 40px;
    }

    /* Footer */

    .footer-name{
        font-size: var(--size-headin);
        line-height: 1em;
    }

    .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) {

    /* UX */

    .ux-pane{
        height: 80vh;
    }

    .ux-all-contain{
        width: 95%;
        flex-direction: column;
        gap: 30px;
    }

    .ux-item{
        padding: 25px;
        border-radius: 14px;
        box-shadow: 0 8px 24px 4px #a9aaac29;
        gap: 10px;
        opacity: 0;
        transform: translateY(30%) scale(0.9);
        will-change: transform;
        transition: all 0.8s ease-in-out;
    }

    .ux-item.active{
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .ux-item p{
        opacity: 1;
        transform: unset;
    }

    .ux-item-name{
        font-size: 21px;
    }

    /* Box */

    .box-all{
        gap: 15px;
    }

    .box-content{
        gap: 7px;
    }

    .box-name{
        font-size: var(--size-mid);
    }

    .box-subname{
        font-size: 13px;
    }

    .box-line{
        width: 20px;
    }

    /* Has */

    .has-headin-name{
        font-size: var(--size-headin-mid);
    }

    .has-headin-subname{
        font-size: var(--size-small);
    }

    .has-box{
        width: 280px;
        height: 380px;
    }

}


/* 450px */

@media screen and (max-width: 450px) {

    /* Headin */

    .headin-title{
        font-size: 80px;
        line-height: 70px;
    }

}


/* 400px */

@media screen and (max-width: 400px) {

    /* Headin */

    .headin-title{
        font-size: 70px;
        line-height: 60px;
    }

    /* UX */

    .ux-box-name{
        font-size: var(--size-headin-mid);
    }

    .ux-box-subname{
        font-size: 13px;
    }

    /* Has */

    .has-headin-name{
        width: 100%;
    }

    .has-box{
        width: 240px;
        height: 340px;
    }

    /* Footer */

    .footer-name{
        font-size: var(--size-headin-mid);
        line-height: 1.1em;
    }

    .footer-headin{
        gap: 10px;
    }

    .footer-headin-name{
        font-size: 13px;
    }

    .footer-subname{
        width: 80%;
        font-size: 13px;
    }

}

/* 350px */

@media screen and (max-width: 350px) {

}