body {
    overflow-x: hidden;
}

.error-header,
.error-page {
    position: relative;
    z-index: 9;
}

    .error-page::before {
        position: absolute;
        content: "";
        width: 40rem;
        height: 40rem;
        border: 8rem solid rgba(242, 242, 242, 0.4);
        border-radius: 100%;
        top: calc(100vh - 30rem);
        left: -14rem;
        z-index: -1;
    }

    .error-header::after {
        position: absolute;
        content: "";
        width: 40rem;
        height: 40rem;
        border: 12rem solid rgba(242, 242, 242, 0.4);
        border-radius: 100%;
        bottom: -12rem;
        right: -14rem;
        z-index: -1;
    }

.img-wrapper {
    max-width: calc(100% - 48vw);
    margin: 0 auto 1rem;
}

.content-wrapper .heading {
    font-size: clamp(1.5rem, 1.85vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-size: clamp(1rem, 1vw, 1.15rem);
    max-width: 70%;
    opacity: 0.95;
    margin: 0 auto;
}

.content-wrapper ol {
    padding: 0;
    list-style: none;
}

.content-wrapper .instruction {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
}

.error-header .logo {
    max-width: 110px;
}

.error-header {
    padding: 4px 0;
}

.footer-text {
    font-size: 13px;
    width: 70%;
    margin: 3rem auto 0;
    opacity: 0.8;
    position: fixed;
    bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .content-wrapper p {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

/*======================================================================*/
/*======================================================================*/
/*======================================================================*/
/*======================================================================*/
/*======================================================================*/

.notfoundDiv {
    position: relative;
    height: 100vh;
}

    .notfoundDiv .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 460px;
    width: 100%;
    text-align: center;
    line-height: 1.4;
}

    .notfound .notfound-404 {
        position: relative;
        width: 180px;
        height: 180px;
        margin: 0px auto 50px;
    }

        .notfound .notfound-404 > div:first-child {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background: #ffa200;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            border: 5px dashed #000;
            border-radius: 5px;
        }

            .notfound .notfound-404 > div:first-child:before {
                content: '';
                position: absolute;
                left: -5px;
                right: -5px;
                bottom: -5px;
                top: -5px;
                -webkit-box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1) inset;
                box-shadow: 0px 0px 0px 5px rgba(0, 0, 0, 0.1) inset;
                border-radius: 5px;
            }

        .notfound .notfound-404 h1 {
            font-family: 'Cabin', sans-serif;
            color: #fff;
            font-weight: 700;
            margin: 0;
            font-size: 150px;
            position: absolute;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            left: 50%;
            text-align: center;
            height: 50px;
            line-height: 50px;
        }

    .notfound h2 {
        font-family: 'Cabin', sans-serif;
        font-size: 33px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 7px;
    }

    .notfound p {
        font-family: 'Cabin', sans-serif;
        font-size: 16px;
        color: #000;
        font-weight: 400;
    }
