/*
Theme Name:     London House
Theme URI:      n/a
Template:       kadence
Author:         Tim Dance
Author URI:     n/a
Description:    Child Theme to hold some customisations- ie Language Trigger Menu Switcher
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/
/* Movie 1 Page
 * Make the figure stretch to full viewport height & width on mobile */

@media (max-width: 2000px){
  figure.wp-block-video.vh-hero{
    width:100vw;
    max-width:100vw;
    margin-left:calc(50% - 50vw);
    position:relative;
    height:100svh;
    min-height:100dvh;
    overflow:hidden;
  }
  figure.wp-block-video.vh-hero video{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
  }
}

/* Fallback for browsers that don't support dvh/svh */
@supports not (height: 100dvh){
  @media (max-width:768px){
    figure.wp-block-video.vh-hero{
      height:100vh;
      min-height:100vh;
    }
  }
}
