.section--404 {
    padding-top: 50px;
}
.section--404__inner {
    align-items: center;
    color: var(--mainWhite);
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
    padding-top: 80px;
    position: relative;
    text-align: center;
}
.section--404__bg {
    bottom: 0;
    display: block;
    fill: var(--mainGreen);
    height: auto;
    left: 50%;
    max-height: 100%;
    max-width: initial;
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: auto;
}
.section--404__content {
    position: relative;
}
.section--404__title {
    color: var(--mainWhite);
    font-size: 100px;
    line-height: 1;
}
.section--404__text {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section--404__inner {
        min-height: 80vh;
        padding-bottom: 250px;
    }
    .section--404__title {
        font-size: 180px;
    }
}