.footer .footer-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-vdo-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.about-video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.play-btn-img {
    width: 90px; /* adjust as needed */
    transition: .3s;
}

.video-overlay:hover .play-btn-img {
    transform: scale(1.1);
}

.video-overlay.hide {
    opacity: 0;
    visibility: hidden;
}
.error-pages {
    padding: 200px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.error-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-box h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.error-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
}

.error-box .butn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-box .butn:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .error-pages {
        padding: 80px 0;
    }

    .error-box h1 {
        font-size: 42px;
    }

    .error-box p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .error-pages {
        padding: 60px 15px;
    }

    .error-box h1 {
        font-size: 32px;
    }

    .error-box p {
        font-size: 15px;
    }

    .error-box .butn {
        width: 100%;
        max-width: 250px;
    }
}
.error-code {
    display: block;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: #e5e5e5;
    margin-bottom: 15px;
}