Last active
March 3, 2021 14:14
-
-
Save mariomc/9fdd6ebaf236517420c2da02822a4c29 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin sequential-opacity-animation-of-tiles { | |
| @for $i from 1 through 10 { | |
| .section-container__tray-item.animated { | |
| &:nth-of-type(#{$i}) { | |
| @for $j from 1 through 50 { | |
| .swiper-slide { | |
| // Delay the animation. Delay increases as items sequence. | |
| &:nth-of-type(#{$j}) { | |
| $animation-delay: ($i * 0.05s) + $j * 0.025s; | |
| $animation-speed: 0.5s; | |
| animation: $animation-speed cubic-bezier(0.25, 0.25, 0.25, 1.15) $animation-delay both fade-in; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| @include sequential-opacity-animation-of-tiles(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(1) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(2) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(3) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(4) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(5) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(6) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(7) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(8) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(9) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(1) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(2) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(3) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(4) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(5) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(6) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(7) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(8) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(9) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(10) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.75s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(11) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.775s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(12) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.8s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(13) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.825s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(14) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.85s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(15) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.875s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(16) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.9s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(17) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.925s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(18) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.95s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(19) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 0.975s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(20) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(21) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.025s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(22) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.05s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(23) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.075s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(24) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.1s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(25) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.125s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(26) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.15s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(27) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.175s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(28) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.2s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(29) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.225s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(30) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.25s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(31) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.275s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(32) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.3s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(33) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.325s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(34) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.35s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(35) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.375s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(36) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.4s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(37) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.425s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(38) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.45s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(39) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.475s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(40) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.5s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(41) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.525s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(42) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.55s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(43) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.575s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(44) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.6s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(45) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.625s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(46) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.65s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(47) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.675s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(48) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.7s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(49) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.725s both fade-in; | |
| } | |
| .section-container__tray-item.animated:nth-of-type(10) .swiper-slide:nth-of-type(50) { | |
| animation: 0.5s cubic-bezier(0.25, 0.25, 0.25, 1.15) 1.75s both fade-in; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "sass": { | |
| "compiler": "dart-sass/1.26.11", | |
| "extensions": {}, | |
| "syntax": "SCSS", | |
| "outputStyle": "expanded" | |
| }, | |
| "autoprefixer": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment