/*** 
=============================================
    Error Page Area Style      
=============================================
***/
.error-page-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}
.error-page-area-bg{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}
.error-page-area-bg:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.70;
}

.error-content{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.error-content .title {
    position: relative;
    display: block;
    color: var(--thm-primary);
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    text-transform: none;
    margin: 0 0 20px;
    font-family: var(--thm-font);
    color: #1f1f1f;
}
.error-content p{
    color: #1f1f1f;
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    margin-bottom: 30px;
}
.error-content .big-title {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 110px;
    line-height: 90px;
    font-weight: 800;
    text-transform: none;
    margin: 0 0 29px;
    font-family: var(--thm-font-2);
}
.error-content .btns-box {
    line-height: 0;
    padding-top: 20px;
}
.error-content .btns-box a {
    padding-left: 40px;
    padding-right: 40px;
}
