﻿ @font-face {
            font-family: 'Roboto';
            src: url('../fonts/Roboto-Light.woff2') format('woff2'),
                url('../fonts/Roboto-Light.woff') format('woff');
            font-weight: 300;
            font-style: normal;
        }
        @font-face {
            font-family: 'Roboto';
            src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
                url('../fonts/Roboto-Regular.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #f8f8f8;
            font-family: 'Roboto';
        }
        .error-404 h1 {
            margin-top: 160px;
            font-size: 70px;
            margin-bottom: 0px;
            font-weight: 300;
        }
        .error-404 p {
            margin-bottom: 30px;
        }
        .error-404 .container {
            width: 100%;
            max-width: 1366px;
            margin: 0 auto;
            display: flex;
            background: url(../images/bottom-bg.png) no-repeat;
            background-position: bottom;
            padding: 50px 15px 140px;
        }
        .error-404 .inner-container {
            display: flex;
            width: 100%;
            max-width: 930px;
            margin: 0 auto;
        }
        .error-404 .container .col-6 {
            width: 50%;
            height: auto;
            display: inline-block;
        }
        .error-404 footer {
            width: 100%;
            max-width: 1366px;
            margin: 0 auto;
            display: flex;
            justify-content: flex-end;
            position: relative;
            top: -70px;
        }
        .btn_green {
            background: #3fae3e;
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 15px;
            margin-right: 30px;
        }
        .btn_blue {
            background: #2c6fd7;
            color: white;
            padding: 10px 15px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 15px;
            margin-right: 20px;
        }
        .ques-img {
            text-align: center;
        }
        .img-fluid {
            max-width: 100%;
        }

        @media (max-width: 1199px) {
            .error-404 .container {
                max-width: 100%;
                padding: 50px 15px 140px;
            }
            .error-404 .inner-container {
                max-width: 100%;
            }
        }

@media (max-width: 767px) {
    .error-404 .container {
        padding: 50px 15px 80px;
        background-size: contain;
    }

    .error-404 .inner-container {
        flex-direction: column-reverse;
    }

    .error-404 .container .col-6 {
        width: 100%;
    }

    .error-404 h1 {
        margin-top: 30px;
    }

    .error-404 footer {
        top: 0;
    }

    .ques-img {
        max-width: 160px;
        margin: 0 auto;
    }
}