/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    .home_slide.bg_on_img {
        background-position: center;
        background-size: 120% 100%;
    }
    
    .home_slide.bg_on_img.first_slide {
        background-position: center;
        background-size: 130% 100%;
    }
    .content_slide a.play {
        width: 150px;
    }

    .home_slide.bg_on_img.second_slide {
        background-position: center;
        background-size: 148% 100%;
    }

}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    .home_slide.bg_on_img {
        background-position: center;
        background-size: 120% 100%;
    }
    
    .home_slide.bg_on_img.first_slide {
        background-position: center;
        background-size: 130% 100%;
    }

    .home_slide.bg_on_img.second_slide {
        background-position: center;
        background-size: 148% 100%;
    }
}