*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

body,
html {
  height: 100%; }

html {
  font-size: 16px; }

body {
  line-height: 1;
  font-size: 16px;
  font-family: Arial, Helvetica;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-size-adjust: none;
  background-color:lavender;
  overflow: hidden; }

body.no-touch {
  overflow: visible; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; }

ol li,
ul li {
  list-style: none; }

a {
  text-decoration: none; }

#main {
  width: 100%;
  height: 100%; 
  }
 
.case {
	background-size:contain;
	background-repeat: no-repeat;
	background-position:center;
	border: none;
	background-color: transparent;
}
.row {
	display:flex;
	height:40%
}
.section {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  padding-top:8%;
  box-sizing: border-box;
  overflow: hidden;
  display: table; }

.slide-navigation {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 32px;
  text-align: center; }
  .slide-navigation > li {
    position: relative;
    display: block;
    margin-bottom: 25px; }
    .slide-navigation > li > a {
      display: block;
      height: 30px;
      width: 30px;
      border: 2px solid #000;
      border-radius: 50%;
      background: transparent;
      z-index: 1;
      transition: all 0.4s ease; }
      .slide-navigation > li > a.is-active {
        background: #000; }
