.welcome-page #wrap {
    min-height: 100vh;
}

.welcome-page #header > .container.text-center {
    height: calc(100vh - 493px);
}

.welcome-page #header {
    padding-top: 250px;
    height: calc(100dvh - 70px);
}

.welcome-page .header-bottom .container {
    display: block !important;
}

.welcome-page .section-action h2 {
    transition: all 400ms;
}

.welcome-page .section-action:hover h2 {
    color: var(--skunity-red);
    transition: all 400ms;
    transition-timing-function: ease-in-out;
}

.welcome-page .section-action.active {
    color: var(--skunity-red);
}

.welcome-page .close-out, .close-out h1, .close-out span, .close-out h2, .close-out h3 {
    /* Transition to fade out the text */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;

    /* Animation to remove padding and margin */
    animation-name: remove-padding-and-margin;
    animation-duration: 0.5s;
    animation-delay: 0.5s; /* Same duration as the transition */
    animation-fill-mode: forwards; /* Keeps the final state of the animation */
}

@keyframes remove-padding-and-margin {
    from {
        font-size: inherit;
        padding: inherit;
        margin: inherit;
        height: inherit;
    }
    to {
        font-size: 0;
        padding: 0;
        margin: 0;
        height: 0;
    }
}

.welcome-page .close-out-header {
    padding-top: 0 !important;
    transition: padding-top, height 0.5s ease-in-out;
    transition-delay: 0.5s;
}

.welcome-page .close-out-header-bottom {
    margin-top: 0 !important;
    transition: margin-top 0.5s ease-in-out;
    transition-delay: 0.5s;
}

.welcome-page .close-out-welcome, .close-out-welcome h2, .close-out-welcome h3 {
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out;

    animation-name: remove-padding-and-margin;
    animation-duration: 0.5s;
    animation-delay: 0.5s; /* Same duration as the transition */
    animation-fill-mode: forwards; /* Keeps the final state of the animation */
}

.welcome-page .docs-dark-mode-animation {
    background-color: black;
    color: white;
    transition: color, background-color 0.5s ease-in-out;
    transition-delay: 3s;
    border-radius: var(--bs-border-radius);
}

.welcome-page .forums-dark-mode-animation {
    background-color: black;
    color: white;
    transition: color, background-color 0.5s ease-in-out;
    transition-delay: 3s;
    border-radius: var(--bs-border-radius);
}

.welcome-page .dashboard-dark-mode-animation {
    background-color: black;
    color: white;
    transition: color, background-color 0.5s ease-in-out;
    transition-delay: 3s;
    border-radius: var(--bs-border-radius);
}

.welcome-page .docs-section-faster-h3 {
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    width: 100%;
    font-size: xxx-large;
    background: linear-gradient(to right, #6a11cb, #7028e4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s linear infinite;
}

.welcome-page .skunity-section-h3 {
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    width: 100%;
    font-size: xxx-large;
    background: linear-gradient(to right, #ff3b41, #ec0808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 5s linear infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.welcome-page .page-height-container {
    height: calc(100vh - 190.59px);
}

.welcome-page .half-page-row {
    height: 39vh;
}

@media (max-width: 991px) {
    .welcome-page .page-height-container {
        height: 100%;
    }

    .welcome-page .half-page-row {
        height: 100%;
    }
}