/* -------------
    SOMMAIRE
------------- */

/*
    @AUTHOR : Nicolas BOUDOT

    PAGE 404
    Style de la page 404
*/

/*
  00 - GÉNÉRAL
*/



/* -----------------
  00 - GÉNÉRAL
----------------- */

.headerPage--404 {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 40px 0;
    z-index: 1;
}

    .headerPage--404 .breadcrumb,
    .headerPage--404 .breadcrumb a {
        color: var(--color-secondary);
    }

.page-404 {
    position: relative;
    background-color: var(--gray-300);
    overflow: hidden;
}

.page-404__picture {
    position: absolute;
    inset: 0;
}

    @media (max-width: 991px) {
        .page-404__picture {
            display: none;
        }
    }

.page-404__content {
    position: relative;
    text-align: center;
    padding: 30px 0 150px;
    z-index: 1;
}

.page-404__big-title {
    font-size: 8rem;
    margin-bottom: 20px;
}

.page-404__content a + a {
    margin-top: 12px;
}

    @media (min-width: 992px) {
        .page-404__content a + a {
            margin-top: 0;
            margin-left: 12px;
        }
    }
