body.page-template-page-404, body.error404 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.page-template-page-404 #main, body.error404 #main {
    /* flex: 1; */
    /* justify-content: center; */
    /* align-items: center; */
    /* display: flex; */
    /* width: 100%; */
    background-image: url(./../../../images/contact_bg.jpg);
    background-size: cover;
    background-position: center left 25%;
}

section.page {
    width: 100%;
    padding: 80px 0;
}

section.page-404 .inner_grid {
    display: flex;
    gap: 5%;
    /* max-width: 1740px; */
    padding-right: 7.4%;
    position: relative;
}

section.page-404 .page_title {
    /* margin-bottom: 40px; */
    text-align: center;
    font-size: 5vw;
    color: #ecfd0d;
    text-shadow: -6px 4px #1d4d75;
}

section.page-404 .contact_img {
    /* padding-bottom: 40%; */
    width: 43%;
    position: relative;
    /* max-height: 490px; */
}

section.page-404 .contact_img .container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 1px;
    display: none;
}

section.page-404-wrapper {
    flex: 1;
    position: relative;
    /* background-color: var(--black); */
    color: #ebfd06;
    padding: 15px 30px;
    min-width: 450px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.page-404-wrapper .inner_wrapper {
    padding-left: 40px;
}



@media screen and (max-width: 768px) {
    section.page-404-wrapper {
        min-height: 100vh;
    }
    section.contact .contact_img {
        width: 100%;
    }

    section.page-404 .inner_grid{
        flex-direction: column;
        padding-right: 0;
        gap: 50px;
    }

    section.contact .contact_img .container {
        padding-bottom: 330px;
        position: relative;
    }


    body.page-template-page-404 #main {
        background-position: center top;
        background-size: cover;
        background-image: url(./../../../images/contact_bg_m2.jpg);
    }

    section.page-404 .page_title {
        font-size: 80px;
        width: 100%;
        margin-top: 80px;
    }

    
    
}