body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: .02em;
}

html {
    scroll-behavior: smooth;
}

.error_section{
    background-image: url(../img/error-background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 110px;
    @media screen and (min-width:1280px) {
        padding: 130px 0;
    }
    @media screen and (min-width:1440px) {
        padding: 150px 0;
    }
}
.error_section .container-fluid{
    width: 95%;
    margin: auto;
    @media screen and (min-width:1920px) {
        width: 75%;
    }
}
.error_section .error_number {
    color: #8fa8a8;
    font-size: 250px;
    font-weight: 700;
    line-height: .8;
    margin-bottom: 0;
    @media screen and (min-width: 1280px) {
        font-size: 300px;
    }
}
.error_section .error_subtitle {
    color: #274c5b;
    font-size: 5ch;
    line-height: 1.3;
    font-weight: 700 !important;
    font-family: Roboto, sans-serif;
    @media screen and (min-width: 1280px) {
        font-size:70px;
    }   
}
.error_section .error_content {
    color: #525c60;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.error_section .back-to-home {
    padding: 24px 75px 24px 30px;
    margin: 10px 0;
    font-size: 1.3rem;
    font-family: 'Kanit', sans-serif;
    font-weight: bold;
    background-color: #274c5b;
    border: 1px solid #274c5b;
    color: #fff;    
    border-radius: 15px;
    background-image: url(../img/right_ico.svg);
    background-repeat: no-repeat;
    background-position: 80%;
    background-size: auto;
    transition: all .4s;
    @media screen and (max-width: 992px) {
        padding: 20px 65px 20px 26px;
    }
    @media screen and (max-width: 576px) {
        padding: 14px 50px 14px 20px;
        font-size: 1rem;
    }
}
.error_section .back-to-home:hover {
    background-color: #fff;
    color: #274c5b;
    background-position: 83%;
}