.wrapper-maintainance {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
.wrapper-maintainance .error-image-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.wrapper-maintainance .error-road-image {
        height: 220px;
        width: 220px;
    }
.wrapper-maintainance .error-maintainance-text {
        font-size: 160px;
        font-weight: 700;
    }
.wrapper-maintainance .svg-wrapper svg {
        position: relative;
        top: -50px;
    }
.wrapper-maintainance .error-message-main-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
.wrapper-maintainance .error-message-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
.wrapper-maintainance .error-heading-text {
        font-size: 32px;
        font-weight: 600;
        line-height: 28px;
        text-align: center;
    }
.wrapper-maintainance .error-sub-heading-text {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }
.wrapper-maintainance .error-sub-heading-text span {
            font-size: 20px;
            font-weight: 800;
            line-height: 28px;
            text-decoration-line: underline;
        }
.wrapper-maintainance .error-button-wrapper {
        display: flex;
        padding: 16px 18px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 0.5);
    }
.wrapper-maintainance .error-button-text {
        color: var(--primary-blue);
        font-weight: 700;
        line-height: 30px;
    }
@media (max-width: 1027px) {
        .wrapper-maintainance .error-maintainance-text {
            font-size: 100px;
            font-weight: 700;
        }
        .wrapper-maintainance .svg-wrapper svg {
            position: relative;
            top: -30px;
            width: 180px;
            height: 180px;
        }
    }
@media (max-width: 767px) {
        .wrapper-maintainance .error-maintainance-text {
            font-size: 80px;
            font-weight: 700;
        }
        .wrapper-maintainance .svg-wrapper svg {
            position: relative;
            top: -24px;
            width: 140px;
            height: 140px;
        }
    }
@media (max-width: 480px) {
        .wrapper-maintainance .error-maintainance-text {
            font-size: 40px;
            font-weight: 700;
        }
        .wrapper-maintainance .error-button-wrapper {
            width: 100%;
        }
        .wrapper-maintainance .svg-wrapper svg {
            position: relative;
            top: -11px;
            width: 110px;
            height: 110px;
        }
    }
