.error-page-banner {
    width: 100%;
    height: 100vh;
    height: var(--app-height);
    position: relative;
}

.error-page-banner::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-image: url(../img/bg-feedback.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
}


.error-page-banner .wrapper-inside {
    height: 100%;
}

.error-page-banner-container { 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 160px 0 0;
    position: relative;
    z-index: 2;
}
@media only screen and (max-width: 1279px) {
    .error-page-banner-container { 
        padding: 120px 0 0;
    }
}
@media only screen and (max-width: 766px) {
    .error-page-banner-container { 
        padding: 60px 0 0;
    }
}

.error-page-banner-container .error-content { 
    width: 910px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media only screen and (max-width: 1279px) {
    .error-page-banner-container .error-content { 
        gap: 32px;
    }
}

.error-page-banner-container .error-content .error-number { 
    width: 100%;
    font-size: 162px;
    font-style: normal;
    font-weight: 600;
    line-height: 162px; /* 100% */
    letter-spacing: -1.62px;
    text-transform: uppercase;
    text-align: center;
}
@media only screen and (max-width: 766px) {
    .error-page-banner-container .error-content .error-number { 
        font-size: 94px;
        line-height: 94px;
        letter-spacing: normal;
    }
}

.error-page-banner-container .error-content .error-text { 
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media only screen and (max-width: 1279px) {
    .error-page-banner-container .error-content .error-text { 
        gap: 32px;
    }
}

.error-page-banner-container .error-content .error-text .text { 
    width: 100%;
    text-align: center;
}

.error-page-banner-container .error-content .error-text .action { 
    width: 100%;
    display: flex;
    justify-content: center;
}
