@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: var(--secondary-color);
    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;
}


/* UX */


.ux{
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* UX : Canva */


.ux-canva{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
    z-index: 0;
}

.ux-canva-box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50vw;
    height: 50vw;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: multiply;
    transform: translate(-50%, -50%);
}

.ux-canva-box::before,
.ux-canva-box::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../files/Svg/blob.svg") center/130% no-repeat;
    mix-blend-mode: multiply;
}

.ux-canva-box::after{
    transform: scale(0.8);
    opacity: 0;
    animation: blob 15s linear infinite;
    mix-blend-mode: darken;
}

@keyframes blob {
    0% {
        opacity: 0;
        transform: rotate(0) scale(0.8)
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: rotate(360deg) scale(0.8)
    }
}


/* UX : Contain */


.ux-contain{
    width: 70%;
    padding: 15vh 0px 10vh;
    display: flex;
    align-items: center;
    gap: 10vw;
    z-index: 1;
}


/* UX : Content */


.ux-content{
    flex: 1;
    padding: 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* UX : Headin */


.ux-headin{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ux-label{
    width: fit-content;
    padding: 9px 17px;
    border: 1px solid #00000014;
    border-radius: 30px;
    font-family: var(--font-headin);
    font-size: 13px;
    font-weight: 600;
}

.ux-title{
    font-family: var(--font-headin);
    font-size: var(--size-title);
    font-weight: 900;
    line-height: 1em;
    color: black;
}

.ux-name{
    width: 80%;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.4em;
    color: #0000008a;
}


/* UX : All */


.ux-all{
    padding: 40px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* Box */


.box{
    width: auto;
    display: flex;
    align-items: center;
    gap: 17px;
}

.box-logo{
    width: 44px;
    height: 44px;
    border-radius: 11px;
    font-size: 14px;
    background: #f2f3f5ca;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}


.box-pane{
    max-width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-subname{
    width: auto;
    font-size: var(--size-small);
    letter-spacing: .05em;
    line-height: 1.5em;
    font-weight: 500;
    color: black;
}


/* UI */


.ui{
    width: 600px;
    min-height: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    box-shadow: 0 44px 74px 0 #96969659;
    background: white;
}

.ui-contain{
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* UI : Headin */


.ui-headin{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ui-name{
    font-family: var(--font-headin);
    font-size: var(--size-headin-mid);
    font-weight: 800;
}

.ui-subname{
    width: 80%;
    font-size: var(--size-small);
    letter-spacing: .03em;
    line-height: 1.3em;
    color: #1d1d1d;
}


/* UI : Content */


.ui-content{
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ui-column{
    display: flex;
    align-items: center;
    gap: 17px;
}


/* Item */


.item{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.item-name{
    padding: 0px 0px 0px 4px;
    font-size: var(--size-small);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .03em;
}

.item-name span{
    font-style: italic;
    font-weight: 300;
    color: #4e4e4e;
}

.item-content{
    display: flex;
}

.item-content input{
    width: 100%;
    height: 34px;
    padding: 0px 11px;
}

.item-content textarea{
    width: 100%;
    height: 80px;
    padding: 15px 11px;
    resize: none;
}

.item-content input,
.item-content textarea{
    border: none;
    border: 1px solid #ececec;
    border-radius: 7px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .04em;
    background: transparent;
    transition: all 0.3s ease;
}

.item-content input::placeholder,
.item-content textarea::placeholder{
    font-weight: 300;
    letter-spacing: .04em;
    color: #a4a4a4;
}

.item.__required .item-content input,
.item.__required .item-content textarea,
.item.__invalid .item-content input,
.item.__invalid .item-content textarea{
    box-shadow: rgba(255, 24, 24, 0.374) 0px 0px 0px 1px inset;
}

.item-subname{
    padding: 0px 0px 0px 4px;
    font-size: 12px;
    letter-spacing: .04em;
    color: #bc2f49;
    display: none;
}

.item.__required .item-subname{
    display: block;
}

.item-invalid{
    padding: 0px 0px 0px 4px;
    font-size: 12px;
    letter-spacing: .03em;
    color: #bc2f49;
    display: none;
}

.item.__invalid .item-subname{
    display: block;
}


/* UI : Consent */


.ui-consent{
    display: flex;
    gap: 14px;
}

.ui-consent-logo input{
    display: none;
}

.ui-consent-logo label{
    width: 21px;
    height: 21px;
    margin-top: 3px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    font-size: 13px;
    color: white;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-consent-logo input:checked + label{
    background: #186dc2;
}

.ui-consent-content{
    width: 70%;
    font-size: 13px;
    letter-spacing: .04em;
    line-height: 1.35em;
    color: #666;
}


/* UI : Error */


.error{
    width: auto;
    padding: 15px 30px;
    border-radius: 7px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    background: #ffeff4;
    display: none;
}

.error.__show{
    display: block;
}


/* UI : Button */


.ui-button{
    display: flex;
}

.ui-button button{
    width: 140px;
    height: 43px;
    border: none;
    border-radius: 49px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    background: black;
    cursor: pointer;
    transition: all 0.6s ease;
}

.ui-button button:disabled{
    background: #00000070;
    cursor: not-allowed;
}

.ui-button button i{
    display: none;
}

.ui-button.__load button{
    pointer-events: none;
}

.ui-button.__load button p{
    display: none;
}

.ui-button.__load button i{
    display: block;
}

/* 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;
}


/* Popup */


.popup{
    position: fixed;
    inset: 0;
    background: #000000b8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

.popup.__show{
    opacity: 1;
    visibility: visible;
}

.popup-box{
    width: 900px;
    border-radius: 14px;
    background: white;
    display: flex;
    transform: scale(0.8);
    will-change: transform;
}

.popup.__show .popup-box{
    transform: scale(1);
}

.popup-logo{
    flex: 1;
    border-radius: 14px 0px 0px 14px;
    display: flex;
}

.popup-logo img{
    width: 100%;
    height: 100%;
    border-radius: 14px 0px 0px 14px;
    object-fit: cover;
}

.popup-content{
    width: 450px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.popup-headin{
    display: flex;
    justify-content: flex-end;
}

.popup-headin button{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 40px;
    font-size: 24px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.popup-all{
    flex: 1;
    padding: 5vh 30px 10vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.popup-name{
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1em;
    font-weight: 600;
}

.popup-title{
    font-family: var(--font-headin);
    font-size: var(--size-headin);
    font-weight: 600;
    line-height: 1.00em;
}

.popup-subname{
    width: 90%;
    font-size: var(--size-small);
    letter-spacing: 0.04em;
    line-height: 1.3em;
    color: #4b4b4b;
}



/* Responsive Mobile */


/* 1700px */

@media screen and (max-width: 1700px) {

    .ux-contain{
        width: 75%;
        gap: 5vw;
    }

}


/* 1400px */

@media screen and (max-width: 1400px) {

}


/* 1300px */

@media screen and (max-width: 1300px) {

    /* Header */

    .header-contain,
    .ux-contain{
        width: 85%;
    }

    .ux-title{
        font-size: 58px;
    }

    .ui{
        width: 500px;
    }

    /* Footer */

    .footer-contain{
        width: 90%;
    }

}


/* 1200px */

@media screen and (max-width: 1200px) {

}


/* 1100px */

@media screen and (max-width: 1100px) {

    .header-contain,
    .ux-contain{
        width: 90%;
    }

    /* UX */

    .ux-title{
        font-size: var(--size-headin);
    }

    .ux-name{
        width: 90%;
        font-size: var(--size-small);
    }

    /* UI */

    .ui{
        width: 400px;
    }

    .ui-name{
        font-size: 28px;
    }

    .ui-subname{
        width: auto;
        font-size: var(--size-small);
        line-height: 1.4em;
    }

    .ui-contain{
        padding: 28px;
        gap: 25px;
    }

    .ui-content{
        gap: 15px;
    }

    .ui-column{
        flex-direction: column;
        align-items: unset;
        gap: 15px;
    }

    .ui-consent-content{
        width: auto;
    }

    .ui-button button{
        width: 130px;
        height: 37px;
        font-size: var(--size-small);
    }

}


/* 1100px */

@media screen and (max-width: 1000px) {

    /* Popup */

    .popup-box{
        width: 700px;
    }

    .popup-content{
        width: 350px;
        padding: 15px;
    }

    .popup-all{
        padding: 7vh 15px 10vh;
    }

    .popup-title{
        font-size: var(--size-headin-mid);
    }

    .popup-subname{
        font-size: 13px;
    }

}


/* 900px */

@media screen and (max-width: 900px) {

    /* 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) {

    /* UI */

    .ui{
        width: 370px;
    }

    /* UX */

    .ux-label{
        padding: 10px 15px;
        font-size: 13px;
    }

    .ux-title{
        font-size: var(--size-headin-mid);
    }

}


/* 800px */

@media screen and (max-width: 800px) {

    /* Header */

    .logo svg{
        height: 24px;
    }

    .header-button button
    .footer-headin-button button
    {
        height: 38px;
        font-size: 12px;
    }

    .header-button button div
    .footer-headin-button button div{
        min-width: 24px;
        min-height: 24px;
    }

    /* Footer */

    .footer-name{
        font-size: var(--size-title-small);
    }

    /* Popup */

    .popup-box{
        width: 600px;
    }

    .popup-content{
        width: 300px;
        padding: 15px;
    }

    .popup-title{
        font-size: 28px;
    }

}


/* 750px */

@media screen and (max-width: 750px) {

    .ux-canva-box{
        top: 25%;
        left: 0;
        transform: translate(0, 0);
        width: 100vw;
        height: 100vw;
    }

    .ux-contain{
        flex-direction: column;
        gap: 7vh;
    }

    .ux-content{
        align-items: center;
    }

    .ux-headin{
        align-items: center;
        text-align: center;
    }

    .ux-title{
        font-size: 9vw;
    }

    .ux-name{
        width: 80%;
    }

    .ux-all{
        padding-top: 20px;
        gap: 10px;
    }

    .box-logo{
        width: 34px;
        height: 34px;
        border-radius: 7px;
        font-size: 12px;
    }

    .box-subname{
        font-size: 13px;
    }

    /* UI */

    .ui{
        width: 450px;
    }

}


/* 700px */

@media screen and (max-width: 700px) {

    /* Popup */

    .popup-box{
        width: 500px;
    }

    .popup-content{
        width: 280px;
    }

    .popup-name{
        font-size: 13px;
    }

    .popup-title{
        font-size: 28px;
    }

    .popup-subname{
        width: 95%;
    }

}


/* 650px */

@media screen and (max-width: 650px) {

    /* Header */

    nav{
        display: none;
    }

    .__nav{
        display: block;
    }

    .header-button button{
        height: 34px;
        padding: 0px 9px 0px 17px;
        font-size: 11px;
        gap: 7px;
    }

    .header-button button div{
        min-width: 20px;
        min-height: 20px;
    }

    /* 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) {

    /* 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;
    }

    /* Popup */

    .popup-box{
        width: 350px;
        height: 65vh;
        flex-direction: column-reverse;
    }

    .popup-logo{
        flex: 1;
    }

    .popup-logo img{
        border-radius: 0px 0px 14px 14px;
    }

    .popup-content{
        width: auto;
    }

    .popup-all{
        padding: 5vh 15px;
    }

    .popup-name{
        font-size: 13px;
    }

    .popup-title{
        font-size: 28px;
    }

    .popup-subname{
        width: 95%;
    }

}


/* 500px */

@media screen and (max-width: 500px) {

    /* Drop */

    .__drop{
        top: calc(100% + 20px);
        right: 0;
    }

    /* UX */

    .ux-name{
        width: 90%;
    }

    .ui{
        width: 100%;
    }

}


/* 450px */

@media screen and (max-width: 450px) {

}


/* 400px */

@media screen and (max-width: 400px) {

    /* Footer */

    .footer-headin{
        gap: 10px;
    }

    .footer-headin-name{
        font-size: 13px;
    }

    .footer-subname{
        width: 80%;
        font-size: 13px;
    }

    /* Popup */

    .popup-box{
        width: 300px;
        height: 70vh;
    }

}

/* 350px */

@media screen and (max-width: 350px) {

    .popup-box{
        width: 280px;
    }

}