.slotholder {
  animation: zoomin 5s ease-in forwards;
  transform-origin: left;
	margin-top: 0px;
	margin-left: -150px;

}
.slotholder2 {
  animation: zoomin2 5s ease-in forwards;
  transform-origin: left;
	margin-top: -140px;
	margin-left: 30px;
}

@keyframes zoomin {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.3);
  }
}

@keyframes zoomin2 {
  0% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1.0);
  }
}

.zoom-in-out-box {
  margin: 24px;
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

.zoom-in-out-box2 {
  margin: 24px;
  animation: zoom-in-zoom-out2 0.5s ease infinite;
}

@keyframes zoom-in-zoom-out2 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

.zoom-in-out-box3 {
  margin: 24px;
  animation: zoom-in-zoom-out3 0.7s ease infinite;
}

@keyframes zoom-in-zoom-out3 {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}


.topnav {
  overflow: hidden;
  background-color: transparent;
	position: absolute;
	z-index: 9999;
	padding: 20px;
	width: 100%;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
	text-shadow: 1px 1px #000;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
	
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
	  padding-right: 50px;
  }
	

	
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
	  
  }
}