/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1250px) and (max-width: 2600px){
    .inner-box img {
        /* width: auto; */
        height: 100%;
    }
}
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/


@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait){
    .inner-box img {
        width: auto;
        height: auto;
    }
}
/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
    .inner-box img {
        width: auto;
        height: 100%;
    }
}
/* Mobile */

@media (min-width: 319px) and (max-width: 550px) {
    .inner-box img {
        
        height: 100%;
        width: auto;
    }
    .mid-logo{
        width: 150px;
        height: 150px;
        margin-left: -75px;
        margin-top: -75px;
    }
    .mid-logo-image img{
        width: 75%;
    }
    a.inner-link h1{
        font-size: 12px;
    }
    a.inner-link h1:after{
        display: none;
    }
    a.inner-link h1:before {
        content: "";
        background-image: url(../images/landing/right-arrow.png);
        position: absolute;
        opacity: 0.7;
        width: 44px;
        height: 35px;
        background-repeat: no-repeat;
        padding: 5px;
        left: 0;
        right: 0;
        margin: auto;
        margin-top: 30px;
    }
}
@media only screen and (max-width: 860px) and (min-aspect-ratio: 13/9) and (orientation: landscape){
    .mobile-rotate-wrap {
        display: block!important;
        overflow: hidden!important;
    }
}
