/* Edge Dividers */

.section-divider-layer3{
	animation: sdl3-animation 1.6s;
}
@keyframes sdl3-animation{
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0px);
  }
}

.section-divider-layer2{
	animation: sdl2-animation 1.2s;
}
@keyframes sdl2-animation{
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0px);
  }
}

.section-divider-layer1{
	animation: sdl1-animation 1s;
}
@keyframes sdl1-animation{
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(0px);
  }
}

.section-divider-base-layer{
  transform: translateY(1px);
	animation: sdlb-animation 0.8s;
}
@keyframes sdlb-animation{
  from {
    transform: translateY(100px);
  }
  to {
    transform: translateY(1px);
  }
}