
/*------------------error-404-----------------*/

.error-404{
    position: relative;
    width: 100%;
    padding-bottom: 320px;
}
.error-404 .main-container{
    z-index: 2;
}
.error-404:after{
    content: '';
    background: url("../images/bg-wrapper-404.png") no-repeat right bottom;
    width: 100%;
    height: 675px;
    position: absolute;
    bottom: -46px;
    right: 0;
    left:0;
    z-index: 1;
}
.error-404:before{
    content: '';
    background: url("../images/bg-main-404.png") no-repeat center center;
    width: 100%;
    height: 647px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left:0;
    z-index: 1;
}
.error-404 h4{
    font-size: 64px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}
.error-404 p{
    font-size: 30px;
    text-align: left;
    color: #004990;
    margin-bottom: 20px;
}
.error-404 a{
    height: 55px;
    line-height: 55px;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    color: #004990;
    background: #ffcc33;
    display: inline-block;
    margin-top: 25px;
    padding: 0 50px;
    text-decoration: none;
    transition: all .2s ease-out;
  }
  .error-404 a:hover{
    color: #fff;
    background: #004990;
  }
@media (max-width:1500px){
.error-404 {
    padding-bottom: 219px;
}
.error-404:before {
        background-size: 34%;
}
.error-404:after {
    background-size: 62%;
}
}



