.snap-container {
  /* for tests */
  /*
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none; */
  /* end tests */
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  border: 0 solid rgba(0, 0, 0, 0); }
  .snap-container::-webkit-scrollbar {
    display: none; }

.snap-container section{
	height: 100%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: opacity 2s ease;
    -moz-transition: opacity 2s ease;
    -ms-transition: opacity 2s ease;
    -o-transition: opacity 2s ease;
    transition: opacity 2s ease;
    margin: 0;
    scroll-snap-align: start;
    padding: 0;
}

    .snap-container section::before {
      /* sample graphic */     
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      content: '';
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 100%;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      -webkit-transition: opacity 2s ease;
      -moz-transition: opacity 2s ease;
      -ms-transition: opacity 2s ease;
      -o-transition: opacity 2s ease;
      transition: opacity 2s ease;
      opacity: 0.25;
      z-index: -1; }
    .snap-container section.active {
      background: rgba(0, 0, 0, 0); }
    .snap-container section.active::before {
      opacity: 1 !important; }
    .snap-container section:first-child {
      margin-top: 0 !important; }
    .snap-container section:last-of-type {
      margin-bottom: 0 !important; }

.snap-container .nav-dots{
	z-index: 100000;
}
@media (min-width: 1200px){
	.snap-container .nav-dots{
		position: absolute;
		top: 50vh;
		right: 25px;
		display: inline-block;
		justify-content: center;
		height: content-fit;
		margin: 0;
		list-style-type: none;
	}
}
@media (min-width: 1300px){
	.snap-container .nav-dots{
		position: absolute;
		top: 50vh;
		right: 25px;
		display: inline-block;
		justify-content: center;
		height: content-fit;
		margin: 0;
		list-style-type: none;
	}
}
@media (min-width: 1400px){
	.snap-container .nav-dots{
		position: absolute;
		top: 50vh;
		right: 25px;
		display: inline-block;
		justify-content: center;
		height: content-fit;
		margin: 0;
		list-style-type: none;
	}
}
@media (min-width: 1500px){
	.snap-container .nav-dots{
		position: absolute;
		top: 50vh;
		right: 38px;
		display: inline-block;
		justify-content: center;
		height: content-fit;
		margin: 0;
		list-style-type: none;
	}
}

.snap-container .nav-dots li{
	width: 26px;
	height: 26px;
	display: block;
	margin: 10px 0;
	background:url('../images/main/nav.png') no-repeat;
	background-position: center;
	border-radius: 100px;
}
.snap-container .nav-dots li.active{
	background:url('../images/main/nav_active.png') no-repeat;
}

.debug {
  position: fixed;
  bottom: 60px;
  left: 60px; }
