/* ? no-page css */

/* ? */
/* ?    --------------------------------------------------------------------------  NO-PAGE */
/* ? */
.no-page__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10vh 0;
    overflow: hidden;
}
.no-page__top,
.no-page__bottom {
    background: var(--accent_black);
    position: relative;
    z-index: 10;
}
.no-page__title {
    font-family: 'Gothic A1', sans-serif;
    font-style: normal;
    font-size: 48px;
    line-height: 60px;
    color: var(--color_white);
    margin: 0 auto 20px;
    text-align: center;
}
.no-page__text {
    text-align: center;
    margin: 0 auto;
}
.no-page__bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.no-page__link {
    display: inline-block;
    text-decoration: underline;
    color: var(--color_white);
}
.no-page__img {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
/* ? ------------------------------------------------ Media   No-page */
@media (max-width: 1440px) {
    .no-page__img {
        max-width: calc(300px + 300 * ((100vw - 375px) / 1065));
    }
}
/* ? animation image */
.no-page__img {
    animation: anim-image 8s ease infinite;
}

@keyframes anim-image {
    0% {
        transform: rotate(0deg) scale(0.4);
        opacity: 0.5;
    }
    40% {
        transform: rotate(-800deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) scale(0.4);
        opacity: 0.5;
    }
}
