html {
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
}

body {
    background: #fff;
    padding: 0 !important;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Inter', sans-serif;
    color: #000;
}

main {
    flex: 1;
    background: #fff;
}

img {
    width: 100%;
}

.page_not_found {
    background-color: #fff;
    overflow: hidden;
}

.page_not_found .find_box {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 100vh;
    justify-content: center;
    background: #fff;
}

.page_not_found .find_box .find_error {
    width: 500px;
}

.page_not_found .find_box .find_error .error_image {
    margin-bottom: 40px;
    text-align: center;
}

.page_not_found .find_box .find_error .error_text {
    text-align: center;
}

.page_not_found .find_box .find_error .error_text h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 44px;
    color: #1B1E22;
    margin-bottom: 10px;
    margin-top: 0;
}

.page_not_found .find_box .find_error .error_text span {
    font-size: 16px;
    line-height: 19px;
    color: #8C97AC;
    display: block;
}

.page_not_found .find_box .find_error .error_text .btn {
    display: inline-block;
    font-size: 14px;
    line-height: 17px;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 15px 24px;
    border: none;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
}

.page_not_found .find_box .find_error .error_text .btn-primary {
    color: #fff;
    background-color: #093770;
    border-radius: 10px;
    margin-top: 25px;
}

@media (max-width: 767px) {
    .page_not_found .find_box .find_error .error_text h2 {
        font-size: 22px;
        line-height: 30px;
    }
    .page_not_found .find_box .find_error .error_image img {
        width: 300px;
    }
    .page_not_found .find_box .find_error .error_text span {
        font-size: 12px;
        line-height: 16px;
    }
}