#primary section.error-page {
    padding-top: 0;
    padding-bottom: 0;
    height: 100vh;
    min-height: 880px;
    background: linear-gradient(277deg, #06063c 6.1%, #1c1b74 94.72%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.error-page__bg-circle-rotate {
    transform-origin: center;
    animation: rotate-bg 10s linear infinite;
}

.error-page__bg-item {
    pointer-events: none;
    position: absolute;
    top: 50%;
    right: clamp(-886px, calc(-603px - (1440px - 100vw) * 0.77), -603px);
    transform: translateY(-50%);
}

.error-page__container {
    width: 100%;
}

.error-page__content {
    margin-top: 100px;
    max-width: 783px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.error-page__status-code {
    font-size: 88px;
    font-weight: 700;
    line-height: 110%;
    color: var(--BlueGrey-400, #b4bad3);
    margin-bottom: 16px;
}

.error-page__title {
    color: var(--white-color, #fefefe);
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 16px;
}

.error-page__description {
    color: var(--BlueGrey-400, #b4bad3);
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.error-page__btn {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    #primary section.error-page {
        min-height: 812px;
    }

    .error-page__bg-item {
        top: 50%;
        left: 50%;
        right: unset;
        transform: translate(calc(-50% + 350px), -50%);
        max-height: 1160px;
    }

    .error-page__content {
        margin-top: 0px;
    }

    .error-page__title {
        font-size: 36px;
    }

    .error-page__status-code {
        font-size: 64px;
    }

    .error-page__description {
        font-size: 18px;
    }
}
