
/* section-404 */
.section-404 {
    --offset-block: 4rem;
    --width-card: 50.75rem;
    --offset-margin: 6.875rem;
    --height-image-block: 18.75rem;
}
.section-404__wrapper {
    padding: var(--offset-block) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.section-404__content {
    margin-top: calc(var(--offset-margin) * -1);
}
.section-404__image {
    height: var(--height-image-block);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-404__image svg,
.section-404__image img {
    display: block;
    max-width: 100%;
    height: 100%;
}
.section-404__image img {
    object-fit: contain;
}

@media screen and (max-width: 1023.5px) {
    .section-404 {
        --offset-block: 2.5rem;
        --height-image-block: auto;
        --offset-margin: 2.25rem;
    }
}
