.not-found-page{
    background-color: #F2F4F8;
    background-image: url(../img/404.png);
    background-repeat: no-repeat;
    background-size: auto 905px;
    background-position-y: center;
}
.not-found-page.page-500{
    background-image: url(../img/500.png);
    background-size: auto 911px;
}
.not-found-page > .container{

}
.not-found-wrap{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: right;
}
.not-found-content{
    text-align: center;
}
.not-found-title{
    font-family: 'Poppins', sans-serif;
    font-size: 242px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 35px;
}
.not-found-text{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 60px;
}
.not-found-btn{
    width: 200px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
    background-color: #0F62FE;
}
@media only screen and (max-width: 1219px) {
    .not-found-page {
        background-size: auto 755px;
    }
    .not-found-title{
        font-size: 120px;
    }
    .not-found-page.page-500{
        background-size: auto 755px;
    }
}
@media only screen and (max-width: 1023px) {
    .not-found-page {
        background-size: auto 540px;
    }
    .not-found-title{
        font-size: 120px;
    }
    .not-found-page.page-500{
        background-size: auto 540px;
    }
}
@media only screen and (max-width: 767px) {
    .not-found-page {
        background-size: 100%;
    }
    .not-found-wrap{
        justify-content: center;
    }
    .not-found-title{
        font-size: 70px;
    }
    .not-found-page.page-500{
        background-size: 100%;
    }
}