* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

.error-header {
    position: relative;
    width: 100%;
    min-height: 61px;
    float: left;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.error-header img{
    width:101px;
}
.error-outer {
    position: relative;
    width: 100%;
    float: left;
    height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-wrapper {
    position: relative;
    width: 840px;
    min-height: 525px;
    float: left;
    background-color: #fff;
}

.error-wrapper .error-bg {
    position: relative;
    width: 100%;
    float: left;
    font-weight: 500;
    font-size: 400px;
    line-height: 1;
    color: #ECE9FF;
}

.error-wrapper .error-bg:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .4);
    top: 0;
    left: 0;
    float: left;
    z-index: 1;
}

.error-data {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 142px;
    top: 90px;
    float: left;
    z-index: 2;
}

.error-data h2 {
    font-weight: 900;
    font-size: 48px;
    line-height: 56px;
    color: #222222;
    margin-bottom: 17px;
}

.error-data p {
    font-weight: normal;
    font-size: 18px;
    line-height: 32px;
    color: #222222;
    width: 43%;
    margin-bottom: 50px;
}

.return-home-btn {
    position: relative;
    background: #41D96A;
    border-radius: 3px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    padding: 13px 69px;
    text-decoration: none;
}
.return-home-btn:hover{
    opacity: .8;
}
@media( max-width:1199.98px){

    .error-data{
        width: 90%;
    }

}
@media( max-width:767.98px){
    .error-outer{
        padding: 0 15px;
    }
    .error-wrapper{
        width: 100%;
        min-height: auto;
    }
    .error-data{
        left: 0px;
    }
    .error-data p{
        width: 75%;
    }
}
@media( max-width:575.98px){
    .error-outer{
        height: auto;
    }
    .error-wrapper .error-bg{
        font-size: 200px;
    }
    .error-data{
        top: 30px;
    }
    .error-data h2{
        font-size: 38px;
        line-height: 1.2;
    }
    .error-data p {
        width: 100%;
    }
}
@media( max-width:320px){

    .error-wrapper .error-bg {
        font-size: 170px;
    }
    .error-data h2 {
        font-size: 30px;
    }
    .error-data p{
        font-size: 16px;
        line-height: 1.7;
    }
}
    