.main_container .error_container {
    display: block;
    float: left;
    background-color: #fff;
    padding: 100px 20px 50px;
    width: 100%;
    box-sizing: border-box;
}

.error_container .title {
    display: block;
    float: left;
    position: relative;
    color: #3c67a5;
    font-family: "Font1";
    font-size: 24px;
    text-align: center;
    width: 100%;
}

.error_container .title:before {
    display: block;
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -25px;
    background-image: url(../images/sprite-error.png);
    background-repeat: no-repeat;
    background-size: 50px 89px;
    content: '';
    width: 50px;
    height: 40px;
}
.error_container .title.error:before {
    background-position: center top;
}
.error_container .title.error404:before {
    top: -56px;
    background-position: center bottom;
    height: 46px;
}

.error_container .text {
    display: block;
    float: left;
    margin-top: 8px;
    color: #4ec1e0;
    font-family: "Font2";
    font-size: 18px;
    text-align: center;
    width: 100%;
}

.error_container .buttons_container {
    display: block;
    margin: auto;
    width: 200px;
}