/* Not Found Page */
.not-found_page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: calc(100vh - 108px);
    text-align: center;
}

.not-found_page-title {
    margin-bottom: 16px;
    font-size: 160px;
    font-weight: 400;
    line-height: 100%;
}
.not-found_page-subtitle {
    margin-bottom: 64px;
}

.not-found_page-content .btn {
    width: 100%;
    max-width: 244px;
}

/* Success Page */
.success-page {
    padding-top: 90px;
}
.success-page_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.success-page_title {
    margin-bottom: 32px;
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
}
.success-page_text {
    margin-bottom: 40px;
}
.success-page_btn {
    margin-bottom: 65px;
}
.success-page_img {
    max-height: 420px;
    margin-bottom: 40px;
    overflow: hidden;
}
.success-page_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation */
.typing-classic[data-animation-text] {
    opacity: 0;
}

@media (max-width: 768px) {
    .not-found_page-title {
        margin-bottom: 24px;
        font-size: 80px;
    }
    .not-found_page-subtitle {
        margin-bottom: 32px;
        font-size: 14px;
        line-height: 16px;
    }

    .success-page {
        padding-top: 50px;
    }
    .success-page_title {
        margin-bottom: 24px;
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
    }
    .success-page_text {
        margin-bottom: 32px;
        font-size: 14px;
        font-weight: 400;
        line-height: 145%;
    }
    .success-page_btn {
        margin-bottom: 40px;
    }
    .success-page_img {
        max-height: 305px;
    }
}