

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
	Page not found
</title><link href="https://fonts.googleapis.com/css?family=Anton|Passion+One|PT+Sans+Caption" rel="stylesheet" type="text/css" />

    <style>
        * {
            font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
        }

        html, body {
            height: 100%;
            margin: 0;
        }

        .error-container {
            display: table;
            height: 100%;
            width: 100%;
        }

        .error-wrapper {
            display: table-cell;
            vertical-align: middle;
        }

        .error .container-error-404 {
            position: relative;
            height: 200px;
            text-align: center;
        }

        .error .container-error-404 .clip {
            display: inline-block;
            transform: skew(-45deg);
        }
 
        .error .clip .shadow {
            overflow: hidden;
            height: 180px;
        }

        .error .clip:nth-of-type(1) .shadow,
        .error .clip:nth-of-type(3) .shadow {
            width: 250px;
        }

        .error .clip:nth-of-type(2) .shadow {
            overflow: hidden;
            position: relative;
            box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150,0.8), 20px 0px 20px -15px rgba(150, 150, 150,0.8);
            width: 130px;
        }

        .error .clip:nth-of-type(3) .shadow:after {
            left: -8px;
        }

        .error .clip:nth-of-type(1) .shadow:after,
        .error .clip:nth-of-type(3) .shadow:after {
            content: "";
            position: absolute;
            right: -8px;
            bottom: 0px;
            z-index: 9999;
            height: 100%;
            width: 10px;
            background: linear-gradient(90deg, transparent, rgba(173,173,173, 0.8), transparent);
            border-radius: 50%;
        }

        .error .digit {
            position: relative;
            top: 8%;
            color: white;
            background: #07B3F9;
            border-radius: 50%;
            display: inline-block;
            transform: skew(45deg);
            width: 150px;
            height: 150px;
            line-height: 150px;
            font-size: 120px;
            font-weight: bold;
        }

        .error .clip:nth-of-type(1) .digit {
            right: -20%;
        }

        .error .clip:nth-of-type(2) .digit {
            left: -10%;
        }

        .error .clip:nth-of-type(3) .digit {
            left: -20%;
        }

        .error .msg {
            position: relative;
            z-index: 9999;
            display: block;
            background: #535353;
            color: #A2A2A2;
            border-radius: 50%;
            font-style: italic;
            top: -190px;
            left: 30%;
            width: 80px;
            height: 80px;
            line-height: 80px;
            font-size: 32px;
        }

        .error .triangle {
            position: absolute;
            top: 70%;
            right: 0%;
            z-index: 999;
            border-left: 20px solid #535353;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            transform: rotate(45deg);
            content: "";
            width: 0;
            height: 0;
        }

        .error h2 {
            color: #A2A2A2;
            font-weight: bold;
            font-size: 32px;
            margin: 0;
            text-align: center;
        }

        .error a {
            display: inline-block;
            padding: 12px 30px;
            font-weight: 700;
            background: #07B3F9;
            color: #fff;
            border-radius: 40px;
            text-decoration: none;
            -webkit-transition: 0.2s all;
            transition: 0.2s all;
        }

        .error a:hover {
            background: #71a9c0;
        }
    </style>
</head>
<body>
    <div class="error-container">
        <div class="error-wrapper">
            <div class="error">
                <div class="container-error-404">
                    <div class="clip"><div class="shadow"><span class="digit thirdDigit">4</span></div></div>
                    <div class="clip"><div class="shadow"><span class="digit secondDigit">0</span></div></div>
                    <div class="clip"><div class="shadow"><span class="digit firstDigit">4</span></div></div>
                    <div class="msg">OH!<span class="triangle"></span></div>
                </div>
                <h2>Sorry! Page not found</h2>
                <div style="text-align: center; padding: 20px 0;">
                    <a href="/web/index">Back to homepage</a>
                </div>
            </div>
        </div>
    </div>
</body>
</html>
