@charset "UTF-8";
/* CSS Document */

@media only screen and (max-width: 767px) {
html {
scroll-behavior: smooth;
overflow: hidden;
width: 767px;
}
body {
height: 100%;
width: 100%;
position: fixed;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
html {
scroll-behavior: smooth;
overflow: hidden;
width: 1024px;
}
body {
height: 100%;
width: 100%;
position: fixed;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
html {
scroll-behavior: smooth;
overflow: hidden;
width: 768px;
}
body {
height: 100%;
width: 100%;
position: fixed;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
}