/* Error page */

.error-page {
    padding: 0 0 150px;
    overflow: hidden;

    
}

.error-page .container {
    max-width: 1410px;
}

.error-page__content {
    position: relative;
    z-index: 2;
    min-height: 578px;
    max-width: 921px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.error-page__content:before {
    content: url('../img/PP/element2.svg');

    position: absolute;
    left: -460px;
    bottom: 225px;
    z-index: -1;

    width: 360px;
    height: 360px;

    background: url('../img/hero/blue-circle.svg')
        no-repeat center / contain;

    pointer-events: none;
    
}

.error-page__content:after {
    content: url('../img/PP/trubi.svg');

    position: absolute;
    left: 818px;
    bottom: 146px;
    z-index: -1;

    width: 360px;
    height: 360px;

    background: url('../img/hero/blue-circle.svg')
        no-repeat center / contain;

    pointer-events: none;
    
}

/* .error-page__visual {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page__pipes {
    position: absolute;
    right: -120px;
    bottom: 40px;
    z-index: -1;

    width: 360px;
    height: auto;

    pointer-events: none;
}

.error-page__number {
    flex: 1;

    text-align: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 180px;
    font-weight: 700;
    line-height: 1.4;

    color: #F7941D;
} */

/* .error-page__visual {
    position: relative;

    flex: 1;
    min-height: 578px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.error-page__number {
    position: relative;
    z-index: 2;

    font-family: 'Montserrat', sans-serif;
    font-size: 180px;
    font-weight: 700;
    line-height: 1;

    color: #F7941D;
}

.error-page__pipes {
    position: absolute;
    right: -270px;
    bottom: -40px;
    z-index: 1;

    width: 520px;
    height: auto;

    pointer-events: none;
} */




.error-page__info {
    max-width: 500px;
    flex-shrink: 0;
}

.error-page__title {
    margin: 0 0 25px;

    font-family: 'RoadRadio', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #1D3F77;
}

.error-page__text {
    margin: 0 0 35px;

    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;

    color: #8A8A8A;
}

.error-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 250px;
    min-height: 58px;
    padding: 0 32px;

    border-radius: 999px;

    background: #F7941D;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #ffffff;
}

.error-page__number {
    flex: 1;

    text-align: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 180px;
    font-weight: 700;
    line-height: 1.4;

    color: #F7941D;
}

/* =========================
   404 mobile
========================= */

@media (max-width: 1199px) {

    .error-page {
        padding: 0 0 40px;
        overflow: hidden;
    }

    .error-page .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .error-page__content {
        position: relative;

        min-height: 660px;
        max-width: 100%;

        display: block;
        padding-top: 20px;
    }

    .error-page__content::before {
        display: none;
    }

    .error-page__content::after {
        content: url('../img/PP/trubi.svg');

        position: absolute;
        left: 50%;
        bottom: -70px;
        z-index: 1;

        width: auto;
        height: auto;

        transform: translateX(-50%) scale(0.62);
        transform-origin: center bottom;

        pointer-events: none;
    }

    .error-page__info {
        position: relative;
        z-index: 3;
    }

    .error-page__title {
        margin-bottom: 18px;

        font-size: 22px;
        line-height: 1.05;
    }

    .error-page__text {
        max-width: 270px;
        margin-bottom: 24px;

        font-size: 13px;
        line-height: 1.45;
    }

    .error-page__button {
        width: 100%;
        min-width: 0;
        min-height: 58px;
    }

    .error-page__number {
        position: relative;
        z-index: 2;

        margin-top: 30px;

        text-align: center;
        font-size: 120px;
    }
}

