* { /* 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-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);
	
}

::-webkit-scrollbar {

    width: 20px;

}

::-webkit-scrollbar-track {

    background-color: rgba(255, 255, 255, 0.1);

}

::-webkit-scrollbar-thumb {
    
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    border: 7px solid transparent;
    background-clip: content-box;
    cursor: default;

}

::-webkit-scrollbar-thumb:hover {
    
    background-color: rgba(255, 255, 255, 0.5);

}

::-webkit-scrollbar-thumb:active {
    
    background-color: rgba(255, 255, 255, 1);

}

a[href^="tel"] {

    color: inherit;
    text-decoration: none;
    
}

html,
body {

    height: 100%;
    font-family: 'Arial', 'Helvetica', sans-serif;
    cursor: default;
    font-size: 16px;
    line-height: 100%;
    background: #101010;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    touch-action: pan-y;

}

.global-padding {

    padding: 3em;
    transition: padding 0.2s;

}

.wrapper {

    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;

}

.splash {

    display: block;
    width: 100%;
    margin: 0 auto;
    
}

.nexd-logo {

    display: block;
    margin: auto;
    max-width: 100px;
    transition: max-width 0.2s;
    margin-bottom: 2em;

}

.nexd-headline {

    display: block;
    margin: auto;
    max-width: 500px;
    padding: 0 2em;
    margin-bottom: 2em;
    transition: max-width 0.2s;
    line-height: 130%;

}

.nxdco-logo {

    display: block;
    margin: auto;
    max-width: 100px;
    transition: max-width 0.2s;    

}

.nxdco-logo img {

    display: block;
    width: 100%;

}

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

    .global-padding {

        padding: 2em;
    
    }

}