/* Background image */
.site_update_img{
    width: 100%;
    height: 100vh;
    background-image: url("/wp-content/themes/lenkijoje-pigiau/assets/img/main_page_image.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Background image text */
.maintenance_text_div {
    position: absolute;
    top: 35.8%;
    right: 15.85%;
    width: 450px;
}

/* Purple title */
.maintenance_text_div > .h1{
    color: var(--purple1);
    margin-bottom: 7px;
}

/* Explanatory text */
.maintenance_explanatory_text{
    margin-bottom: 25px;
}

@media screen and (max-width:1200px){

    /* Background image text div */
    .maintenance_text_div {
        right: 6.85%;
    }
}

@media screen and (max-width:960px){

    /* Background image text div */
    .maintenance_text_div {
        right: 1.85%;
    }
}

@media screen and (max-width:769px){

    /* Background image text div */
    .maintenance_text_div {
        position: unset;
        width: 100%;
        text-align: center;
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Purple title */
    .maintenance_text_div > .h1{
        font-size: 22px;
        line-height: 29px;
        font-weight: 500;
    }

    /* Explanatory text */
    .maintenance_text_div span{
        font-size: 14px;
        line-height: 21px;
        font-weight: 500;
    }
}