 @media (min-width: 1023px) and (max-width: 1168px) {
     
    .mediaQuery {
        height: 80%;
        right: 0px!important;
        bottom: 0px!important;
    }
}


@media (min-width: 1px) and (max-width: 1022px) {
    .mobileClass {
        display: block;
    }
    
    .desktopClass {
        display: none;
    }
}

@media (min-width: 1023px) {
    .mobileClass {
        display: none;
    }
    
    .desktopClass {
        display: block;
    }
}

@media (min-width: 1px) and (max-width: 410px) {
    .heading1Mobile > p {
        font-size: 20px!important;
        margin-right: 0px!important
    }
    
    .logoSizeMobile {
        margin-top: -21px!important;
    }
}