/* 404 Page */

main {
    background-color: #f8f8f8;
}

.error_wrap {
    max-width: 1500px;
    margin: 0 auto;
    height: calc(100vh - 215px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error_wrap .button_all_wrap {
    position: relative;
}

.error_wrap img {
    min-width: 250px;
    width: 40%;
    height: auto;
    max-height: 500px;
}

.error_content {
    width: 40%;
    margin-right: 45px;
    text-align: start;
}

.error_content h1 {
    font-size: 60px;
    margin: 0 0 40px 0;
    color: rgba(var(--color_text));
    line-height: 1em;
}
.error_content h2 {
    font-size: 24px;
    margin: 0 0 25px 0;
    color: rgba(var(--color_text));
}
.error_content p {
    font-size: 16px;
    margin-bottom: 50px;
    color: rgba(var(--color_text));
}

.error_content .button_all_1 {
    text-align: center;
}

@media screen and (max-width: 1023px) {
}

.error_content {
    margin-right: 30px;
}
.error_content h1 {
    font-size: 34px;
}

.error_content h2 {
    font-size: 20px;
}

@media screen and (max-width: 599px) {
    /* 80%*/
    .error_wrap {
        height: auto;
        flex-direction: column-reverse;
        min-height: calc(100vh - 328px);
        padding: 30px 0 30px 0;
    }
    .error_content {
        width: 80%;
        margin-right: 0;
        text-align: center;
    }

    .error_content h1,
    .error_content h2,
    .error_content p {
        margin: 0 0 10px 0;
    }

    .error_content h1 {
        font-size: 20px;
    }
    .error_content h2 {
        font-size: 16px;
    }

    .error_wrap img {
        margin-bottom: 30px;
    }

    .error_content p {
        font-size: 14px;
    }
    .button_all_wrap {
        margin: auto;
    }
}

@media screen and (max-width: 359px) {
    /* 90%*/

    .error_content {
        width: 90%;
    }
}

/*  Maintenance Page */

.maintenance_main {
    margin: 0 0 0 0;
    height: 100vh;
}
.maintenance_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.maintenance_wrap img {
    width: 350px;
    height: 400px;
}

.maintenance_wrap h1 {
    font-weight: bold;
    font-size: 24px;
    color: #000;
    margin: 40px 0 25px 0;
}
.maintenance_wrap p {
    font-weight: bold;
    font-size: 16px;
    color: #000;
}
