/* ./index.html */

.index-firsthero {
    background: url(../assets/generic/SpecialAssets/site.background.witheffects.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.index-firsthero {
    align-content: center;
}

.index-firsthero > .WtkBox.horizontal {
    align-items: center;
    height: calc(100vh - 48px);
}

.index-firsthero > .WtkBox.horizontal > * {
    width: 57.5%;
}

.index-firsthero .index-client-container {
    position: absolute;
    right: 0;
    justify-items: center;
    max-width: 51%;
    left: 45%;
}

.index-firsthero .index-client-container .WtkClient {
    background-color: color-mix(in srgb, var(--wtk-translucent-bg) 60%, transparent 40%);
}
.firsthero-widgetcontainer {
    height: 75%;
    top: 0;
    position: relative;
    width: 100%;
    height: 394px;
}

.firsthero-lappy {
    width: 100%;
    height: auto;
    position: absolute;
}

@keyframes widget-zoom {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.2) translateY(-24px);
    }
}

@keyframes widget-zoom-left {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.2) translateY(-24px) translateX(-12px);
    }
}

@keyframes widget-zoom-right {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.2) translateY(-24px) translateX(12px);
    }
}

.firsthero-widget {
    position: absolute;
    border-radius: 4px;
    backdrop-filter: blur(calc(var(--wtk-translucent-blur) / 10));
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
    animation: widget-zoom 3s ease-in-out forwards;
}

.firsthero-widget1 {
    height: 45%;
    top: 24%;
    left: 23%;
    animation: widget-zoom-left 3s ease-in-out forwards;
    animation-delay: 0.6s;
}

.firsthero-widget2 {
    height: 14.75%;
    top: 24%;
    left: 67%;
    animation: widget-zoom-right 3s ease-in-out forwards;
    animation-delay: 1.2s;
}

.firsthero-widget3 {
    width: 28%;
    top: 54.25%;
    left: 37.5%;
    animation-delay: 1.8s;
}

.firsthero-widget4 {
    height: 29%;
    top: 40%;
    left: 67%;
    animation: widget-zoom-right 3s ease-in-out forwards;
    animation-delay: 2.4s;
}

.firsthero-widget5 {
    width: 28%;
    top: 24%;
    left: 37.5%;
    animation-delay: 3s;
}

.index-whynebios {
    align-content: center;
}

.index-whynebios .WtkCard h2,
.index-whynebios .WtkCard h4,
.index-whynebios .WtkCard p {
    margin: 0;
    padding: 0;
}

.index-whynebios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

@media screen and (max-width: calc(960px + calc(32px * 2))) {
    .index-firsthero > .WtkBox.horizontal > * {
        width: 100%;
    }

    .index-firsthero .index-client-container {
        position: relative;
        top: -8.5vh;
        margin: 0;
        max-width: 100%;
        left: 0;
    }

    .index-whynebios-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ./x/index.html - NebiOS X */

.x-3d-paralax-body {
    height: 75%;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}

.x-3d-paralax-body > .hero:not(.secondary-bg),
.x-3d-paralax-body > .content:not(.secondary-bg),
.x-3d-paralax-body > div:not(.secondary-bg):not(.x-3d-paralax-header) {
    background-color: var(--wtk-color-background-body);
}

.x-3d-paralax-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    transform-style: preserve-3d;
    z-index: -1;
}

.x-3d-paralax-background, .x-3d-paralax-foreground {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.x-3d-paralax-background {
    transform: translateZ(-10px) translateY(-10px) scale(2.1);
}

.x-3d-paralax-foreground {
    transform: translateZ(-5px) translateY(-10px) scale(1.5);
}

.nebios-3d-text {
    background-color: rgba(255, 255, 255, 0.75);
    color: transparent;
    text-shadow: 0px 0px 16px rgba(255, 255, 255, 0.75), 0px 8px 16px rgba(0, 0, 0, 0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}

.x-centered-content {
    align-content: center;
}

.x-showcase {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: 100%;
}

.x-showcase-borderless {
    width: 100%;
}