.screens {
  position: relative;
  height: 60vh;
}

.screens .screen {
  opacity: 0;
  position: absolute;
  left: 50%;
  width: 34vh;
  margin-left: -17vh;
  list-style-type: none;
  transform: translateX(-72px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.screens .screen.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}

.screens .screen.active ~ .screen {
  opacity: 0;
  transform: translateX(72px);
}

.screens .screen img {
  height: 60vh;
  min-height: 250px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
}

.dots {
  position: absolute;
  left: 8px;
  top: 8px;
  margin-top: 9px;
  display:flex;
  list-style:none;
}

.dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-left: 2px;
  margin-right: 2px;
}

.dots .dot:hover {
  cursor: pointer;
}

.dots .dot.active {
  background-color: #FFFFFF;
}

.walkthrough-footer {
  width: 34vh;
  position: relative;
}

a.next-screen {
  position: absolute;
  right: 8px;
  top: 8px;
  text-decoration: none;
  color: #FFFFFF;
}
