.error-page .main-header{
    border-bottom: 1px solid #dadada;
}
.error-box{
	background-size: cover;
	position: relative;
	min-height: 400px;
}

.error-content{
	padding: 100px 0 100px;
	position: relative;
}
.error-content .error-txt {
    display: inline-block;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--text-default-color);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 85px;
    line-height: 70px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}
.error-content .error-txt .error-sub-txt {
    display: block;
    font-size: 18px;
    line-height: 20px;
    margin-top: 10px;
}
.error-content .error-txt:before {
    content: '';
    position: absolute;
    left: -25px;
    bottom: -18px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 50px 20px 0;
    border-color: transparent var(--text-default-color) transparent transparent;
    transform: rotate(-40deg);
}
.error-content .error-header{
	font-size: 45px;
	line-height: 48px;
    font-weight: bold;
    color: var(--primary-color);
	margin: 0 auto 30px;
    letter-spacing: 0.5px;
    max-width: 1100px;
}
.error-content .error-text{
    border-top: 1px solid #dfdfdf;
    margin-top: 40px;
    padding-top: 40px;
}
.error-content .error-subheader{
    font-size: 26px;
    font-weight: 400;
    line-height: 30px;    
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: 1px;
    @media (max-width: 1278px) {
        font-size: 24px;
        line-height: 28px;
    }
}
.error-content .error-points{
	padding-left: 23px;
}
html[dir=rtl] .error-content .error-points{
    padding-left: 0px;
    padding-right: 15px;
}
.error-content .error-points li{
	list-style-type: circle;
	font-size: 18px;
	line-height: 22px;
	margin-bottom: 10px;
}

@media(max-width: 767px){
	.error-content .error-header{ font-size: 35px; line-height: 39px; }
}