* { /* NXD CSS Reset 2.0 */
    
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;

    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    
    box-sizing: border-box;
    
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	
}

a[href^="tel"]{

    color: inherit;
    text-decoration: none;
    
}

html,
body {

    cursor: default;
    font-size: 100%;
    line-height: 100%;
    background: #111117;
    color: #ffffff;
    overflow: hidden;
    touch-action: pan-y;

}

img {

    pointer-events: none;

}

#particle {

    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;

}

.nxd-logo {

    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(45vw, 45vh);
    height: min(45vw, 45vh);
    transform: translate(-50%, -50%);
    transition: width 0.25s;

}

.nxd-logo img {

    display: block;
    max-width: 100%;

}

.nxd-nxdco-logo {

    display: block;
    position: absolute;
    bottom: 7%;
    right: 50%;
    transform: translate(50%, 0);
    width: min(10vw, 10vh);
    min-width: 100px;
    transition: opacity 1s;
    mix-blend-mode: overlay;

}

.nxd-nxdco-logo img {

    display: block;
    width: 100%;

}

@media screen and (max-height: 800px) {

    .nxd-nxdco-logo {

        opacity: 0;

    }

}

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

    .nxd-logo {

        width: min(80vw, 80vh);
        height: min(80vw, 80vh);
        
    }

}