
/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
    /* Styles */
    .is_overlay{display: none}
    .main{
        background-image: url(/wp-content/themes/egoistka/img/land_main3.jpg);
        min-height: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .cont_logo {
        background-image: url(/wp-content/themes/egoistka/img/egoistka_logo.png);
        min-height: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        height: 60px;
        position: relative;
        top: 27px;
        right: 20px;
    }

}

/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
    /* Styles */
    .main{
        background-image: url(/wp-content/themes/egoistka/img/land_main3.jpg);
        min-height: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .cont_logo {
        background-image: url(/wp-content/themes/egoistka/img/egoistka_logo.png);
        min-height: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        height: 60px;
        position: relative;
        top: 27px;
        right: 78px;
    }
}

/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
    /* Styles */
    .main{
        background-image: url(/wp-content/themes/egoistka/img/land_main3.jpg);
        min-height: 80%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .cont_logo {
        background-image: url(/wp-content/themes/egoistka/img/egoistka_logo.png);
        min-height: 100%;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        height: 77px;
        position: relative;
        top: 52px;
        right: 93px;
    }
}