/* CSS Document */
/*BODY*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

body{
  font-family: 'Lato', sans-serif;
  color: #505962;
  overflow: hidden;
}

/*--- Fixed Video Background iOS/Mobile Style--*/
.video-wrap {
  background-position: center center;
  clip: rect(0, auto, auto, 0);
  position: relative;
  top: 0;
  left: 0;
}
#video {
  background-position: center center;
  position: relative;
  background-size: contain;
}
video {
  background-position: center center;
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
}
