.structItemContainer .structItem:nth-child(20) {
animation: slideUp .4s ease;
animation-delay: 3.3s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(19) {
animation: slideUp .4s ease;
animation-delay: 3.15s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(18) {
animation: slideUp .4s ease;
animation-delay: 3s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(17) {
animation: slideUp .4s ease;
animation-delay: 2.85s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(16) {
animation: slideUp .4s ease;
animation-delay: 2.7s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(15) {
animation: slideUp .4s ease;
animation-delay: 2.55s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(14) {
animation: slideUp .4s ease;
animation-delay: 2.4s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(13) {
animation: slideUp .4s ease;
animation-delay: 2.25s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(12) {
animation: slideUp .4s ease;
animation-delay: 2.1s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(11) {
animation: slideUp .4s ease;
animation-delay: 1.95s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(10) {
animation: slideUp .4s ease;
animation-delay: 1.8s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(9) {
animation: slideUp .4s ease;
animation-delay: 1.65s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(8) {
animation: slideUp .4s ease;
animation-delay: 1.5s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(7) {
animation: slideUp .4s ease;
animation-delay: 1.35s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(6) {
animation: slideUp .4s ease;
animation-delay: 1.2s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(5) {
animation: slideUp .4s ease;
animation-delay: 1.05s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(4) {
animation: slideUp .4s ease;
animation-delay: .9s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(3) {
animation: slideUp .4s ease;
animation-delay: .75s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(2) {
animation: slideUp .4s ease;
animation-delay: .6s;
animation-fill-mode: backwards
}
.structItemContainer .structItem:nth-child(1) {
animation: slideUp .4s ease;
animation-delay: .45s;
animation-fill-mode: backwards
}
@keyframes slideUp {
from {
transform: translatey(30px);
opacity: 0;
}
to {
transform: translatey(0px);
opacity: 1;
}
}