@font-face {
    font-family: 'BonaNova';
    src: url('../fonts/BonaNovaSC-Bold.ttf'),
}

:root {
    --scrollbar-bg: #4b3833;
    --scrollbar-thumb: #5e2f23;
    --scrollbar-thumb-hover: #662515;
}

html,
body {
    background-size: cover;
    position: relative;
    display: block;
    margin: 0 auto;
    overflow-x: hidden;
    min-height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'BonaNova';
    padding: unset !important;
}

.cloud {
    position: absolute;
    max-width: 559px;
    width: 28vw;
    z-index: 2;

}

.cloud.cloud1 {
    left: 0vw;
    top: 34vw;
}

.cloud.cloud2 {
    transform: scaleX(-1);
    right: 0;
    top: 34vw;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

.nav-brand>img {
    opacity: 0;
    width: 9vw;
}

.nav-brand {
    pointer-events: none;
}

.nav-roc>img {
    max-width: 150px;
    width: 6vw;
}

.nav-left,
.nav-right {
    flex: 1;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 50px;
}

.navbar.custom-navbar {
    position: fixed;
    max-width: 100vw;
    width: 100%;
    z-index: 1030;
}

.nav-link {
    margin: 0 42px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    transition-duration: 0.3s;

}

.nav-link:hover {
    color: #133b76;
    text-shadow: 1px 1px 1px #000000;
}

.nav-link.active {
    color: #133b76;
    text-shadow: 1px 1px 1px #000000;
}

.nav-side {
    border: rgb(255, 255, 255) 2px solid;
    border-radius: 40px;
    transition: color 0.3s ease;
}

.nav-side::before,
.nav-side::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #312b2a5c;
    z-index: -1;
    transition: width 0.5s ease-out;
    border-radius: 40px;
}

.nav-side::before {
    left: 0;
}

.nav-side::after {
    right: 0;
}

.nav-side.scrolled::before,
.nav-side.scrolled::after {
    width: 100%;
}

/* Di resolusi besar seperti 2560px */
@media (min-width: 1920px) {
    .nav-link {
        margin: 0 60px;
        /* Tambah jarak antar link */
        font-size: 1.1rem;
        /* Perbesar font sedikit */
    }

    .nav-brand>img {
        width: 7vw;
        /* Lebih proporsional untuk resolusi besar */
    }
}

@media (max-width: 1000px) {
    .navbar-nav {
        display: none !important;
    }

    .nav-brand>img {
        width: 21vw !important;
        /* Lebih proporsional untuk resolusi besar */
    }

    .custom-navbar {
        top: 0;
        width: 0%;
        background-color: #312b2a5c;
        position: absolute;
        margin-top: 0 !important;
        overflow: hidden;
        transition: width 0.5s ease;
    }


    .navbar.custom-navbar {
        position: fixed;
        max-width: 100vw;
        width: 0 !important;
        z-index: 1030;
    }

    .navbar.custom-navbar.active {
        width: 100% !important;

    }
}

@media (max-width: 1266px) {
    .navbar.custom-navbar {
        padding: 10px 24px;
    }

    .nav-brand>img {
        width: 12vw;
        /* lebih kecil dari desktop */
    }

    .nav-link {
        margin: 1px 24px;
        font-size: 0.8rem;
    }

    .nav-side {
        border-width: 1.5px;
        padding: 4px 10px;
    }
}

@media (max-width: 767px) {
    .nav-brand>img {
        opacity: 1;
    }

    .nav-brand {
        pointer-events: all;
    }
}

/* SECTION 1 */

.ggl-roc-section-1 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 55vw;
    overflow: hidden;
}

.ggl-roc-section-1-bg-d {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-1-bg-m {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-1-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    transform: scale(1.2);
}

.logo-float {
    position: relative;
    top: 2vw;
    animation: floatLogo 4s ease-in-out infinite;
}

.ggl-roc-section-1-logopvp {
    position: absolute;
    max-width: 999px;
    width: 49vw;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /* penting supaya gambar di atas auranya */
}

.ggl-roc-section-1-logopvp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 0, 255, 0.678) 0%, rgba(0, 60, 255, 0) 70%);
    filter: blur(40px);
    animation: auraBlue 7s ease-in-out infinite;
    z-index: -1;
}

.ggl-roc-section-1-logopvp img {
    width: 100%;
    display: block;
}

.ggl-roc-section-1-roclogo {
    opacity: 1;
    position: fixed;
    z-index: -1;
    max-width: 1918px;
    width: 15vw;
    top: 7vw;
    filter: drop-shadow(2px 13px 10px black);
    transition: all 0.4s ease;
}

body.scrolled .ggl-roc-section-1-roclogo {
    opacity: 0;
    transform: translateY(0);
}

.ggl-roc-section-1-tagline {
    position: absolute;
    max-width: 609px;
    width: 30vw;
    top: 87%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.char-container {
    position: absolute;
    width: 38vw;
    top: 1vw;
    z-index: 1;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }

}

.char1 {
    left: -5vw;
}

.char2 {
    right: -5vw;
}

/* Gambar karakter */
.char-container img {
    width: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.8s ease;
}

.char-container img:hover {
    transform: scale(1.07);
}

.char1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 217, 0, 0.6) 0%, rgba(255, 251, 0, 0) 70%);
    filter: blur(40px);
    animation: auraYellow 7s ease-in-out infinite;
    z-index: 0;
}

/* Aura karakter kanan (merah) */
.char2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.6) 0%, rgba(255, 77, 0, 0) 70%);
    filter: blur(40px);
    animation: auraRed 7s ease-in-out infinite;
    z-index: 0;
}

@keyframes auraYellow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes auraRed {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}


@keyframes auraBlue {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-1 {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-1-content {
        position: relative;
        z-index: 2;
        height: 177vw;
    }

    .ggl-roc-section-1-roclogo {
        width: 48vw;
        top: 24vw;
        transition: all 0.4s ease;
    }

    .logo {
        transform: scale(1.1);
    }

    .logo-float {
        top: 49vw;
    }

    .ggl-roc-section-1-logopvp {
        max-width: 999px;
        width: 77vw;
        top: 73%;
    }

    .ggl-roc-section-1-tagline {
        width: 67vw;
        top: 87%;
    }
}

/* Section 2 */
.ggl-roc-section-2 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 55.2vw;
    overflow: hidden;
}

.ggl-roc-section-2-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-2-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: -2vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-2-detail {
    position: absolute;
    max-width: 773px;
    width: 34vw;
    left: 8vw;
    top: 7vw;
}

.ggl-roc-section-2-btn-more {
    position: absolute;
    max-width: 330px;
    width: 13vw;
    bottom: 12vw;
    left: 18vw;
    transition: all 0.8s ease;
    cursor: pointer;
}

.ggl-roc-section-2-btn-more:hover {
    transform: scale(0.9);
}

@media (min-width: 2560px) {
    .ggl-roc-section-2-btn-more {
        bottom: 16vw;
        left: 16.3vw;
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-2 {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        min-height: auto;
        height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-2-content {
        position: relative;
        z-index: 2;
        height: 177vw;
    }

    .ggl-roc-section-2-detail {
        width: 78vw;
        left: 11vw;
        top: 7vw;
    }

    .ggl-roc-section-2-btn-more {
        width: 40vw;
        bottom: 80vw;
        left: 29vw;
    }

    .ggl-roc-section-5 {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 177vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-5-content {
        position: relative;
        z-index: 2;
        height: 177vw !important;
    }


    .ggl-roc-section-5-final-banner-wrapper {
        width: 86vw;
        max-width: none;
    }


    .ggl-roc-section-5-bracket-img.final-banner {
        width: 171vw;
    }
}

/* Section 3 */
.ggl-roc-section-3 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 55.7vw;
    overflow: hidden;
    /* z-index: 1; */
}

.ggl-roc-section-3-bg {
    width: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-3-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: -2.6vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-3-title {
    position: absolute;
    max-width: 641vw;
    width: 37vw;
    top: 14%;
    left: 33%;
    padding-bottom: 5vw;
}

.ggl-roc-section-3-j-bg {
    position: absolute;
    width: 39%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: filter 0.3s ease;
}

.ggl-roc-section-3-j-bg.hovered {
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.26));
}

.ggl-roc-section-3-j-bg-m {
    position: absolute;
    max-width: 1080px;
    width: 100%;
    z-index: -1;
}

.j2-bg {
    left: 19%;
}

.j1-bg {
    left: 51%;
}

.j3-bg {
    right: -20%;
}

.ggl-roc-section-3-btn-detail-hadiah {
    position: absolute;
    cursor: pointer;
    max-width: 330px;
    width: 16vw;
    top: 81%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: filter 0.3s ease;
}

.ggl-roc-section-3-btn-detail-hadiah:hover {
    filter: drop-shadow(2px 4px 6px black);
}


.ggl-roc-section-3-reward-container {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 33%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* wrapper yang membungkus popup dan tombol */
.ggl-roc-section-3-reward-popup-wrapper {
    position: relative;
    display: inline-block;
}

/* gambar popup */
.ggl-roc-section-3-reward-popup {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    filter: drop-shadow(2px 4px 6px black);
    transition: transform 0.3s ease;
}

/* tombol back */
.ggl-roc-section-3-reward-popup-btn-back {
    position: absolute;
    top: 60px;
    left: -16px;
    width: 15vw;
    z-index: 1;
    max-width: 236px;
    cursor: pointer;
    filter: drop-shadow(2px 4px 6px black);
    transition-duration: 0.3s;
}

.ggl-roc-section-3-reward-popup-btn-back:hover {
    transform: scale(0.9);
}

.trophy-desktop {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 13vw;
    flex-wrap: wrap;
}

.trophy-mobile {
    display: none !important;
    justify-content: center;
    align-items: flex-end;
    gap: 13vw;
    flex-wrap: wrap;
}

.trophy {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.trophy-1 {
    max-width: 411px;
    width: 20vw;
}

.trophy-2,
.trophy-3 {
    max-width: 411px;
    width: 18vw;
}

.trophy:hover {
    transform: scale(1.1);
}

@media (min-width: 1242px) and (max-width: 1919px) {
    .ggl-roc-section-3-line2 {
        width: 15%;
        margin: 0 0vw !important;
    }
}

/* Di atas 1920px */
@media (min-width: 1920px) {
    .ggl-roc-section-3-line2 {
        width: 15%;
        margin: 0 0.5vw !important;
    }
}

@media (min-width: 992px) {
    .ggl-roc-section-3-trophy1 {
        width: 28%;
        /* Juara 1 lebih besar */
    }

    .ggl-roc-section-3-line2 {
        width: 15%;
        /* Juara 2-5 lebih besar dari sebelumnya */
        margin: 0 -0.5vw
    }
}

@media (max-width: 991px) {
    .ggl-roc-section-3-trophy1 {
        width: 60%;
        margin-bottom: 2vw;
    }

    .ggl-roc-section-3-line2 {
        width: 46%;
        margin: -3vw;
        margin: 0 -0.5vw;
    }
}

@media (max-width: 767px) {
    .trophy-desktop {
        display: none !important;
    }

    .trophy-mobile {
        display: flex !important;
    }

    .ggl-roc-section-3 {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 177vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-3-content {
        position: relative;
        z-index: 2;
        height: 171vw !important;
    }

    .ggl-roc-section-3-title {
        width: 65vw;
        top: 7%;
        left: 18%;
    }

    .ggl-roc-section-3-tagline-img {
        width: 73vw;
    }

    .ggl-roc-section-3-btn-reward-img {
        width: 46vw;
    }

    .ggl-roc-section-3-line2 {
        margin: -2vw;
    }

    .trophy-1,
    .trophy-2,
    .trophy-3 {
        width: 34vw;
    }

    .ggl-roc-section-3-btn-detail-hadiah {
        width: 37vw;
        top: 98%;
    }

    .ggl-roc-section-3-reward-popup-btn-back {
        top: 41px;
        left: -9px;
        width: 28vw;
    }
}

@media (max-width: 358px) {
    .ggl-roc-section-3-btn-back {
        top: 21px;
        left: 23px;
        width: 75px;
        height: 17px;
    }
}

/* Section 4 */
.ggl-roc-section-4 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    overflow: hidden;
    height: 55.8vw;
    /* margin-top: 9%; */
    /* z-index: 1; */
}

.ggl-roc-section-4-title {
    position: absolute;
    max-width: 691px;
    width: 37vw;
    top: 5vw;
}

.ggl-roc-section-4-bg-d {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    z-index: -1;
}

.ggl-roc-section-4-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-4-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 4vw;
    left: 0;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
    margin-top: -1vw;
}

.ggl-roc-section-4-point-select-wrapper {
    position: absolute;
    top: 19vw;
}

.ggl-roc-section-4-point {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #1f4471;
    color: #ffffff;
    font-size: 23px;
    letter-spacing: 5px;
    padding: 1vw 5vw 1vw 5vw;
    /* border: 1px solid #ffb700; */
    border-radius: 53px;
    display: block;
    margin: 0 auto;
    background-image: url(../images/teaser/pvpmidgard/page4/arrow.png);
    background-repeat: no-repeat;
    background-position: 94% center;
    background-size: 19px;
    padding-left: 52px;
    max-width: 100%;
    width: 100%;
    cursor: pointer;
    box-sizing: border-box !important;
}


.ggl-roc-section-4-point option {
    background-color: #1f4471;
    color: #ffffff;
    cursor: pointer;
}


.ggl-roc-section-4-point-img .ggl-roc-section-4-point-img-var {
    max-width: 626px;
    width: 27vw;
}

#ggl-roc-section-4-point-img-display {
    position: absolute;
    max-width: 1140px;
    width: 53vw;
    bottom: 8vw;
}

.ggl-roc-section-4-wrap-arrow {
    position: absolute;
    top: 37vw;
    display: flex;
    justify-content: center;
    gap: 79vw;
}

@media (max-width: 767px) {
    .ggl-roc-section-4-title {
        width: 73vw;
        top: 51vw;
    }

    .ggl-roc-section-4-point {
        background-size: 12px !important;

    }

    .ggl-roc-section-4 {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        height: 177vw !important;
        min-height: auto;
        margin-top: 0 !important;
    }

    .ggl-roc-section-4-content {
        position: relative;
        z-index: 2;
        height: 177vw !important;
    }

    #ggl-roc-section-4-point-img-display {
        width: 89vw;
        bottom: 46vw;
    }

    .ggl-roc-section-4-point-select-wrapper {
        top: 79vw;
    }

    .ggl-roc-section-4-point {
        padding: 1vw 7vw 1vw 6vw !important;
        font-size: 14px !important;
    }
}

/* Section 5 */
.ggl-roc-section-5 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 51vw;
    overflow: hidden;
}

.ggl-roc-section-5-title {
    position: absolute;
    max-width: 687px;
    width: 28vw;
    top: 3vw;
}

.ggl-roc-section-5-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-5-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 2vw;
    /* top: 6vw; */
    /* di uncommand pas section 8 udh dibuka */
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-5-content p {
    letter-spacing: 1px;
    color: #1d3f78;
    font-size: 3rem;
    margin-top: -2vw;
}

.ggl-roc-section-5-bracket-wrapper {
    overflow: auto;
    margin-top: 11vw;
    width: 63%;
    height: 29vw;
    max-width: none;

    scrollbar-width: thin;
    scrollbar-color: #1a3569 #7b8593bf;
}

.ggl-roc-section-5-bracket-img {
    width: 100%;
}

@media (max-width: 767px) {
    .ggl-roc-section-5-title {
        width: 59vw;
        top: 6vw;
    }

    .ggl-roc-section-5-bracket-wrapper {
        width: 86vw;
        height: 97%;
        margin-top: 30vw;
        max-width: none;
    }

    .ggl-roc-section-5-bracket-img {
        width: 170vw;
    }
}

/* FOOTER */
.btn-to-top {
    text-align: right;
    cursor: pointer;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: none;
    z-index: 999;
    /*padding-right: 1vw;*/
}

.btn-to-top img {
    width: 60%;
    max-width: 125px;
}

footer {
    background-color: #252525;
    border-top: 5px solid #418dd9;
    background-size: cover;
    position: relative;
    /* z-index: 3; */
}

.row-logo {
    padding-top: 2vw;
    padding-bottom: 3vw;
}

.sosmed a {
    color: #fff;
    font-size: 24pt;
    margin-right: 1vw;
    transition-duration: 0.3s;
}

.sosmed a:hover {
    color: #fa9e25;
}

.ggl-logo {
    margin-right: 2vw;
    padding-top: 1vw;
}

.ggl-info {
    padding-top: 2vw;
    font-weight: bold;
    color: #ffe;
}

@media (max-width: 768px) {
    .ggl-info {
        font-size: 0.9rem;
    }
}

.ag-format-container {
    width: 1142px;
    margin: 0 auto;
}

.ag-fireflies_box {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ag-fireflies_item {
    position: absolute;
    -webkit-transform: translateY(-10vh);
    transform: translateY(-10vh);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.ag-fireflies_item:nth-child(1) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-1;
    animation-name: an-move-frames-1;
    -webkit-animation-duration: 30836ms;
    animation-duration: 30836ms;
    -webkit-animation-delay: 36509ms;
    animation-delay: 36509ms;
}

@-webkit-keyframes an-move-frames-1 {
    from {
        -webkit-transform: translate3d(38vw, 103vh, 0);
        transform: translate3d(38vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(6vw, -126vh, 0);
        transform: translate3d(6vw, -126vh, 0);
    }
}

@keyframes an-move-frames-1 {
    from {
        -webkit-transform: translate3d(38vw, 103vh, 0);
        transform: translate3d(38vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(6vw, -126vh, 0);
        transform: translate3d(6vw, -126vh, 0);
    }
}

.ag-fireflies_item:nth-child(1) .ag-fireflies_inner {
    -webkit-animation-delay: 2643ms;
    animation-delay: 2643ms;
}

.ag-fireflies_item:nth-child(2) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-2;
    animation-name: an-move-frames-2;
    -webkit-animation-duration: 36977ms;
    animation-duration: 36977ms;
    -webkit-animation-delay: 18420ms;
    animation-delay: 18420ms;
}

@-webkit-keyframes an-move-frames-2 {
    from {
        -webkit-transform: translate3d(45vw, 109vh, 0);
        transform: translate3d(45vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -116vh, 0);
        transform: translate3d(11vw, -116vh, 0);
    }
}

@keyframes an-move-frames-2 {
    from {
        -webkit-transform: translate3d(45vw, 109vh, 0);
        transform: translate3d(45vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -116vh, 0);
        transform: translate3d(11vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(2) .ag-fireflies_inner {
    -webkit-animation-delay: 640ms;
    animation-delay: 640ms;
}

.ag-fireflies_item:nth-child(3) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-3;
    animation-name: an-move-frames-3;
    -webkit-animation-duration: 34091ms;
    animation-duration: 34091ms;
    -webkit-animation-delay: 27559ms;
    animation-delay: 27559ms;
}

@-webkit-keyframes an-move-frames-3 {
    from {
        -webkit-transform: translate3d(2vw, 103vh, 0);
        transform: translate3d(2vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -123vh, 0);
        transform: translate3d(94vw, -123vh, 0);
    }
}

@keyframes an-move-frames-3 {
    from {
        -webkit-transform: translate3d(2vw, 103vh, 0);
        transform: translate3d(2vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -123vh, 0);
        transform: translate3d(94vw, -123vh, 0);
    }
}

.ag-fireflies_item:nth-child(3) .ag-fireflies_inner {
    -webkit-animation-delay: 1414ms;
    animation-delay: 1414ms;
}

.ag-fireflies_item:nth-child(4) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-4;
    animation-name: an-move-frames-4;
    -webkit-animation-duration: 36598ms;
    animation-duration: 36598ms;
    -webkit-animation-delay: 14589ms;
    animation-delay: 14589ms;
}

@-webkit-keyframes an-move-frames-4 {
    from {
        -webkit-transform: translate3d(64vw, 103vh, 0);
        transform: translate3d(64vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -133vh, 0);
        transform: translate3d(60vw, -133vh, 0);
    }
}

@keyframes an-move-frames-4 {
    from {
        -webkit-transform: translate3d(64vw, 103vh, 0);
        transform: translate3d(64vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -133vh, 0);
        transform: translate3d(60vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(4) .ag-fireflies_inner {
    -webkit-animation-delay: 3343ms;
    animation-delay: 3343ms;
}

.ag-fireflies_item:nth-child(5) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-5;
    animation-name: an-move-frames-5;
    -webkit-animation-duration: 34524ms;
    animation-duration: 34524ms;
    -webkit-animation-delay: 4224ms;
    animation-delay: 4224ms;
}

@-webkit-keyframes an-move-frames-5 {
    from {
        -webkit-transform: translate3d(51vw, 104vh, 0);
        transform: translate3d(51vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -121vh, 0);
        transform: translate3d(20vw, -121vh, 0);
    }
}

@keyframes an-move-frames-5 {
    from {
        -webkit-transform: translate3d(51vw, 104vh, 0);
        transform: translate3d(51vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -121vh, 0);
        transform: translate3d(20vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(5) .ag-fireflies_inner {
    -webkit-animation-delay: 1651ms;
    animation-delay: 1651ms;
}

.ag-fireflies_item:nth-child(6) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-6;
    animation-name: an-move-frames-6;
    -webkit-animation-duration: 30761ms;
    animation-duration: 30761ms;
    -webkit-animation-delay: 5863ms;
    animation-delay: 5863ms;
}

@-webkit-keyframes an-move-frames-6 {
    from {
        -webkit-transform: translate3d(44vw, 101vh, 0);
        transform: translate3d(44vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -109vh, 0);
        transform: translate3d(31vw, -109vh, 0);
    }
}

@keyframes an-move-frames-6 {
    from {
        -webkit-transform: translate3d(44vw, 101vh, 0);
        transform: translate3d(44vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -109vh, 0);
        transform: translate3d(31vw, -109vh, 0);
    }
}

.ag-fireflies_item:nth-child(6) .ag-fireflies_inner {
    -webkit-animation-delay: 942ms;
    animation-delay: 942ms;
}

.ag-fireflies_item:nth-child(7) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-7;
    animation-name: an-move-frames-7;
    -webkit-animation-duration: 35683ms;
    animation-duration: 35683ms;
    -webkit-animation-delay: 335ms;
    animation-delay: 335ms;
}

@-webkit-keyframes an-move-frames-7 {
    from {
        -webkit-transform: translate3d(18vw, 101vh, 0);
        transform: translate3d(18vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -113vh, 0);
        transform: translate3d(11vw, -113vh, 0);
    }
}

@keyframes an-move-frames-7 {
    from {
        -webkit-transform: translate3d(18vw, 101vh, 0);
        transform: translate3d(18vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -113vh, 0);
        transform: translate3d(11vw, -113vh, 0);
    }
}

.ag-fireflies_item:nth-child(7) .ag-fireflies_inner {
    -webkit-animation-delay: 2080ms;
    animation-delay: 2080ms;
}

.ag-fireflies_item:nth-child(8) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-8;
    animation-name: an-move-frames-8;
    -webkit-animation-duration: 32920ms;
    animation-duration: 32920ms;
    -webkit-animation-delay: 20271ms;
    animation-delay: 20271ms;
}

@-webkit-keyframes an-move-frames-8 {
    from {
        -webkit-transform: translate3d(64vw, 109vh, 0);
        transform: translate3d(64vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -111vh, 0);
        transform: translate3d(14vw, -111vh, 0);
    }
}

@keyframes an-move-frames-8 {
    from {
        -webkit-transform: translate3d(64vw, 109vh, 0);
        transform: translate3d(64vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -111vh, 0);
        transform: translate3d(14vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(8) .ag-fireflies_inner {
    -webkit-animation-delay: 1390ms;
    animation-delay: 1390ms;
}

.ag-fireflies_item:nth-child(9) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-9;
    animation-name: an-move-frames-9;
    -webkit-animation-duration: 35658ms;
    animation-duration: 35658ms;
    -webkit-animation-delay: 21515ms;
    animation-delay: 21515ms;
}

@-webkit-keyframes an-move-frames-9 {
    from {
        -webkit-transform: translate3d(57vw, 110vh, 0);
        transform: translate3d(57vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -126vh, 0);
        transform: translate3d(43vw, -126vh, 0);
    }
}

@keyframes an-move-frames-9 {
    from {
        -webkit-transform: translate3d(57vw, 110vh, 0);
        transform: translate3d(57vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -126vh, 0);
        transform: translate3d(43vw, -126vh, 0);
    }
}

.ag-fireflies_item:nth-child(9) .ag-fireflies_inner {
    -webkit-animation-delay: 2381ms;
    animation-delay: 2381ms;
}

.ag-fireflies_item:nth-child(10) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-10;
    animation-name: an-move-frames-10;
    -webkit-animation-duration: 28922ms;
    animation-duration: 28922ms;
    -webkit-animation-delay: 29337ms;
    animation-delay: 29337ms;
}

@-webkit-keyframes an-move-frames-10 {
    from {
        -webkit-transform: translate3d(31vw, 110vh, 0);
        transform: translate3d(31vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -132vh, 0);
        transform: translate3d(42vw, -132vh, 0);
    }
}

@keyframes an-move-frames-10 {
    from {
        -webkit-transform: translate3d(31vw, 110vh, 0);
        transform: translate3d(31vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -132vh, 0);
        transform: translate3d(42vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(10) .ag-fireflies_inner {
    -webkit-animation-delay: 665ms;
    animation-delay: 665ms;
}

.ag-fireflies_item:nth-child(11) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-11;
    animation-name: an-move-frames-11;
    -webkit-animation-duration: 34311ms;
    animation-duration: 34311ms;
    -webkit-animation-delay: 36829ms;
    animation-delay: 36829ms;
}

@-webkit-keyframes an-move-frames-11 {
    from {
        -webkit-transform: translate3d(8vw, 102vh, 0);
        transform: translate3d(8vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(36vw, -122vh, 0);
        transform: translate3d(36vw, -122vh, 0);
    }
}

@keyframes an-move-frames-11 {
    from {
        -webkit-transform: translate3d(8vw, 102vh, 0);
        transform: translate3d(8vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(36vw, -122vh, 0);
        transform: translate3d(36vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(11) .ag-fireflies_inner {
    -webkit-animation-delay: 391ms;
    animation-delay: 391ms;
}

.ag-fireflies_item:nth-child(12) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-12;
    animation-name: an-move-frames-12;
    -webkit-animation-duration: 29298ms;
    animation-duration: 29298ms;
    -webkit-animation-delay: 7594ms;
    animation-delay: 7594ms;
}

@-webkit-keyframes an-move-frames-12 {
    from {
        -webkit-transform: translate3d(49vw, 109vh, 0);
        transform: translate3d(49vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(53vw, -114vh, 0);
        transform: translate3d(53vw, -114vh, 0);
    }
}

@keyframes an-move-frames-12 {
    from {
        -webkit-transform: translate3d(49vw, 109vh, 0);
        transform: translate3d(49vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(53vw, -114vh, 0);
        transform: translate3d(53vw, -114vh, 0);
    }
}

.ag-fireflies_item:nth-child(12) .ag-fireflies_inner {
    -webkit-animation-delay: 1354ms;
    animation-delay: 1354ms;
}

.ag-fireflies_item:nth-child(13) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-13;
    animation-name: an-move-frames-13;
    -webkit-animation-duration: 35981ms;
    animation-duration: 35981ms;
    -webkit-animation-delay: 24206ms;
    animation-delay: 24206ms;
}

@-webkit-keyframes an-move-frames-13 {
    from {
        -webkit-transform: translate3d(16vw, 109vh, 0);
        transform: translate3d(16vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -128vh, 0);
        transform: translate3d(20vw, -128vh, 0);
    }
}

@keyframes an-move-frames-13 {
    from {
        -webkit-transform: translate3d(16vw, 109vh, 0);
        transform: translate3d(16vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -128vh, 0);
        transform: translate3d(20vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(13) .ag-fireflies_inner {
    -webkit-animation-delay: 2206ms;
    animation-delay: 2206ms;
}

.ag-fireflies_item:nth-child(14) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-14;
    animation-name: an-move-frames-14;
    -webkit-animation-duration: 29364ms;
    animation-duration: 29364ms;
    -webkit-animation-delay: 11053ms;
    animation-delay: 11053ms;
}

@-webkit-keyframes an-move-frames-14 {
    from {
        -webkit-transform: translate3d(70vw, 109vh, 0);
        transform: translate3d(70vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(26vw, -128vh, 0);
        transform: translate3d(26vw, -128vh, 0);
    }
}

@keyframes an-move-frames-14 {
    from {
        -webkit-transform: translate3d(70vw, 109vh, 0);
        transform: translate3d(70vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(26vw, -128vh, 0);
        transform: translate3d(26vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(14) .ag-fireflies_inner {
    -webkit-animation-delay: 2037ms;
    animation-delay: 2037ms;
}

.ag-fireflies_item:nth-child(15) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-15;
    animation-name: an-move-frames-15;
    -webkit-animation-duration: 32518ms;
    animation-duration: 32518ms;
    -webkit-animation-delay: 29599ms;
    animation-delay: 29599ms;
}

@-webkit-keyframes an-move-frames-15 {
    from {
        -webkit-transform: translate3d(22vw, 104vh, 0);
        transform: translate3d(22vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(49vw, -108vh, 0);
        transform: translate3d(49vw, -108vh, 0);
    }
}

@keyframes an-move-frames-15 {
    from {
        -webkit-transform: translate3d(22vw, 104vh, 0);
        transform: translate3d(22vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(49vw, -108vh, 0);
        transform: translate3d(49vw, -108vh, 0);
    }
}

.ag-fireflies_item:nth-child(15) .ag-fireflies_inner {
    -webkit-animation-delay: 2268ms;
    animation-delay: 2268ms;
}

.ag-fireflies_item:nth-child(16) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-16;
    animation-name: an-move-frames-16;
    -webkit-animation-duration: 30881ms;
    animation-duration: 30881ms;
    -webkit-animation-delay: 19913ms;
    animation-delay: 19913ms;
}

@-webkit-keyframes an-move-frames-16 {
    from {
        -webkit-transform: translate3d(16vw, 104vh, 0);
        transform: translate3d(16vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(54vw, -113vh, 0);
        transform: translate3d(54vw, -113vh, 0);
    }
}

@keyframes an-move-frames-16 {
    from {
        -webkit-transform: translate3d(16vw, 104vh, 0);
        transform: translate3d(16vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(54vw, -113vh, 0);
        transform: translate3d(54vw, -113vh, 0);
    }
}

.ag-fireflies_item:nth-child(16) .ag-fireflies_inner {
    -webkit-animation-delay: 2386ms;
    animation-delay: 2386ms;
}

.ag-fireflies_item:nth-child(17) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-17;
    animation-name: an-move-frames-17;
    -webkit-animation-duration: 35171ms;
    animation-duration: 35171ms;
    -webkit-animation-delay: 32356ms;
    animation-delay: 32356ms;
}

@-webkit-keyframes an-move-frames-17 {
    from {
        -webkit-transform: translate3d(36vw, 104vh, 0);
        transform: translate3d(36vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -124vh, 0);
        transform: translate3d(60vw, -124vh, 0);
    }
}

@keyframes an-move-frames-17 {
    from {
        -webkit-transform: translate3d(36vw, 104vh, 0);
        transform: translate3d(36vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -124vh, 0);
        transform: translate3d(60vw, -124vh, 0);
    }
}

.ag-fireflies_item:nth-child(17) .ag-fireflies_inner {
    -webkit-animation-delay: 1050ms;
    animation-delay: 1050ms;
}

.ag-fireflies_item:nth-child(18) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-18;
    animation-name: an-move-frames-18;
    -webkit-animation-duration: 31120ms;
    animation-duration: 31120ms;
    -webkit-animation-delay: 30228ms;
    animation-delay: 30228ms;
}

@-webkit-keyframes an-move-frames-18 {
    from {
        -webkit-transform: translate3d(18vw, 102vh, 0);
        transform: translate3d(18vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(41vw, -104vh, 0);
        transform: translate3d(41vw, -104vh, 0);
    }
}

@keyframes an-move-frames-18 {
    from {
        -webkit-transform: translate3d(18vw, 102vh, 0);
        transform: translate3d(18vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(41vw, -104vh, 0);
        transform: translate3d(41vw, -104vh, 0);
    }
}

.ag-fireflies_item:nth-child(18) .ag-fireflies_inner {
    -webkit-animation-delay: 532ms;
    animation-delay: 532ms;
}

.ag-fireflies_item:nth-child(19) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-19;
    animation-name: an-move-frames-19;
    -webkit-animation-duration: 36883ms;
    animation-duration: 36883ms;
    -webkit-animation-delay: 15381ms;
    animation-delay: 15381ms;
}

@-webkit-keyframes an-move-frames-19 {
    from {
        -webkit-transform: translate3d(96vw, 109vh, 0);
        transform: translate3d(96vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -119vh, 0);
        transform: translate3d(93vw, -119vh, 0);
    }
}

@keyframes an-move-frames-19 {
    from {
        -webkit-transform: translate3d(96vw, 109vh, 0);
        transform: translate3d(96vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -119vh, 0);
        transform: translate3d(93vw, -119vh, 0);
    }
}

.ag-fireflies_item:nth-child(19) .ag-fireflies_inner {
    -webkit-animation-delay: 712ms;
    animation-delay: 712ms;
}

.ag-fireflies_item:nth-child(20) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-20;
    animation-name: an-move-frames-20;
    -webkit-animation-duration: 28164ms;
    animation-duration: 28164ms;
    -webkit-animation-delay: 20151ms;
    animation-delay: 20151ms;
}

@-webkit-keyframes an-move-frames-20 {
    from {
        -webkit-transform: translate3d(69vw, 105vh, 0);
        transform: translate3d(69vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -134vh, 0);
        transform: translate3d(8vw, -134vh, 0);
    }
}

@keyframes an-move-frames-20 {
    from {
        -webkit-transform: translate3d(69vw, 105vh, 0);
        transform: translate3d(69vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -134vh, 0);
        transform: translate3d(8vw, -134vh, 0);
    }
}

.ag-fireflies_item:nth-child(20) .ag-fireflies_inner {
    -webkit-animation-delay: 765ms;
    animation-delay: 765ms;
}

.ag-fireflies_item:nth-child(21) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-21;
    animation-name: an-move-frames-21;
    -webkit-animation-duration: 33848ms;
    animation-duration: 33848ms;
    -webkit-animation-delay: 33743ms;
    animation-delay: 33743ms;
}

@-webkit-keyframes an-move-frames-21 {
    from {
        -webkit-transform: translate3d(24vw, 107vh, 0);
        transform: translate3d(24vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(4vw, -128vh, 0);
        transform: translate3d(4vw, -128vh, 0);
    }
}

@keyframes an-move-frames-21 {
    from {
        -webkit-transform: translate3d(24vw, 107vh, 0);
        transform: translate3d(24vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(4vw, -128vh, 0);
        transform: translate3d(4vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(21) .ag-fireflies_inner {
    -webkit-animation-delay: 210ms;
    animation-delay: 210ms;
}

.ag-fireflies_item:nth-child(22) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-22;
    animation-name: an-move-frames-22;
    -webkit-animation-duration: 31170ms;
    animation-duration: 31170ms;
    -webkit-animation-delay: 15178ms;
    animation-delay: 15178ms;
}

@-webkit-keyframes an-move-frames-22 {
    from {
        -webkit-transform: translate3d(100vw, 110vh, 0);
        transform: translate3d(100vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(33vw, -140vh, 0);
        transform: translate3d(33vw, -140vh, 0);
    }
}

@keyframes an-move-frames-22 {
    from {
        -webkit-transform: translate3d(100vw, 110vh, 0);
        transform: translate3d(100vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(33vw, -140vh, 0);
        transform: translate3d(33vw, -140vh, 0);
    }
}

.ag-fireflies_item:nth-child(22) .ag-fireflies_inner {
    -webkit-animation-delay: 1880ms;
    animation-delay: 1880ms;
}

.ag-fireflies_item:nth-child(23) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-23;
    animation-name: an-move-frames-23;
    -webkit-animation-duration: 36460ms;
    animation-duration: 36460ms;
    -webkit-animation-delay: 18779ms;
    animation-delay: 18779ms;
}

@-webkit-keyframes an-move-frames-23 {
    from {
        -webkit-transform: translate3d(75vw, 110vh, 0);
        transform: translate3d(75vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(100vw, -120vh, 0);
        transform: translate3d(100vw, -120vh, 0);
    }
}

@keyframes an-move-frames-23 {
    from {
        -webkit-transform: translate3d(75vw, 110vh, 0);
        transform: translate3d(75vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(100vw, -120vh, 0);
        transform: translate3d(100vw, -120vh, 0);
    }
}

.ag-fireflies_item:nth-child(23) .ag-fireflies_inner {
    -webkit-animation-delay: 3461ms;
    animation-delay: 3461ms;
}

.ag-fireflies_item:nth-child(24) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-24;
    animation-name: an-move-frames-24;
    -webkit-animation-duration: 36465ms;
    animation-duration: 36465ms;
    -webkit-animation-delay: 24124ms;
    animation-delay: 24124ms;
}

@-webkit-keyframes an-move-frames-24 {
    from {
        -webkit-transform: translate3d(27vw, 106vh, 0);
        transform: translate3d(27vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -134vh, 0);
        transform: translate3d(94vw, -134vh, 0);
    }
}

@keyframes an-move-frames-24 {
    from {
        -webkit-transform: translate3d(27vw, 106vh, 0);
        transform: translate3d(27vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -134vh, 0);
        transform: translate3d(94vw, -134vh, 0);
    }
}

.ag-fireflies_item:nth-child(24) .ag-fireflies_inner {
    -webkit-animation-delay: 724ms;
    animation-delay: 724ms;
}

.ag-fireflies_item:nth-child(25) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-25;
    animation-name: an-move-frames-25;
    -webkit-animation-duration: 32518ms;
    animation-duration: 32518ms;
    -webkit-animation-delay: 5397ms;
    animation-delay: 5397ms;
}

@-webkit-keyframes an-move-frames-25 {
    from {
        -webkit-transform: translate3d(84vw, 110vh, 0);
        transform: translate3d(84vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(25vw, -118vh, 0);
        transform: translate3d(25vw, -118vh, 0);
    }
}

@keyframes an-move-frames-25 {
    from {
        -webkit-transform: translate3d(84vw, 110vh, 0);
        transform: translate3d(84vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(25vw, -118vh, 0);
        transform: translate3d(25vw, -118vh, 0);
    }
}

.ag-fireflies_item:nth-child(25) .ag-fireflies_inner {
    -webkit-animation-delay: 3298ms;
    animation-delay: 3298ms;
}

.ag-fireflies_item:nth-child(26) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-26;
    animation-name: an-move-frames-26;
    -webkit-animation-duration: 31825ms;
    animation-duration: 31825ms;
    -webkit-animation-delay: 36590ms;
    animation-delay: 36590ms;
}

@-webkit-keyframes an-move-frames-26 {
    from {
        -webkit-transform: translate3d(36vw, 101vh, 0);
        transform: translate3d(36vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(2vw, -108vh, 0);
        transform: translate3d(2vw, -108vh, 0);
    }
}

@keyframes an-move-frames-26 {
    from {
        -webkit-transform: translate3d(36vw, 101vh, 0);
        transform: translate3d(36vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(2vw, -108vh, 0);
        transform: translate3d(2vw, -108vh, 0);
    }
}

.ag-fireflies_item:nth-child(26) .ag-fireflies_inner {
    -webkit-animation-delay: 817ms;
    animation-delay: 817ms;
}

.ag-fireflies_item:nth-child(27) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-27;
    animation-name: an-move-frames-27;
    -webkit-animation-duration: 29850ms;
    animation-duration: 29850ms;
    -webkit-animation-delay: 32641ms;
    animation-delay: 32641ms;
}

@-webkit-keyframes an-move-frames-27 {
    from {
        -webkit-transform: translate3d(56vw, 102vh, 0);
        transform: translate3d(56vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(67vw, -105vh, 0);
        transform: translate3d(67vw, -105vh, 0);
    }
}

@keyframes an-move-frames-27 {
    from {
        -webkit-transform: translate3d(56vw, 102vh, 0);
        transform: translate3d(56vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(67vw, -105vh, 0);
        transform: translate3d(67vw, -105vh, 0);
    }
}

.ag-fireflies_item:nth-child(27) .ag-fireflies_inner {
    -webkit-animation-delay: 1862ms;
    animation-delay: 1862ms;
}

.ag-fireflies_item:nth-child(28) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-28;
    animation-name: an-move-frames-28;
    -webkit-animation-duration: 31107ms;
    animation-duration: 31107ms;
    -webkit-animation-delay: 28831ms;
    animation-delay: 28831ms;
}

@-webkit-keyframes an-move-frames-28 {
    from {
        -webkit-transform: translate3d(61vw, 109vh, 0);
        transform: translate3d(61vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -110vh, 0);
        transform: translate3d(87vw, -110vh, 0);
    }
}

@keyframes an-move-frames-28 {
    from {
        -webkit-transform: translate3d(61vw, 109vh, 0);
        transform: translate3d(61vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -110vh, 0);
        transform: translate3d(87vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(28) .ag-fireflies_inner {
    -webkit-animation-delay: 154ms;
    animation-delay: 154ms;
}

.ag-fireflies_item:nth-child(29) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-29;
    animation-name: an-move-frames-29;
    -webkit-animation-duration: 35404ms;
    animation-duration: 35404ms;
    -webkit-animation-delay: 3439ms;
    animation-delay: 3439ms;
}

@-webkit-keyframes an-move-frames-29 {
    from {
        -webkit-transform: translate3d(98vw, 108vh, 0);
        transform: translate3d(98vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(80vw, -111vh, 0);
        transform: translate3d(80vw, -111vh, 0);
    }
}

@keyframes an-move-frames-29 {
    from {
        -webkit-transform: translate3d(98vw, 108vh, 0);
        transform: translate3d(98vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(80vw, -111vh, 0);
        transform: translate3d(80vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(29) .ag-fireflies_inner {
    -webkit-animation-delay: 3868ms;
    animation-delay: 3868ms;
}

.ag-fireflies_item:nth-child(30) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-30;
    animation-name: an-move-frames-30;
    -webkit-animation-duration: 36937ms;
    animation-duration: 36937ms;
    -webkit-animation-delay: 5982ms;
    animation-delay: 5982ms;
}

@-webkit-keyframes an-move-frames-30 {
    from {
        -webkit-transform: translate3d(9vw, 106vh, 0);
        transform: translate3d(9vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(81vw, -125vh, 0);
        transform: translate3d(81vw, -125vh, 0);
    }
}

@keyframes an-move-frames-30 {
    from {
        -webkit-transform: translate3d(9vw, 106vh, 0);
        transform: translate3d(9vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(81vw, -125vh, 0);
        transform: translate3d(81vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(30) .ag-fireflies_inner {
    -webkit-animation-delay: 2174ms;
    animation-delay: 2174ms;
}

.ag-fireflies_item:nth-child(31) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-31;
    animation-name: an-move-frames-31;
    -webkit-animation-duration: 34865ms;
    animation-duration: 34865ms;
    -webkit-animation-delay: 5067ms;
    animation-delay: 5067ms;
}

@-webkit-keyframes an-move-frames-31 {
    from {
        -webkit-transform: translate3d(81vw, 105vh, 0);
        transform: translate3d(81vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(90vw, -120vh, 0);
        transform: translate3d(90vw, -120vh, 0);
    }
}

@keyframes an-move-frames-31 {
    from {
        -webkit-transform: translate3d(81vw, 105vh, 0);
        transform: translate3d(81vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(90vw, -120vh, 0);
        transform: translate3d(90vw, -120vh, 0);
    }
}

.ag-fireflies_item:nth-child(31) .ag-fireflies_inner {
    -webkit-animation-delay: 2344ms;
    animation-delay: 2344ms;
}

.ag-fireflies_item:nth-child(32) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-32;
    animation-name: an-move-frames-32;
    -webkit-animation-duration: 32361ms;
    animation-duration: 32361ms;
    -webkit-animation-delay: 498ms;
    animation-delay: 498ms;
}

@-webkit-keyframes an-move-frames-32 {
    from {
        -webkit-transform: translate3d(70vw, 106vh, 0);
        transform: translate3d(70vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -132vh, 0);
        transform: translate3d(24vw, -132vh, 0);
    }
}

@keyframes an-move-frames-32 {
    from {
        -webkit-transform: translate3d(70vw, 106vh, 0);
        transform: translate3d(70vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -132vh, 0);
        transform: translate3d(24vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(32) .ag-fireflies_inner {
    -webkit-animation-delay: 3741ms;
    animation-delay: 3741ms;
}

.ag-fireflies_item:nth-child(33) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-33;
    animation-name: an-move-frames-33;
    -webkit-animation-duration: 30724ms;
    animation-duration: 30724ms;
    -webkit-animation-delay: 23120ms;
    animation-delay: 23120ms;
}

@-webkit-keyframes an-move-frames-33 {
    from {
        -webkit-transform: translate3d(5vw, 110vh, 0);
        transform: translate3d(5vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(12vw, -132vh, 0);
        transform: translate3d(12vw, -132vh, 0);
    }
}

@keyframes an-move-frames-33 {
    from {
        -webkit-transform: translate3d(5vw, 110vh, 0);
        transform: translate3d(5vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(12vw, -132vh, 0);
        transform: translate3d(12vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(33) .ag-fireflies_inner {
    -webkit-animation-delay: 3889ms;
    animation-delay: 3889ms;
}

.ag-fireflies_item:nth-child(34) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-34;
    animation-name: an-move-frames-34;
    -webkit-animation-duration: 29447ms;
    animation-duration: 29447ms;
    -webkit-animation-delay: 19281ms;
    animation-delay: 19281ms;
}

@-webkit-keyframes an-move-frames-34 {
    from {
        -webkit-transform: translate3d(34vw, 103vh, 0);
        transform: translate3d(34vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(74vw, -121vh, 0);
        transform: translate3d(74vw, -121vh, 0);
    }
}

@keyframes an-move-frames-34 {
    from {
        -webkit-transform: translate3d(34vw, 103vh, 0);
        transform: translate3d(34vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(74vw, -121vh, 0);
        transform: translate3d(74vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(34) .ag-fireflies_inner {
    -webkit-animation-delay: 2647ms;
    animation-delay: 2647ms;
}

.ag-fireflies_item:nth-child(35) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-35;
    animation-name: an-move-frames-35;
    -webkit-animation-duration: 28871ms;
    animation-duration: 28871ms;
    -webkit-animation-delay: 44ms;
    animation-delay: 44ms;
}

@-webkit-keyframes an-move-frames-35 {
    from {
        -webkit-transform: translate3d(35vw, 107vh, 0);
        transform: translate3d(35vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(53vw, -133vh, 0);
        transform: translate3d(53vw, -133vh, 0);
    }
}

@keyframes an-move-frames-35 {
    from {
        -webkit-transform: translate3d(35vw, 107vh, 0);
        transform: translate3d(35vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(53vw, -133vh, 0);
        transform: translate3d(53vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(35) .ag-fireflies_inner {
    -webkit-animation-delay: 1069ms;
    animation-delay: 1069ms;
}

.ag-fireflies_item:nth-child(36) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-36;
    animation-name: an-move-frames-36;
    -webkit-animation-duration: 36591ms;
    animation-duration: 36591ms;
    -webkit-animation-delay: 19232ms;
    animation-delay: 19232ms;
}

@-webkit-keyframes an-move-frames-36 {
    from {
        -webkit-transform: translate3d(24vw, 105vh, 0);
        transform: translate3d(24vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(39vw, -123vh, 0);
        transform: translate3d(39vw, -123vh, 0);
    }
}

@keyframes an-move-frames-36 {
    from {
        -webkit-transform: translate3d(24vw, 105vh, 0);
        transform: translate3d(24vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(39vw, -123vh, 0);
        transform: translate3d(39vw, -123vh, 0);
    }
}

.ag-fireflies_item:nth-child(36) .ag-fireflies_inner {
    -webkit-animation-delay: 2251ms;
    animation-delay: 2251ms;
}

.ag-fireflies_item:nth-child(37) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-37;
    animation-name: an-move-frames-37;
    -webkit-animation-duration: 35870ms;
    animation-duration: 35870ms;
    -webkit-animation-delay: 36018ms;
    animation-delay: 36018ms;
}

@-webkit-keyframes an-move-frames-37 {
    from {
        -webkit-transform: translate3d(9vw, 106vh, 0);
        transform: translate3d(9vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -135vh, 0);
        transform: translate3d(8vw, -135vh, 0);
    }
}

@keyframes an-move-frames-37 {
    from {
        -webkit-transform: translate3d(9vw, 106vh, 0);
        transform: translate3d(9vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -135vh, 0);
        transform: translate3d(8vw, -135vh, 0);
    }
}

.ag-fireflies_item:nth-child(37) .ag-fireflies_inner {
    -webkit-animation-delay: 3925ms;
    animation-delay: 3925ms;
}

.ag-fireflies_item:nth-child(38) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-38;
    animation-name: an-move-frames-38;
    -webkit-animation-duration: 34675ms;
    animation-duration: 34675ms;
    -webkit-animation-delay: 7970ms;
    animation-delay: 7970ms;
}

@-webkit-keyframes an-move-frames-38 {
    from {
        -webkit-transform: translate3d(13vw, 108vh, 0);
        transform: translate3d(13vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(78vw, -116vh, 0);
        transform: translate3d(78vw, -116vh, 0);
    }
}

@keyframes an-move-frames-38 {
    from {
        -webkit-transform: translate3d(13vw, 108vh, 0);
        transform: translate3d(13vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(78vw, -116vh, 0);
        transform: translate3d(78vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(38) .ag-fireflies_inner {
    -webkit-animation-delay: 2900ms;
    animation-delay: 2900ms;
}

.ag-fireflies_item:nth-child(39) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-39;
    animation-name: an-move-frames-39;
    -webkit-animation-duration: 36284ms;
    animation-duration: 36284ms;
    -webkit-animation-delay: 5032ms;
    animation-delay: 5032ms;
}

@-webkit-keyframes an-move-frames-39 {
    from {
        -webkit-transform: translate3d(37vw, 104vh, 0);
        transform: translate3d(37vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(9vw, -130vh, 0);
        transform: translate3d(9vw, -130vh, 0);
    }
}

@keyframes an-move-frames-39 {
    from {
        -webkit-transform: translate3d(37vw, 104vh, 0);
        transform: translate3d(37vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(9vw, -130vh, 0);
        transform: translate3d(9vw, -130vh, 0);
    }
}

.ag-fireflies_item:nth-child(39) .ag-fireflies_inner {
    -webkit-animation-delay: 139ms;
    animation-delay: 139ms;
}

.ag-fireflies_item:nth-child(40) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-40;
    animation-name: an-move-frames-40;
    -webkit-animation-duration: 35245ms;
    animation-duration: 35245ms;
    -webkit-animation-delay: 561ms;
    animation-delay: 561ms;
}

@-webkit-keyframes an-move-frames-40 {
    from {
        -webkit-transform: translate3d(39vw, 107vh, 0);
        transform: translate3d(39vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(29vw, -135vh, 0);
        transform: translate3d(29vw, -135vh, 0);
    }
}

@keyframes an-move-frames-40 {
    from {
        -webkit-transform: translate3d(39vw, 107vh, 0);
        transform: translate3d(39vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(29vw, -135vh, 0);
        transform: translate3d(29vw, -135vh, 0);
    }
}

.ag-fireflies_item:nth-child(40) .ag-fireflies_inner {
    -webkit-animation-delay: 2995ms;
    animation-delay: 2995ms;
}

.ag-fireflies_item:nth-child(41) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-41;
    animation-name: an-move-frames-41;
    -webkit-animation-duration: 33476ms;
    animation-duration: 33476ms;
    -webkit-animation-delay: 23167ms;
    animation-delay: 23167ms;
}

@-webkit-keyframes an-move-frames-41 {
    from {
        -webkit-transform: translate3d(56vw, 106vh, 0);
        transform: translate3d(56vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(69vw, -123vh, 0);
        transform: translate3d(69vw, -123vh, 0);
    }
}

@keyframes an-move-frames-41 {
    from {
        -webkit-transform: translate3d(56vw, 106vh, 0);
        transform: translate3d(56vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(69vw, -123vh, 0);
        transform: translate3d(69vw, -123vh, 0);
    }
}

.ag-fireflies_item:nth-child(41) .ag-fireflies_inner {
    -webkit-animation-delay: 2553ms;
    animation-delay: 2553ms;
}

.ag-fireflies_item:nth-child(42) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-42;
    animation-name: an-move-frames-42;
    -webkit-animation-duration: 36551ms;
    animation-duration: 36551ms;
    -webkit-animation-delay: 8464ms;
    animation-delay: 8464ms;
}

@-webkit-keyframes an-move-frames-42 {
    from {
        -webkit-transform: translate3d(50vw, 106vh, 0);
        transform: translate3d(50vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(48vw, -125vh, 0);
        transform: translate3d(48vw, -125vh, 0);
    }
}

@keyframes an-move-frames-42 {
    from {
        -webkit-transform: translate3d(50vw, 106vh, 0);
        transform: translate3d(50vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(48vw, -125vh, 0);
        transform: translate3d(48vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(42) .ag-fireflies_inner {
    -webkit-animation-delay: 1514ms;
    animation-delay: 1514ms;
}

.ag-fireflies_item:nth-child(43) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-43;
    animation-name: an-move-frames-43;
    -webkit-animation-duration: 30314ms;
    animation-duration: 30314ms;
    -webkit-animation-delay: 16490ms;
    animation-delay: 16490ms;
}

@-webkit-keyframes an-move-frames-43 {
    from {
        -webkit-transform: translate3d(3vw, 105vh, 0);
        transform: translate3d(3vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -111vh, 0);
        transform: translate3d(42vw, -111vh, 0);
    }
}

@keyframes an-move-frames-43 {
    from {
        -webkit-transform: translate3d(3vw, 105vh, 0);
        transform: translate3d(3vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -111vh, 0);
        transform: translate3d(42vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(43) .ag-fireflies_inner {
    -webkit-animation-delay: 2882ms;
    animation-delay: 2882ms;
}

.ag-fireflies_item:nth-child(44) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-44;
    animation-name: an-move-frames-44;
    -webkit-animation-duration: 32648ms;
    animation-duration: 32648ms;
    -webkit-animation-delay: 21420ms;
    animation-delay: 21420ms;
}

@-webkit-keyframes an-move-frames-44 {
    from {
        -webkit-transform: translate3d(15vw, 107vh, 0);
        transform: translate3d(15vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(28vw, -117vh, 0);
        transform: translate3d(28vw, -117vh, 0);
    }
}

@keyframes an-move-frames-44 {
    from {
        -webkit-transform: translate3d(15vw, 107vh, 0);
        transform: translate3d(15vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(28vw, -117vh, 0);
        transform: translate3d(28vw, -117vh, 0);
    }
}

.ag-fireflies_item:nth-child(44) .ag-fireflies_inner {
    -webkit-animation-delay: 1934ms;
    animation-delay: 1934ms;
}

.ag-fireflies_item:nth-child(45) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-45;
    animation-name: an-move-frames-45;
    -webkit-animation-duration: 36314ms;
    animation-duration: 36314ms;
    -webkit-animation-delay: 4743ms;
    animation-delay: 4743ms;
}

@-webkit-keyframes an-move-frames-45 {
    from {
        -webkit-transform: translate3d(56vw, 106vh, 0);
        transform: translate3d(56vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(16vw, -127vh, 0);
        transform: translate3d(16vw, -127vh, 0);
    }
}

@keyframes an-move-frames-45 {
    from {
        -webkit-transform: translate3d(56vw, 106vh, 0);
        transform: translate3d(56vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(16vw, -127vh, 0);
        transform: translate3d(16vw, -127vh, 0);
    }
}

.ag-fireflies_item:nth-child(45) .ag-fireflies_inner {
    -webkit-animation-delay: 3071ms;
    animation-delay: 3071ms;
}

.ag-fireflies_item:nth-child(46) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-46;
    animation-name: an-move-frames-46;
    -webkit-animation-duration: 33142ms;
    animation-duration: 33142ms;
    -webkit-animation-delay: 33251ms;
    animation-delay: 33251ms;
}

@-webkit-keyframes an-move-frames-46 {
    from {
        -webkit-transform: translate3d(17vw, 106vh, 0);
        transform: translate3d(17vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(61vw, -134vh, 0);
        transform: translate3d(61vw, -134vh, 0);
    }
}

@keyframes an-move-frames-46 {
    from {
        -webkit-transform: translate3d(17vw, 106vh, 0);
        transform: translate3d(17vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(61vw, -134vh, 0);
        transform: translate3d(61vw, -134vh, 0);
    }
}

.ag-fireflies_item:nth-child(46) .ag-fireflies_inner {
    -webkit-animation-delay: 2586ms;
    animation-delay: 2586ms;
}

.ag-fireflies_item:nth-child(47) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-47;
    animation-name: an-move-frames-47;
    -webkit-animation-duration: 33829ms;
    animation-duration: 33829ms;
    -webkit-animation-delay: 19254ms;
    animation-delay: 19254ms;
}

@-webkit-keyframes an-move-frames-47 {
    from {
        -webkit-transform: translate3d(98vw, 109vh, 0);
        transform: translate3d(98vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(27vw, -137vh, 0);
        transform: translate3d(27vw, -137vh, 0);
    }
}

@keyframes an-move-frames-47 {
    from {
        -webkit-transform: translate3d(98vw, 109vh, 0);
        transform: translate3d(98vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(27vw, -137vh, 0);
        transform: translate3d(27vw, -137vh, 0);
    }
}

.ag-fireflies_item:nth-child(47) .ag-fireflies_inner {
    -webkit-animation-delay: 118ms;
    animation-delay: 118ms;
}

.ag-fireflies_item:nth-child(48) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-48;
    animation-name: an-move-frames-48;
    -webkit-animation-duration: 32437ms;
    animation-duration: 32437ms;
    -webkit-animation-delay: 11242ms;
    animation-delay: 11242ms;
}

@-webkit-keyframes an-move-frames-48 {
    from {
        -webkit-transform: translate3d(29vw, 101vh, 0);
        transform: translate3d(29vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(79vw, -131vh, 0);
        transform: translate3d(79vw, -131vh, 0);
    }
}

@keyframes an-move-frames-48 {
    from {
        -webkit-transform: translate3d(29vw, 101vh, 0);
        transform: translate3d(29vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(79vw, -131vh, 0);
        transform: translate3d(79vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(48) .ag-fireflies_inner {
    -webkit-animation-delay: 597ms;
    animation-delay: 597ms;
}

.ag-fireflies_item:nth-child(49) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-49;
    animation-name: an-move-frames-49;
    -webkit-animation-duration: 28741ms;
    animation-duration: 28741ms;
    -webkit-animation-delay: 36249ms;
    animation-delay: 36249ms;
}

@-webkit-keyframes an-move-frames-49 {
    from {
        -webkit-transform: translate3d(90vw, 101vh, 0);
        transform: translate3d(90vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(47vw, -108vh, 0);
        transform: translate3d(47vw, -108vh, 0);
    }
}

@keyframes an-move-frames-49 {
    from {
        -webkit-transform: translate3d(90vw, 101vh, 0);
        transform: translate3d(90vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(47vw, -108vh, 0);
        transform: translate3d(47vw, -108vh, 0);
    }
}

.ag-fireflies_item:nth-child(49) .ag-fireflies_inner {
    -webkit-animation-delay: 1401ms;
    animation-delay: 1401ms;
}

.ag-fireflies_item:nth-child(50) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-50;
    animation-name: an-move-frames-50;
    -webkit-animation-duration: 28592ms;
    animation-duration: 28592ms;
    -webkit-animation-delay: 24528ms;
    animation-delay: 24528ms;
}

@-webkit-keyframes an-move-frames-50 {
    from {
        -webkit-transform: translate3d(88vw, 104vh, 0);
        transform: translate3d(88vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(7vw, -131vh, 0);
        transform: translate3d(7vw, -131vh, 0);
    }
}

@keyframes an-move-frames-50 {
    from {
        -webkit-transform: translate3d(88vw, 104vh, 0);
        transform: translate3d(88vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(7vw, -131vh, 0);
        transform: translate3d(7vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(50) .ag-fireflies_inner {
    -webkit-animation-delay: 3918ms;
    animation-delay: 3918ms;
}

.ag-fireflies_item:nth-child(51) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-51;
    animation-name: an-move-frames-51;
    -webkit-animation-duration: 33054ms;
    animation-duration: 33054ms;
    -webkit-animation-delay: 1130ms;
    animation-delay: 1130ms;
}

@-webkit-keyframes an-move-frames-51 {
    from {
        -webkit-transform: translate3d(84vw, 107vh, 0);
        transform: translate3d(84vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(56vw, -115vh, 0);
        transform: translate3d(56vw, -115vh, 0);
    }
}

@keyframes an-move-frames-51 {
    from {
        -webkit-transform: translate3d(84vw, 107vh, 0);
        transform: translate3d(84vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(56vw, -115vh, 0);
        transform: translate3d(56vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(51) .ag-fireflies_inner {
    -webkit-animation-delay: 2898ms;
    animation-delay: 2898ms;
}

.ag-fireflies_item:nth-child(52) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-52;
    animation-name: an-move-frames-52;
    -webkit-animation-duration: 36202ms;
    animation-duration: 36202ms;
    -webkit-animation-delay: 7465ms;
    animation-delay: 7465ms;
}

@-webkit-keyframes an-move-frames-52 {
    from {
        -webkit-transform: translate3d(38vw, 101vh, 0);
        transform: translate3d(38vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -103vh, 0);
        transform: translate3d(14vw, -103vh, 0);
    }
}

@keyframes an-move-frames-52 {
    from {
        -webkit-transform: translate3d(38vw, 101vh, 0);
        transform: translate3d(38vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -103vh, 0);
        transform: translate3d(14vw, -103vh, 0);
    }
}

.ag-fireflies_item:nth-child(52) .ag-fireflies_inner {
    -webkit-animation-delay: 1198ms;
    animation-delay: 1198ms;
}

.ag-fireflies_item:nth-child(53) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-53;
    animation-name: an-move-frames-53;
    -webkit-animation-duration: 29425ms;
    animation-duration: 29425ms;
    -webkit-animation-delay: 26350ms;
    animation-delay: 26350ms;
}

@-webkit-keyframes an-move-frames-53 {
    from {
        -webkit-transform: translate3d(86vw, 104vh, 0);
        transform: translate3d(86vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(46vw, -133vh, 0);
        transform: translate3d(46vw, -133vh, 0);
    }
}

@keyframes an-move-frames-53 {
    from {
        -webkit-transform: translate3d(86vw, 104vh, 0);
        transform: translate3d(86vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(46vw, -133vh, 0);
        transform: translate3d(46vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(53) .ag-fireflies_inner {
    -webkit-animation-delay: 327ms;
    animation-delay: 327ms;
}

.ag-fireflies_item:nth-child(54) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-54;
    animation-name: an-move-frames-54;
    -webkit-animation-duration: 30917ms;
    animation-duration: 30917ms;
    -webkit-animation-delay: 19942ms;
    animation-delay: 19942ms;
}

@-webkit-keyframes an-move-frames-54 {
    from {
        -webkit-transform: translate3d(90vw, 104vh, 0);
        transform: translate3d(90vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(26vw, -107vh, 0);
        transform: translate3d(26vw, -107vh, 0);
    }
}

@keyframes an-move-frames-54 {
    from {
        -webkit-transform: translate3d(90vw, 104vh, 0);
        transform: translate3d(90vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(26vw, -107vh, 0);
        transform: translate3d(26vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(54) .ag-fireflies_inner {
    -webkit-animation-delay: 3924ms;
    animation-delay: 3924ms;
}

.ag-fireflies_item:nth-child(55) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-55;
    animation-name: an-move-frames-55;
    -webkit-animation-duration: 29613ms;
    animation-duration: 29613ms;
    -webkit-animation-delay: 18518ms;
    animation-delay: 18518ms;
}

@-webkit-keyframes an-move-frames-55 {
    from {
        -webkit-transform: translate3d(54vw, 104vh, 0);
        transform: translate3d(54vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(58vw, -125vh, 0);
        transform: translate3d(58vw, -125vh, 0);
    }
}

@keyframes an-move-frames-55 {
    from {
        -webkit-transform: translate3d(54vw, 104vh, 0);
        transform: translate3d(54vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(58vw, -125vh, 0);
        transform: translate3d(58vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(55) .ag-fireflies_inner {
    -webkit-animation-delay: 3373ms;
    animation-delay: 3373ms;
}

.ag-fireflies_item:nth-child(56) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-56;
    animation-name: an-move-frames-56;
    -webkit-animation-duration: 33373ms;
    animation-duration: 33373ms;
    -webkit-animation-delay: 3238ms;
    animation-delay: 3238ms;
}

@-webkit-keyframes an-move-frames-56 {
    from {
        -webkit-transform: translate3d(92vw, 106vh, 0);
        transform: translate3d(92vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -126vh, 0);
        transform: translate3d(66vw, -126vh, 0);
    }
}

@keyframes an-move-frames-56 {
    from {
        -webkit-transform: translate3d(92vw, 106vh, 0);
        transform: translate3d(92vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -126vh, 0);
        transform: translate3d(66vw, -126vh, 0);
    }
}

.ag-fireflies_item:nth-child(56) .ag-fireflies_inner {
    -webkit-animation-delay: 2166ms;
    animation-delay: 2166ms;
}

.ag-fireflies_item:nth-child(57) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-57;
    animation-name: an-move-frames-57;
    -webkit-animation-duration: 31530ms;
    animation-duration: 31530ms;
    -webkit-animation-delay: 1260ms;
    animation-delay: 1260ms;
}

@-webkit-keyframes an-move-frames-57 {
    from {
        -webkit-transform: translate3d(91vw, 105vh, 0);
        transform: translate3d(91vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(53vw, -111vh, 0);
        transform: translate3d(53vw, -111vh, 0);
    }
}

@keyframes an-move-frames-57 {
    from {
        -webkit-transform: translate3d(91vw, 105vh, 0);
        transform: translate3d(91vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(53vw, -111vh, 0);
        transform: translate3d(53vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(57) .ag-fireflies_inner {
    -webkit-animation-delay: 2464ms;
    animation-delay: 2464ms;
}

.ag-fireflies_item:nth-child(58) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-58;
    animation-name: an-move-frames-58;
    -webkit-animation-duration: 31936ms;
    animation-duration: 31936ms;
    -webkit-animation-delay: 34252ms;
    animation-delay: 34252ms;
}

@-webkit-keyframes an-move-frames-58 {
    from {
        -webkit-transform: translate3d(81vw, 109vh, 0);
        transform: translate3d(81vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -111vh, 0);
        transform: translate3d(93vw, -111vh, 0);
    }
}

@keyframes an-move-frames-58 {
    from {
        -webkit-transform: translate3d(81vw, 109vh, 0);
        transform: translate3d(81vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -111vh, 0);
        transform: translate3d(93vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(58) .ag-fireflies_inner {
    -webkit-animation-delay: 2375ms;
    animation-delay: 2375ms;
}

.ag-fireflies_item:nth-child(59) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-59;
    animation-name: an-move-frames-59;
    -webkit-animation-duration: 33079ms;
    animation-duration: 33079ms;
    -webkit-animation-delay: 5641ms;
    animation-delay: 5641ms;
}

@-webkit-keyframes an-move-frames-59 {
    from {
        -webkit-transform: translate3d(46vw, 105vh, 0);
        transform: translate3d(46vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(28vw, -108vh, 0);
        transform: translate3d(28vw, -108vh, 0);
    }
}

@keyframes an-move-frames-59 {
    from {
        -webkit-transform: translate3d(46vw, 105vh, 0);
        transform: translate3d(46vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(28vw, -108vh, 0);
        transform: translate3d(28vw, -108vh, 0);
    }
}

.ag-fireflies_item:nth-child(59) .ag-fireflies_inner {
    -webkit-animation-delay: 3407ms;
    animation-delay: 3407ms;
}

.ag-fireflies_item:nth-child(60) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-60;
    animation-name: an-move-frames-60;
    -webkit-animation-duration: 32875ms;
    animation-duration: 32875ms;
    -webkit-animation-delay: 4427ms;
    animation-delay: 4427ms;
}

@-webkit-keyframes an-move-frames-60 {
    from {
        -webkit-transform: translate3d(84vw, 103vh, 0);
        transform: translate3d(84vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -120vh, 0);
        transform: translate3d(66vw, -120vh, 0);
    }
}

@keyframes an-move-frames-60 {
    from {
        -webkit-transform: translate3d(84vw, 103vh, 0);
        transform: translate3d(84vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -120vh, 0);
        transform: translate3d(66vw, -120vh, 0);
    }
}

.ag-fireflies_item:nth-child(60) .ag-fireflies_inner {
    -webkit-animation-delay: 861ms;
    animation-delay: 861ms;
}

.ag-fireflies_item:nth-child(61) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-61;
    animation-name: an-move-frames-61;
    -webkit-animation-duration: 28130ms;
    animation-duration: 28130ms;
    -webkit-animation-delay: 20625ms;
    animation-delay: 20625ms;
}

@-webkit-keyframes an-move-frames-61 {
    from {
        -webkit-transform: translate3d(57vw, 101vh, 0);
        transform: translate3d(57vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -122vh, 0);
        transform: translate3d(8vw, -122vh, 0);
    }
}

@keyframes an-move-frames-61 {
    from {
        -webkit-transform: translate3d(57vw, 101vh, 0);
        transform: translate3d(57vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -122vh, 0);
        transform: translate3d(8vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(61) .ag-fireflies_inner {
    -webkit-animation-delay: 2447ms;
    animation-delay: 2447ms;
}

.ag-fireflies_item:nth-child(62) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-62;
    animation-name: an-move-frames-62;
    -webkit-animation-duration: 28369ms;
    animation-duration: 28369ms;
    -webkit-animation-delay: 29700ms;
    animation-delay: 29700ms;
}

@-webkit-keyframes an-move-frames-62 {
    from {
        -webkit-transform: translate3d(33vw, 110vh, 0);
        transform: translate3d(33vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(33vw, -131vh, 0);
        transform: translate3d(33vw, -131vh, 0);
    }
}

@keyframes an-move-frames-62 {
    from {
        -webkit-transform: translate3d(33vw, 110vh, 0);
        transform: translate3d(33vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(33vw, -131vh, 0);
        transform: translate3d(33vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(62) .ag-fireflies_inner {
    -webkit-animation-delay: 3060ms;
    animation-delay: 3060ms;
}

.ag-fireflies_item:nth-child(63) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-63;
    animation-name: an-move-frames-63;
    -webkit-animation-duration: 34776ms;
    animation-duration: 34776ms;
    -webkit-animation-delay: 13965ms;
    animation-delay: 13965ms;
}

@-webkit-keyframes an-move-frames-63 {
    from {
        -webkit-transform: translate3d(81vw, 110vh, 0);
        transform: translate3d(81vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -134vh, 0);
        transform: translate3d(87vw, -134vh, 0);
    }
}

@keyframes an-move-frames-63 {
    from {
        -webkit-transform: translate3d(81vw, 110vh, 0);
        transform: translate3d(81vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -134vh, 0);
        transform: translate3d(87vw, -134vh, 0);
    }
}

.ag-fireflies_item:nth-child(63) .ag-fireflies_inner {
    -webkit-animation-delay: 1441ms;
    animation-delay: 1441ms;
}

.ag-fireflies_item:nth-child(64) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-64;
    animation-name: an-move-frames-64;
    -webkit-animation-duration: 31871ms;
    animation-duration: 31871ms;
    -webkit-animation-delay: 18767ms;
    animation-delay: 18767ms;
}

@-webkit-keyframes an-move-frames-64 {
    from {
        -webkit-transform: translate3d(49vw, 102vh, 0);
        transform: translate3d(49vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(41vw, -115vh, 0);
        transform: translate3d(41vw, -115vh, 0);
    }
}

@keyframes an-move-frames-64 {
    from {
        -webkit-transform: translate3d(49vw, 102vh, 0);
        transform: translate3d(49vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(41vw, -115vh, 0);
        transform: translate3d(41vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(64) .ag-fireflies_inner {
    -webkit-animation-delay: 3129ms;
    animation-delay: 3129ms;
}

.ag-fireflies_item:nth-child(65) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-65;
    animation-name: an-move-frames-65;
    -webkit-animation-duration: 28195ms;
    animation-duration: 28195ms;
    -webkit-animation-delay: 36813ms;
    animation-delay: 36813ms;
}

@-webkit-keyframes an-move-frames-65 {
    from {
        -webkit-transform: translate3d(76vw, 108vh, 0);
        transform: translate3d(76vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(44vw, -137vh, 0);
        transform: translate3d(44vw, -137vh, 0);
    }
}

@keyframes an-move-frames-65 {
    from {
        -webkit-transform: translate3d(76vw, 108vh, 0);
        transform: translate3d(76vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(44vw, -137vh, 0);
        transform: translate3d(44vw, -137vh, 0);
    }
}

.ag-fireflies_item:nth-child(65) .ag-fireflies_inner {
    -webkit-animation-delay: 2721ms;
    animation-delay: 2721ms;
}

.ag-fireflies_item:nth-child(66) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-66;
    animation-name: an-move-frames-66;
    -webkit-animation-duration: 35970ms;
    animation-duration: 35970ms;
    -webkit-animation-delay: 21381ms;
    animation-delay: 21381ms;
}

@-webkit-keyframes an-move-frames-66 {
    from {
        -webkit-transform: translate3d(60vw, 107vh, 0);
        transform: translate3d(60vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(76vw, -136vh, 0);
        transform: translate3d(76vw, -136vh, 0);
    }
}

@keyframes an-move-frames-66 {
    from {
        -webkit-transform: translate3d(60vw, 107vh, 0);
        transform: translate3d(60vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(76vw, -136vh, 0);
        transform: translate3d(76vw, -136vh, 0);
    }
}

.ag-fireflies_item:nth-child(66) .ag-fireflies_inner {
    -webkit-animation-delay: 762ms;
    animation-delay: 762ms;
}

.ag-fireflies_item:nth-child(67) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-67;
    animation-name: an-move-frames-67;
    -webkit-animation-duration: 28165ms;
    animation-duration: 28165ms;
    -webkit-animation-delay: 23482ms;
    animation-delay: 23482ms;
}

@-webkit-keyframes an-move-frames-67 {
    from {
        -webkit-transform: translate3d(73vw, 103vh, 0);
        transform: translate3d(73vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(46vw, -127vh, 0);
        transform: translate3d(46vw, -127vh, 0);
    }
}

@keyframes an-move-frames-67 {
    from {
        -webkit-transform: translate3d(73vw, 103vh, 0);
        transform: translate3d(73vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(46vw, -127vh, 0);
        transform: translate3d(46vw, -127vh, 0);
    }
}

.ag-fireflies_item:nth-child(67) .ag-fireflies_inner {
    -webkit-animation-delay: 2804ms;
    animation-delay: 2804ms;
}

.ag-fireflies_item:nth-child(68) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-68;
    animation-name: an-move-frames-68;
    -webkit-animation-duration: 31121ms;
    animation-duration: 31121ms;
    -webkit-animation-delay: 25905ms;
    animation-delay: 25905ms;
}

@-webkit-keyframes an-move-frames-68 {
    from {
        -webkit-transform: translate3d(36vw, 107vh, 0);
        transform: translate3d(36vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(45vw, -109vh, 0);
        transform: translate3d(45vw, -109vh, 0);
    }
}

@keyframes an-move-frames-68 {
    from {
        -webkit-transform: translate3d(36vw, 107vh, 0);
        transform: translate3d(36vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(45vw, -109vh, 0);
        transform: translate3d(45vw, -109vh, 0);
    }
}

.ag-fireflies_item:nth-child(68) .ag-fireflies_inner {
    -webkit-animation-delay: 593ms;
    animation-delay: 593ms;
}

.ag-fireflies_item:nth-child(69) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-69;
    animation-name: an-move-frames-69;
    -webkit-animation-duration: 30143ms;
    animation-duration: 30143ms;
    -webkit-animation-delay: 17821ms;
    animation-delay: 17821ms;
}

@-webkit-keyframes an-move-frames-69 {
    from {
        -webkit-transform: translate3d(8vw, 104vh, 0);
        transform: translate3d(8vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(1vw, -125vh, 0);
        transform: translate3d(1vw, -125vh, 0);
    }
}

@keyframes an-move-frames-69 {
    from {
        -webkit-transform: translate3d(8vw, 104vh, 0);
        transform: translate3d(8vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(1vw, -125vh, 0);
        transform: translate3d(1vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(69) .ag-fireflies_inner {
    -webkit-animation-delay: 2191ms;
    animation-delay: 2191ms;
}

.ag-fireflies_item:nth-child(70) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-70;
    animation-name: an-move-frames-70;
    -webkit-animation-duration: 31289ms;
    animation-duration: 31289ms;
    -webkit-animation-delay: 8806ms;
    animation-delay: 8806ms;
}

@-webkit-keyframes an-move-frames-70 {
    from {
        -webkit-transform: translate3d(23vw, 108vh, 0);
        transform: translate3d(23vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(68vw, -115vh, 0);
        transform: translate3d(68vw, -115vh, 0);
    }
}

@keyframes an-move-frames-70 {
    from {
        -webkit-transform: translate3d(23vw, 108vh, 0);
        transform: translate3d(23vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(68vw, -115vh, 0);
        transform: translate3d(68vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(70) .ag-fireflies_inner {
    -webkit-animation-delay: 3666ms;
    animation-delay: 3666ms;
}

.ag-fireflies_item:nth-child(71) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-71;
    animation-name: an-move-frames-71;
    -webkit-animation-duration: 31028ms;
    animation-duration: 31028ms;
    -webkit-animation-delay: 1885ms;
    animation-delay: 1885ms;
}

@-webkit-keyframes an-move-frames-71 {
    from {
        -webkit-transform: translate3d(70vw, 107vh, 0);
        transform: translate3d(70vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(97vw, -122vh, 0);
        transform: translate3d(97vw, -122vh, 0);
    }
}

@keyframes an-move-frames-71 {
    from {
        -webkit-transform: translate3d(70vw, 107vh, 0);
        transform: translate3d(70vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(97vw, -122vh, 0);
        transform: translate3d(97vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(71) .ag-fireflies_inner {
    -webkit-animation-delay: 493ms;
    animation-delay: 493ms;
}

.ag-fireflies_item:nth-child(72) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-72;
    animation-name: an-move-frames-72;
    -webkit-animation-duration: 35313ms;
    animation-duration: 35313ms;
    -webkit-animation-delay: 28041ms;
    animation-delay: 28041ms;
}

@-webkit-keyframes an-move-frames-72 {
    from {
        -webkit-transform: translate3d(3vw, 101vh, 0);
        transform: translate3d(3vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(25vw, -112vh, 0);
        transform: translate3d(25vw, -112vh, 0);
    }
}

@keyframes an-move-frames-72 {
    from {
        -webkit-transform: translate3d(3vw, 101vh, 0);
        transform: translate3d(3vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(25vw, -112vh, 0);
        transform: translate3d(25vw, -112vh, 0);
    }
}

.ag-fireflies_item:nth-child(72) .ag-fireflies_inner {
    -webkit-animation-delay: 1829ms;
    animation-delay: 1829ms;
}

.ag-fireflies_item:nth-child(73) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-73;
    animation-name: an-move-frames-73;
    -webkit-animation-duration: 35959ms;
    animation-duration: 35959ms;
    -webkit-animation-delay: 8041ms;
    animation-delay: 8041ms;
}

@-webkit-keyframes an-move-frames-73 {
    from {
        -webkit-transform: translate3d(9vw, 102vh, 0);
        transform: translate3d(9vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -113vh, 0);
        transform: translate3d(24vw, -113vh, 0);
    }
}

@keyframes an-move-frames-73 {
    from {
        -webkit-transform: translate3d(9vw, 102vh, 0);
        transform: translate3d(9vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -113vh, 0);
        transform: translate3d(24vw, -113vh, 0);
    }
}

.ag-fireflies_item:nth-child(73) .ag-fireflies_inner {
    -webkit-animation-delay: 2013ms;
    animation-delay: 2013ms;
}

.ag-fireflies_item:nth-child(74) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-74;
    animation-name: an-move-frames-74;
    -webkit-animation-duration: 33687ms;
    animation-duration: 33687ms;
    -webkit-animation-delay: 32322ms;
    animation-delay: 32322ms;
}

@-webkit-keyframes an-move-frames-74 {
    from {
        -webkit-transform: translate3d(25vw, 108vh, 0);
        transform: translate3d(25vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(88vw, -136vh, 0);
        transform: translate3d(88vw, -136vh, 0);
    }
}

@keyframes an-move-frames-74 {
    from {
        -webkit-transform: translate3d(25vw, 108vh, 0);
        transform: translate3d(25vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(88vw, -136vh, 0);
        transform: translate3d(88vw, -136vh, 0);
    }
}

.ag-fireflies_item:nth-child(74) .ag-fireflies_inner {
    -webkit-animation-delay: 2122ms;
    animation-delay: 2122ms;
}

.ag-fireflies_item:nth-child(75) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-75;
    animation-name: an-move-frames-75;
    -webkit-animation-duration: 35746ms;
    animation-duration: 35746ms;
    -webkit-animation-delay: 20489ms;
    animation-delay: 20489ms;
}

@-webkit-keyframes an-move-frames-75 {
    from {
        -webkit-transform: translate3d(26vw, 105vh, 0);
        transform: translate3d(26vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(92vw, -113vh, 0);
        transform: translate3d(92vw, -113vh, 0);
    }
}

@keyframes an-move-frames-75 {
    from {
        -webkit-transform: translate3d(26vw, 105vh, 0);
        transform: translate3d(26vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(92vw, -113vh, 0);
        transform: translate3d(92vw, -113vh, 0);
    }
}

.ag-fireflies_item:nth-child(75) .ag-fireflies_inner {
    -webkit-animation-delay: 3515ms;
    animation-delay: 3515ms;
}

.ag-fireflies_item:nth-child(76) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-76;
    animation-name: an-move-frames-76;
    -webkit-animation-duration: 33832ms;
    animation-duration: 33832ms;
    -webkit-animation-delay: 26304ms;
    animation-delay: 26304ms;
}

@-webkit-keyframes an-move-frames-76 {
    from {
        -webkit-transform: translate3d(25vw, 110vh, 0);
        transform: translate3d(25vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -132vh, 0);
        transform: translate3d(63vw, -132vh, 0);
    }
}

@keyframes an-move-frames-76 {
    from {
        -webkit-transform: translate3d(25vw, 110vh, 0);
        transform: translate3d(25vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -132vh, 0);
        transform: translate3d(63vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(76) .ag-fireflies_inner {
    -webkit-animation-delay: 255ms;
    animation-delay: 255ms;
}

.ag-fireflies_item:nth-child(77) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-77;
    animation-name: an-move-frames-77;
    -webkit-animation-duration: 32250ms;
    animation-duration: 32250ms;
    -webkit-animation-delay: 18969ms;
    animation-delay: 18969ms;
}

@-webkit-keyframes an-move-frames-77 {
    from {
        -webkit-transform: translate3d(11vw, 107vh, 0);
        transform: translate3d(11vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(33vw, -111vh, 0);
        transform: translate3d(33vw, -111vh, 0);
    }
}

@keyframes an-move-frames-77 {
    from {
        -webkit-transform: translate3d(11vw, 107vh, 0);
        transform: translate3d(11vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(33vw, -111vh, 0);
        transform: translate3d(33vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(77) .ag-fireflies_inner {
    -webkit-animation-delay: 1600ms;
    animation-delay: 1600ms;
}

.ag-fireflies_item:nth-child(78) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-78;
    animation-name: an-move-frames-78;
    -webkit-animation-duration: 32038ms;
    animation-duration: 32038ms;
    -webkit-animation-delay: 9109ms;
    animation-delay: 9109ms;
}

@-webkit-keyframes an-move-frames-78 {
    from {
        -webkit-transform: translate3d(60vw, 105vh, 0);
        transform: translate3d(60vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(83vw, -107vh, 0);
        transform: translate3d(83vw, -107vh, 0);
    }
}

@keyframes an-move-frames-78 {
    from {
        -webkit-transform: translate3d(60vw, 105vh, 0);
        transform: translate3d(60vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(83vw, -107vh, 0);
        transform: translate3d(83vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(78) .ag-fireflies_inner {
    -webkit-animation-delay: 3557ms;
    animation-delay: 3557ms;
}

.ag-fireflies_item:nth-child(79) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-79;
    animation-name: an-move-frames-79;
    -webkit-animation-duration: 35962ms;
    animation-duration: 35962ms;
    -webkit-animation-delay: 14119ms;
    animation-delay: 14119ms;
}

@-webkit-keyframes an-move-frames-79 {
    from {
        -webkit-transform: translate3d(81vw, 103vh, 0);
        transform: translate3d(81vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(18vw, -107vh, 0);
        transform: translate3d(18vw, -107vh, 0);
    }
}

@keyframes an-move-frames-79 {
    from {
        -webkit-transform: translate3d(81vw, 103vh, 0);
        transform: translate3d(81vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(18vw, -107vh, 0);
        transform: translate3d(18vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(79) .ag-fireflies_inner {
    -webkit-animation-delay: 1469ms;
    animation-delay: 1469ms;
}

.ag-fireflies_item:nth-child(80) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-80;
    animation-name: an-move-frames-80;
    -webkit-animation-duration: 34908ms;
    animation-duration: 34908ms;
    -webkit-animation-delay: 29337ms;
    animation-delay: 29337ms;
}

@-webkit-keyframes an-move-frames-80 {
    from {
        -webkit-transform: translate3d(54vw, 101vh, 0);
        transform: translate3d(54vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -129vh, 0);
        transform: translate3d(87vw, -129vh, 0);
    }
}

@keyframes an-move-frames-80 {
    from {
        -webkit-transform: translate3d(54vw, 101vh, 0);
        transform: translate3d(54vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -129vh, 0);
        transform: translate3d(87vw, -129vh, 0);
    }
}

.ag-fireflies_item:nth-child(80) .ag-fireflies_inner {
    -webkit-animation-delay: 3000ms;
    animation-delay: 3000ms;
}

.ag-fireflies_item:nth-child(81) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-81;
    animation-name: an-move-frames-81;
    -webkit-animation-duration: 31398ms;
    animation-duration: 31398ms;
    -webkit-animation-delay: 13334ms;
    animation-delay: 13334ms;
}

@-webkit-keyframes an-move-frames-81 {
    from {
        -webkit-transform: translate3d(56vw, 108vh, 0);
        transform: translate3d(56vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(100vw, -111vh, 0);
        transform: translate3d(100vw, -111vh, 0);
    }
}

@keyframes an-move-frames-81 {
    from {
        -webkit-transform: translate3d(56vw, 108vh, 0);
        transform: translate3d(56vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(100vw, -111vh, 0);
        transform: translate3d(100vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(81) .ag-fireflies_inner {
    -webkit-animation-delay: 587ms;
    animation-delay: 587ms;
}

.ag-fireflies_item:nth-child(82) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-82;
    animation-name: an-move-frames-82;
    -webkit-animation-duration: 29055ms;
    animation-duration: 29055ms;
    -webkit-animation-delay: 9871ms;
    animation-delay: 9871ms;
}

@-webkit-keyframes an-move-frames-82 {
    from {
        -webkit-transform: translate3d(22vw, 105vh, 0);
        transform: translate3d(22vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(91vw, -120vh, 0);
        transform: translate3d(91vw, -120vh, 0);
    }
}

@keyframes an-move-frames-82 {
    from {
        -webkit-transform: translate3d(22vw, 105vh, 0);
        transform: translate3d(22vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(91vw, -120vh, 0);
        transform: translate3d(91vw, -120vh, 0);
    }
}

.ag-fireflies_item:nth-child(82) .ag-fireflies_inner {
    -webkit-animation-delay: 1706ms;
    animation-delay: 1706ms;
}

.ag-fireflies_item:nth-child(83) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-83;
    animation-name: an-move-frames-83;
    -webkit-animation-duration: 30056ms;
    animation-duration: 30056ms;
    -webkit-animation-delay: 10173ms;
    animation-delay: 10173ms;
}

@-webkit-keyframes an-move-frames-83 {
    from {
        -webkit-transform: translate3d(65vw, 110vh, 0);
        transform: translate3d(65vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -116vh, 0);
        transform: translate3d(93vw, -116vh, 0);
    }
}

@keyframes an-move-frames-83 {
    from {
        -webkit-transform: translate3d(65vw, 110vh, 0);
        transform: translate3d(65vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -116vh, 0);
        transform: translate3d(93vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(83) .ag-fireflies_inner {
    -webkit-animation-delay: 1589ms;
    animation-delay: 1589ms;
}

.ag-fireflies_item:nth-child(84) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-84;
    animation-name: an-move-frames-84;
    -webkit-animation-duration: 32572ms;
    animation-duration: 32572ms;
    -webkit-animation-delay: 14343ms;
    animation-delay: 14343ms;
}

@-webkit-keyframes an-move-frames-84 {
    from {
        -webkit-transform: translate3d(27vw, 104vh, 0);
        transform: translate3d(27vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(12vw, -132vh, 0);
        transform: translate3d(12vw, -132vh, 0);
    }
}

@keyframes an-move-frames-84 {
    from {
        -webkit-transform: translate3d(27vw, 104vh, 0);
        transform: translate3d(27vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(12vw, -132vh, 0);
        transform: translate3d(12vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(84) .ag-fireflies_inner {
    -webkit-animation-delay: 3589ms;
    animation-delay: 3589ms;
}

.ag-fireflies_item:nth-child(85) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-85;
    animation-name: an-move-frames-85;
    -webkit-animation-duration: 31722ms;
    animation-duration: 31722ms;
    -webkit-animation-delay: 7497ms;
    animation-delay: 7497ms;
}

@-webkit-keyframes an-move-frames-85 {
    from {
        -webkit-transform: translate3d(85vw, 110vh, 0);
        transform: translate3d(85vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(30vw, -134vh, 0);
        transform: translate3d(30vw, -134vh, 0);
    }
}

@keyframes an-move-frames-85 {
    from {
        -webkit-transform: translate3d(85vw, 110vh, 0);
        transform: translate3d(85vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(30vw, -134vh, 0);
        transform: translate3d(30vw, -134vh, 0);
    }
}

.ag-fireflies_item:nth-child(85) .ag-fireflies_inner {
    -webkit-animation-delay: 3781ms;
    animation-delay: 3781ms;
}

.ag-fireflies_item:nth-child(86) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-86;
    animation-name: an-move-frames-86;
    -webkit-animation-duration: 33659ms;
    animation-duration: 33659ms;
    -webkit-animation-delay: 4972ms;
    animation-delay: 4972ms;
}

@-webkit-keyframes an-move-frames-86 {
    from {
        -webkit-transform: translate3d(30vw, 105vh, 0);
        transform: translate3d(30vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(36vw, -111vh, 0);
        transform: translate3d(36vw, -111vh, 0);
    }
}

@keyframes an-move-frames-86 {
    from {
        -webkit-transform: translate3d(30vw, 105vh, 0);
        transform: translate3d(30vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(36vw, -111vh, 0);
        transform: translate3d(36vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(86) .ag-fireflies_inner {
    -webkit-animation-delay: 3455ms;
    animation-delay: 3455ms;
}

.ag-fireflies_item:nth-child(87) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-87;
    animation-name: an-move-frames-87;
    -webkit-animation-duration: 28065ms;
    animation-duration: 28065ms;
    -webkit-animation-delay: 14640ms;
    animation-delay: 14640ms;
}

@-webkit-keyframes an-move-frames-87 {
    from {
        -webkit-transform: translate3d(79vw, 108vh, 0);
        transform: translate3d(79vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -116vh, 0);
        transform: translate3d(63vw, -116vh, 0);
    }
}

@keyframes an-move-frames-87 {
    from {
        -webkit-transform: translate3d(79vw, 108vh, 0);
        transform: translate3d(79vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -116vh, 0);
        transform: translate3d(63vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(87) .ag-fireflies_inner {
    -webkit-animation-delay: 738ms;
    animation-delay: 738ms;
}

.ag-fireflies_item:nth-child(88) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-88;
    animation-name: an-move-frames-88;
    -webkit-animation-duration: 36799ms;
    animation-duration: 36799ms;
    -webkit-animation-delay: 19330ms;
    animation-delay: 19330ms;
}

@-webkit-keyframes an-move-frames-88 {
    from {
        -webkit-transform: translate3d(68vw, 106vh, 0);
        transform: translate3d(68vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(99vw, -136vh, 0);
        transform: translate3d(99vw, -136vh, 0);
    }
}

@keyframes an-move-frames-88 {
    from {
        -webkit-transform: translate3d(68vw, 106vh, 0);
        transform: translate3d(68vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(99vw, -136vh, 0);
        transform: translate3d(99vw, -136vh, 0);
    }
}

.ag-fireflies_item:nth-child(88) .ag-fireflies_inner {
    -webkit-animation-delay: 3527ms;
    animation-delay: 3527ms;
}

.ag-fireflies_item:nth-child(89) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-89;
    animation-name: an-move-frames-89;
    -webkit-animation-duration: 29921ms;
    animation-duration: 29921ms;
    -webkit-animation-delay: 21749ms;
    animation-delay: 21749ms;
}

@-webkit-keyframes an-move-frames-89 {
    from {
        -webkit-transform: translate3d(28vw, 102vh, 0);
        transform: translate3d(28vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -130vh, 0);
        transform: translate3d(31vw, -130vh, 0);
    }
}

@keyframes an-move-frames-89 {
    from {
        -webkit-transform: translate3d(28vw, 102vh, 0);
        transform: translate3d(28vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -130vh, 0);
        transform: translate3d(31vw, -130vh, 0);
    }
}

.ag-fireflies_item:nth-child(89) .ag-fireflies_inner {
    -webkit-animation-delay: 3623ms;
    animation-delay: 3623ms;
}

.ag-fireflies_item:nth-child(90) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-90;
    animation-name: an-move-frames-90;
    -webkit-animation-duration: 35197ms;
    animation-duration: 35197ms;
    -webkit-animation-delay: 24491ms;
    animation-delay: 24491ms;
}

@-webkit-keyframes an-move-frames-90 {
    from {
        -webkit-transform: translate3d(10vw, 108vh, 0);
        transform: translate3d(10vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(59vw, -116vh, 0);
        transform: translate3d(59vw, -116vh, 0);
    }
}

@keyframes an-move-frames-90 {
    from {
        -webkit-transform: translate3d(10vw, 108vh, 0);
        transform: translate3d(10vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(59vw, -116vh, 0);
        transform: translate3d(59vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(90) .ag-fireflies_inner {
    -webkit-animation-delay: 2888ms;
    animation-delay: 2888ms;
}

.ag-fireflies_item:nth-child(91) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-91;
    animation-name: an-move-frames-91;
    -webkit-animation-duration: 28719ms;
    animation-duration: 28719ms;
    -webkit-animation-delay: 27898ms;
    animation-delay: 27898ms;
}

@-webkit-keyframes an-move-frames-91 {
    from {
        -webkit-transform: translate3d(73vw, 102vh, 0);
        transform: translate3d(73vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(5vw, -121vh, 0);
        transform: translate3d(5vw, -121vh, 0);
    }
}

@keyframes an-move-frames-91 {
    from {
        -webkit-transform: translate3d(73vw, 102vh, 0);
        transform: translate3d(73vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(5vw, -121vh, 0);
        transform: translate3d(5vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(91) .ag-fireflies_inner {
    -webkit-animation-delay: 207ms;
    animation-delay: 207ms;
}

.ag-fireflies_item:nth-child(92) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-92;
    animation-name: an-move-frames-92;
    -webkit-animation-duration: 30745ms;
    animation-duration: 30745ms;
    -webkit-animation-delay: 25829ms;
    animation-delay: 25829ms;
}

@-webkit-keyframes an-move-frames-92 {
    from {
        -webkit-transform: translate3d(98vw, 104vh, 0);
        transform: translate3d(98vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(23vw, -118vh, 0);
        transform: translate3d(23vw, -118vh, 0);
    }
}

@keyframes an-move-frames-92 {
    from {
        -webkit-transform: translate3d(98vw, 104vh, 0);
        transform: translate3d(98vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(23vw, -118vh, 0);
        transform: translate3d(23vw, -118vh, 0);
    }
}

.ag-fireflies_item:nth-child(92) .ag-fireflies_inner {
    -webkit-animation-delay: 1347ms;
    animation-delay: 1347ms;
}

.ag-fireflies_item:nth-child(93) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-93;
    animation-name: an-move-frames-93;
    -webkit-animation-duration: 29903ms;
    animation-duration: 29903ms;
    -webkit-animation-delay: 369ms;
    animation-delay: 369ms;
}

@-webkit-keyframes an-move-frames-93 {
    from {
        -webkit-transform: translate3d(80vw, 109vh, 0);
        transform: translate3d(80vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -132vh, 0);
        transform: translate3d(42vw, -132vh, 0);
    }
}

@keyframes an-move-frames-93 {
    from {
        -webkit-transform: translate3d(80vw, 109vh, 0);
        transform: translate3d(80vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -132vh, 0);
        transform: translate3d(42vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(93) .ag-fireflies_inner {
    -webkit-animation-delay: 3297ms;
    animation-delay: 3297ms;
}

.ag-fireflies_item:nth-child(94) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-94;
    animation-name: an-move-frames-94;
    -webkit-animation-duration: 34529ms;
    animation-duration: 34529ms;
    -webkit-animation-delay: 21898ms;
    animation-delay: 21898ms;
}

@-webkit-keyframes an-move-frames-94 {
    from {
        -webkit-transform: translate3d(44vw, 104vh, 0);
        transform: translate3d(44vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(57vw, -121vh, 0);
        transform: translate3d(57vw, -121vh, 0);
    }
}

@keyframes an-move-frames-94 {
    from {
        -webkit-transform: translate3d(44vw, 104vh, 0);
        transform: translate3d(44vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(57vw, -121vh, 0);
        transform: translate3d(57vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(94) .ag-fireflies_inner {
    -webkit-animation-delay: 3024ms;
    animation-delay: 3024ms;
}

.ag-fireflies_item:nth-child(95) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-95;
    animation-name: an-move-frames-95;
    -webkit-animation-duration: 29849ms;
    animation-duration: 29849ms;
    -webkit-animation-delay: 14130ms;
    animation-delay: 14130ms;
}

@-webkit-keyframes an-move-frames-95 {
    from {
        -webkit-transform: translate3d(95vw, 108vh, 0);
        transform: translate3d(95vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(88vw, -117vh, 0);
        transform: translate3d(88vw, -117vh, 0);
    }
}

@keyframes an-move-frames-95 {
    from {
        -webkit-transform: translate3d(95vw, 108vh, 0);
        transform: translate3d(95vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(88vw, -117vh, 0);
        transform: translate3d(88vw, -117vh, 0);
    }
}

.ag-fireflies_item:nth-child(95) .ag-fireflies_inner {
    -webkit-animation-delay: 1335ms;
    animation-delay: 1335ms;
}

.ag-fireflies_item:nth-child(96) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-96;
    animation-name: an-move-frames-96;
    -webkit-animation-duration: 30710ms;
    animation-duration: 30710ms;
    -webkit-animation-delay: 27970ms;
    animation-delay: 27970ms;
}

@-webkit-keyframes an-move-frames-96 {
    from {
        -webkit-transform: translate3d(40vw, 103vh, 0);
        transform: translate3d(40vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(4vw, -121vh, 0);
        transform: translate3d(4vw, -121vh, 0);
    }
}

@keyframes an-move-frames-96 {
    from {
        -webkit-transform: translate3d(40vw, 103vh, 0);
        transform: translate3d(40vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(4vw, -121vh, 0);
        transform: translate3d(4vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(96) .ag-fireflies_inner {
    -webkit-animation-delay: 2072ms;
    animation-delay: 2072ms;
}

.ag-fireflies_item:nth-child(97) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-97;
    animation-name: an-move-frames-97;
    -webkit-animation-duration: 35749ms;
    animation-duration: 35749ms;
    -webkit-animation-delay: 32377ms;
    animation-delay: 32377ms;
}

@-webkit-keyframes an-move-frames-97 {
    from {
        -webkit-transform: translate3d(59vw, 110vh, 0);
        transform: translate3d(59vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(90vw, -133vh, 0);
        transform: translate3d(90vw, -133vh, 0);
    }
}

@keyframes an-move-frames-97 {
    from {
        -webkit-transform: translate3d(59vw, 110vh, 0);
        transform: translate3d(59vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(90vw, -133vh, 0);
        transform: translate3d(90vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(97) .ag-fireflies_inner {
    -webkit-animation-delay: 1906ms;
    animation-delay: 1906ms;
}

.ag-fireflies_item:nth-child(98) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-98;
    animation-name: an-move-frames-98;
    -webkit-animation-duration: 34467ms;
    animation-duration: 34467ms;
    -webkit-animation-delay: 23881ms;
    animation-delay: 23881ms;
}

@-webkit-keyframes an-move-frames-98 {
    from {
        -webkit-transform: translate3d(96vw, 106vh, 0);
        transform: translate3d(96vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(40vw, -127vh, 0);
        transform: translate3d(40vw, -127vh, 0);
    }
}

@keyframes an-move-frames-98 {
    from {
        -webkit-transform: translate3d(96vw, 106vh, 0);
        transform: translate3d(96vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(40vw, -127vh, 0);
        transform: translate3d(40vw, -127vh, 0);
    }
}

.ag-fireflies_item:nth-child(98) .ag-fireflies_inner {
    -webkit-animation-delay: 476ms;
    animation-delay: 476ms;
}

.ag-fireflies_item:nth-child(99) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-99;
    animation-name: an-move-frames-99;
    -webkit-animation-duration: 29632ms;
    animation-duration: 29632ms;
    -webkit-animation-delay: 2587ms;
    animation-delay: 2587ms;
}

@-webkit-keyframes an-move-frames-99 {
    from {
        -webkit-transform: translate3d(61vw, 101vh, 0);
        transform: translate3d(61vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(39vw, -114vh, 0);
        transform: translate3d(39vw, -114vh, 0);
    }
}

@keyframes an-move-frames-99 {
    from {
        -webkit-transform: translate3d(61vw, 101vh, 0);
        transform: translate3d(61vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(39vw, -114vh, 0);
        transform: translate3d(39vw, -114vh, 0);
    }
}

.ag-fireflies_item:nth-child(99) .ag-fireflies_inner {
    -webkit-animation-delay: 2175ms;
    animation-delay: 2175ms;
}

.ag-fireflies_item:nth-child(100) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-100;
    animation-name: an-move-frames-100;
    -webkit-animation-duration: 29998ms;
    animation-duration: 29998ms;
    -webkit-animation-delay: 7534ms;
    animation-delay: 7534ms;
}

@-webkit-keyframes an-move-frames-100 {
    from {
        -webkit-transform: translate3d(30vw, 109vh, 0);
        transform: translate3d(30vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -112vh, 0);
        transform: translate3d(42vw, -112vh, 0);
    }
}

@keyframes an-move-frames-100 {
    from {
        -webkit-transform: translate3d(30vw, 109vh, 0);
        transform: translate3d(30vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -112vh, 0);
        transform: translate3d(42vw, -112vh, 0);
    }
}

.ag-fireflies_item:nth-child(100) .ag-fireflies_inner {
    -webkit-animation-delay: 3706ms;
    animation-delay: 3706ms;
}

.ag-fireflies_item:nth-child(101) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-101;
    animation-name: an-move-frames-101;
    -webkit-animation-duration: 30654ms;
    animation-duration: 30654ms;
    -webkit-animation-delay: 2325ms;
    animation-delay: 2325ms;
}

@-webkit-keyframes an-move-frames-101 {
    from {
        -webkit-transform: translate3d(54vw, 107vh, 0);
        transform: translate3d(54vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(52vw, -108vh, 0);
        transform: translate3d(52vw, -108vh, 0);
    }
}

@keyframes an-move-frames-101 {
    from {
        -webkit-transform: translate3d(54vw, 107vh, 0);
        transform: translate3d(54vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(52vw, -108vh, 0);
        transform: translate3d(52vw, -108vh, 0);
    }
}

.ag-fireflies_item:nth-child(101) .ag-fireflies_inner {
    -webkit-animation-delay: 286ms;
    animation-delay: 286ms;
}

.ag-fireflies_item:nth-child(102) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-102;
    animation-name: an-move-frames-102;
    -webkit-animation-duration: 34181ms;
    animation-duration: 34181ms;
    -webkit-animation-delay: 28569ms;
    animation-delay: 28569ms;
}

@-webkit-keyframes an-move-frames-102 {
    from {
        -webkit-transform: translate3d(82vw, 107vh, 0);
        transform: translate3d(82vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(22vw, -116vh, 0);
        transform: translate3d(22vw, -116vh, 0);
    }
}

@keyframes an-move-frames-102 {
    from {
        -webkit-transform: translate3d(82vw, 107vh, 0);
        transform: translate3d(82vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(22vw, -116vh, 0);
        transform: translate3d(22vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(102) .ag-fireflies_inner {
    -webkit-animation-delay: 2842ms;
    animation-delay: 2842ms;
}

.ag-fireflies_item:nth-child(103) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-103;
    animation-name: an-move-frames-103;
    -webkit-animation-duration: 34372ms;
    animation-duration: 34372ms;
    -webkit-animation-delay: 3422ms;
    animation-delay: 3422ms;
}

@-webkit-keyframes an-move-frames-103 {
    from {
        -webkit-transform: translate3d(99vw, 102vh, 0);
        transform: translate3d(99vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(65vw, -124vh, 0);
        transform: translate3d(65vw, -124vh, 0);
    }
}

@keyframes an-move-frames-103 {
    from {
        -webkit-transform: translate3d(99vw, 102vh, 0);
        transform: translate3d(99vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(65vw, -124vh, 0);
        transform: translate3d(65vw, -124vh, 0);
    }
}

.ag-fireflies_item:nth-child(103) .ag-fireflies_inner {
    -webkit-animation-delay: 1679ms;
    animation-delay: 1679ms;
}

.ag-fireflies_item:nth-child(104) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-104;
    animation-name: an-move-frames-104;
    -webkit-animation-duration: 28792ms;
    animation-duration: 28792ms;
    -webkit-animation-delay: 20095ms;
    animation-delay: 20095ms;
}

@-webkit-keyframes an-move-frames-104 {
    from {
        -webkit-transform: translate3d(63vw, 108vh, 0);
        transform: translate3d(63vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -112vh, 0);
        transform: translate3d(63vw, -112vh, 0);
    }
}

@keyframes an-move-frames-104 {
    from {
        -webkit-transform: translate3d(63vw, 108vh, 0);
        transform: translate3d(63vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -112vh, 0);
        transform: translate3d(63vw, -112vh, 0);
    }
}

.ag-fireflies_item:nth-child(104) .ag-fireflies_inner {
    -webkit-animation-delay: 442ms;
    animation-delay: 442ms;
}

.ag-fireflies_item:nth-child(105) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-105;
    animation-name: an-move-frames-105;
    -webkit-animation-duration: 33051ms;
    animation-duration: 33051ms;
    -webkit-animation-delay: 29774ms;
    animation-delay: 29774ms;
}

@-webkit-keyframes an-move-frames-105 {
    from {
        -webkit-transform: translate3d(13vw, 110vh, 0);
        transform: translate3d(13vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(91vw, -133vh, 0);
        transform: translate3d(91vw, -133vh, 0);
    }
}

@keyframes an-move-frames-105 {
    from {
        -webkit-transform: translate3d(13vw, 110vh, 0);
        transform: translate3d(13vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(91vw, -133vh, 0);
        transform: translate3d(91vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(105) .ag-fireflies_inner {
    -webkit-animation-delay: 241ms;
    animation-delay: 241ms;
}

.ag-fireflies_item:nth-child(106) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-106;
    animation-name: an-move-frames-106;
    -webkit-animation-duration: 29820ms;
    animation-duration: 29820ms;
    -webkit-animation-delay: 32395ms;
    animation-delay: 32395ms;
}

@-webkit-keyframes an-move-frames-106 {
    from {
        -webkit-transform: translate3d(72vw, 108vh, 0);
        transform: translate3d(72vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -115vh, 0);
        transform: translate3d(62vw, -115vh, 0);
    }
}

@keyframes an-move-frames-106 {
    from {
        -webkit-transform: translate3d(72vw, 108vh, 0);
        transform: translate3d(72vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -115vh, 0);
        transform: translate3d(62vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(106) .ag-fireflies_inner {
    -webkit-animation-delay: 1364ms;
    animation-delay: 1364ms;
}

.ag-fireflies_item:nth-child(107) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-107;
    animation-name: an-move-frames-107;
    -webkit-animation-duration: 32215ms;
    animation-duration: 32215ms;
    -webkit-animation-delay: 12695ms;
    animation-delay: 12695ms;
}

@-webkit-keyframes an-move-frames-107 {
    from {
        -webkit-transform: translate3d(7vw, 101vh, 0);
        transform: translate3d(7vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -128vh, 0);
        transform: translate3d(20vw, -128vh, 0);
    }
}

@keyframes an-move-frames-107 {
    from {
        -webkit-transform: translate3d(7vw, 101vh, 0);
        transform: translate3d(7vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -128vh, 0);
        transform: translate3d(20vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(107) .ag-fireflies_inner {
    -webkit-animation-delay: 321ms;
    animation-delay: 321ms;
}

.ag-fireflies_item:nth-child(108) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-108;
    animation-name: an-move-frames-108;
    -webkit-animation-duration: 34140ms;
    animation-duration: 34140ms;
    -webkit-animation-delay: 21291ms;
    animation-delay: 21291ms;
}

@-webkit-keyframes an-move-frames-108 {
    from {
        -webkit-transform: translate3d(33vw, 107vh, 0);
        transform: translate3d(33vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(34vw, -121vh, 0);
        transform: translate3d(34vw, -121vh, 0);
    }
}

@keyframes an-move-frames-108 {
    from {
        -webkit-transform: translate3d(33vw, 107vh, 0);
        transform: translate3d(33vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(34vw, -121vh, 0);
        transform: translate3d(34vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(108) .ag-fireflies_inner {
    -webkit-animation-delay: 1499ms;
    animation-delay: 1499ms;
}

.ag-fireflies_item:nth-child(109) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-109;
    animation-name: an-move-frames-109;
    -webkit-animation-duration: 34973ms;
    animation-duration: 34973ms;
    -webkit-animation-delay: 10858ms;
    animation-delay: 10858ms;
}

@-webkit-keyframes an-move-frames-109 {
    from {
        -webkit-transform: translate3d(49vw, 106vh, 0);
        transform: translate3d(49vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -119vh, 0);
        transform: translate3d(31vw, -119vh, 0);
    }
}

@keyframes an-move-frames-109 {
    from {
        -webkit-transform: translate3d(49vw, 106vh, 0);
        transform: translate3d(49vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -119vh, 0);
        transform: translate3d(31vw, -119vh, 0);
    }
}

.ag-fireflies_item:nth-child(109) .ag-fireflies_inner {
    -webkit-animation-delay: 2754ms;
    animation-delay: 2754ms;
}

.ag-fireflies_item:nth-child(110) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-110;
    animation-name: an-move-frames-110;
    -webkit-animation-duration: 34453ms;
    animation-duration: 34453ms;
    -webkit-animation-delay: 18523ms;
    animation-delay: 18523ms;
}

@-webkit-keyframes an-move-frames-110 {
    from {
        -webkit-transform: translate3d(25vw, 108vh, 0);
        transform: translate3d(25vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(16vw, -109vh, 0);
        transform: translate3d(16vw, -109vh, 0);
    }
}

@keyframes an-move-frames-110 {
    from {
        -webkit-transform: translate3d(25vw, 108vh, 0);
        transform: translate3d(25vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(16vw, -109vh, 0);
        transform: translate3d(16vw, -109vh, 0);
    }
}

.ag-fireflies_item:nth-child(110) .ag-fireflies_inner {
    -webkit-animation-delay: 2826ms;
    animation-delay: 2826ms;
}

.ag-fireflies_item:nth-child(111) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-111;
    animation-name: an-move-frames-111;
    -webkit-animation-duration: 34343ms;
    animation-duration: 34343ms;
    -webkit-animation-delay: 12236ms;
    animation-delay: 12236ms;
}

@-webkit-keyframes an-move-frames-111 {
    from {
        -webkit-transform: translate3d(56vw, 110vh, 0);
        transform: translate3d(56vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(30vw, -115vh, 0);
        transform: translate3d(30vw, -115vh, 0);
    }
}

@keyframes an-move-frames-111 {
    from {
        -webkit-transform: translate3d(56vw, 110vh, 0);
        transform: translate3d(56vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(30vw, -115vh, 0);
        transform: translate3d(30vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(111) .ag-fireflies_inner {
    -webkit-animation-delay: 2391ms;
    animation-delay: 2391ms;
}

.ag-fireflies_item:nth-child(112) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-112;
    animation-name: an-move-frames-112;
    -webkit-animation-duration: 34434ms;
    animation-duration: 34434ms;
    -webkit-animation-delay: 2637ms;
    animation-delay: 2637ms;
}

@-webkit-keyframes an-move-frames-112 {
    from {
        -webkit-transform: translate3d(20vw, 110vh, 0);
        transform: translate3d(20vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(46vw, -125vh, 0);
        transform: translate3d(46vw, -125vh, 0);
    }
}

@keyframes an-move-frames-112 {
    from {
        -webkit-transform: translate3d(20vw, 110vh, 0);
        transform: translate3d(20vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(46vw, -125vh, 0);
        transform: translate3d(46vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(112) .ag-fireflies_inner {
    -webkit-animation-delay: 449ms;
    animation-delay: 449ms;
}

.ag-fireflies_item:nth-child(113) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-113;
    animation-name: an-move-frames-113;
    -webkit-animation-duration: 28657ms;
    animation-duration: 28657ms;
    -webkit-animation-delay: 7459ms;
    animation-delay: 7459ms;
}

@-webkit-keyframes an-move-frames-113 {
    from {
        -webkit-transform: translate3d(81vw, 106vh, 0);
        transform: translate3d(81vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(28vw, -115vh, 0);
        transform: translate3d(28vw, -115vh, 0);
    }
}

@keyframes an-move-frames-113 {
    from {
        -webkit-transform: translate3d(81vw, 106vh, 0);
        transform: translate3d(81vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(28vw, -115vh, 0);
        transform: translate3d(28vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(113) .ag-fireflies_inner {
    -webkit-animation-delay: 1296ms;
    animation-delay: 1296ms;
}

.ag-fireflies_item:nth-child(114) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-114;
    animation-name: an-move-frames-114;
    -webkit-animation-duration: 32605ms;
    animation-duration: 32605ms;
    -webkit-animation-delay: 3384ms;
    animation-delay: 3384ms;
}

@-webkit-keyframes an-move-frames-114 {
    from {
        -webkit-transform: translate3d(14vw, 110vh, 0);
        transform: translate3d(14vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(12vw, -140vh, 0);
        transform: translate3d(12vw, -140vh, 0);
    }
}

@keyframes an-move-frames-114 {
    from {
        -webkit-transform: translate3d(14vw, 110vh, 0);
        transform: translate3d(14vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(12vw, -140vh, 0);
        transform: translate3d(12vw, -140vh, 0);
    }
}

.ag-fireflies_item:nth-child(114) .ag-fireflies_inner {
    -webkit-animation-delay: 1884ms;
    animation-delay: 1884ms;
}

.ag-fireflies_item:nth-child(115) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-115;
    animation-name: an-move-frames-115;
    -webkit-animation-duration: 34221ms;
    animation-duration: 34221ms;
    -webkit-animation-delay: 13619ms;
    animation-delay: 13619ms;
}

@-webkit-keyframes an-move-frames-115 {
    from {
        -webkit-transform: translate3d(26vw, 104vh, 0);
        transform: translate3d(26vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -121vh, 0);
        transform: translate3d(20vw, -121vh, 0);
    }
}

@keyframes an-move-frames-115 {
    from {
        -webkit-transform: translate3d(26vw, 104vh, 0);
        transform: translate3d(26vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(20vw, -121vh, 0);
        transform: translate3d(20vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(115) .ag-fireflies_inner {
    -webkit-animation-delay: 119ms;
    animation-delay: 119ms;
}

.ag-fireflies_item:nth-child(116) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-116;
    animation-name: an-move-frames-116;
    -webkit-animation-duration: 30810ms;
    animation-duration: 30810ms;
    -webkit-animation-delay: 30142ms;
    animation-delay: 30142ms;
}

@-webkit-keyframes an-move-frames-116 {
    from {
        -webkit-transform: translate3d(39vw, 109vh, 0);
        transform: translate3d(39vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -129vh, 0);
        transform: translate3d(94vw, -129vh, 0);
    }
}

@keyframes an-move-frames-116 {
    from {
        -webkit-transform: translate3d(39vw, 109vh, 0);
        transform: translate3d(39vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -129vh, 0);
        transform: translate3d(94vw, -129vh, 0);
    }
}

.ag-fireflies_item:nth-child(116) .ag-fireflies_inner {
    -webkit-animation-delay: 1018ms;
    animation-delay: 1018ms;
}

.ag-fireflies_item:nth-child(117) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-117;
    animation-name: an-move-frames-117;
    -webkit-animation-duration: 32505ms;
    animation-duration: 32505ms;
    -webkit-animation-delay: 32816ms;
    animation-delay: 32816ms;
}

@-webkit-keyframes an-move-frames-117 {
    from {
        -webkit-transform: translate3d(35vw, 109vh, 0);
        transform: translate3d(35vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(81vw, -129vh, 0);
        transform: translate3d(81vw, -129vh, 0);
    }
}

@keyframes an-move-frames-117 {
    from {
        -webkit-transform: translate3d(35vw, 109vh, 0);
        transform: translate3d(35vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(81vw, -129vh, 0);
        transform: translate3d(81vw, -129vh, 0);
    }
}

.ag-fireflies_item:nth-child(117) .ag-fireflies_inner {
    -webkit-animation-delay: 1073ms;
    animation-delay: 1073ms;
}

.ag-fireflies_item:nth-child(118) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-118;
    animation-name: an-move-frames-118;
    -webkit-animation-duration: 31564ms;
    animation-duration: 31564ms;
    -webkit-animation-delay: 26432ms;
    animation-delay: 26432ms;
}

@-webkit-keyframes an-move-frames-118 {
    from {
        -webkit-transform: translate3d(60vw, 101vh, 0);
        transform: translate3d(60vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -103vh, 0);
        transform: translate3d(11vw, -103vh, 0);
    }
}

@keyframes an-move-frames-118 {
    from {
        -webkit-transform: translate3d(60vw, 101vh, 0);
        transform: translate3d(60vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -103vh, 0);
        transform: translate3d(11vw, -103vh, 0);
    }
}

.ag-fireflies_item:nth-child(118) .ag-fireflies_inner {
    -webkit-animation-delay: 2309ms;
    animation-delay: 2309ms;
}

.ag-fireflies_item:nth-child(119) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-119;
    animation-name: an-move-frames-119;
    -webkit-animation-duration: 29590ms;
    animation-duration: 29590ms;
    -webkit-animation-delay: 6280ms;
    animation-delay: 6280ms;
}

@-webkit-keyframes an-move-frames-119 {
    from {
        -webkit-transform: translate3d(86vw, 101vh, 0);
        transform: translate3d(86vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(21vw, -122vh, 0);
        transform: translate3d(21vw, -122vh, 0);
    }
}

@keyframes an-move-frames-119 {
    from {
        -webkit-transform: translate3d(86vw, 101vh, 0);
        transform: translate3d(86vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(21vw, -122vh, 0);
        transform: translate3d(21vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(119) .ag-fireflies_inner {
    -webkit-animation-delay: 1618ms;
    animation-delay: 1618ms;
}

.ag-fireflies_item:nth-child(120) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-120;
    animation-name: an-move-frames-120;
    -webkit-animation-duration: 28379ms;
    animation-duration: 28379ms;
    -webkit-animation-delay: 12660ms;
    animation-delay: 12660ms;
}

@-webkit-keyframes an-move-frames-120 {
    from {
        -webkit-transform: translate3d(55vw, 102vh, 0);
        transform: translate3d(55vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(76vw, -105vh, 0);
        transform: translate3d(76vw, -105vh, 0);
    }
}

@keyframes an-move-frames-120 {
    from {
        -webkit-transform: translate3d(55vw, 102vh, 0);
        transform: translate3d(55vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(76vw, -105vh, 0);
        transform: translate3d(76vw, -105vh, 0);
    }
}

.ag-fireflies_item:nth-child(120) .ag-fireflies_inner {
    -webkit-animation-delay: 389ms;
    animation-delay: 389ms;
}

.ag-fireflies_item:nth-child(121) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-121;
    animation-name: an-move-frames-121;
    -webkit-animation-duration: 29625ms;
    animation-duration: 29625ms;
    -webkit-animation-delay: 17942ms;
    animation-delay: 17942ms;
}

@-webkit-keyframes an-move-frames-121 {
    from {
        -webkit-transform: translate3d(1vw, 103vh, 0);
        transform: translate3d(1vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(81vw, -123vh, 0);
        transform: translate3d(81vw, -123vh, 0);
    }
}

@keyframes an-move-frames-121 {
    from {
        -webkit-transform: translate3d(1vw, 103vh, 0);
        transform: translate3d(1vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(81vw, -123vh, 0);
        transform: translate3d(81vw, -123vh, 0);
    }
}

.ag-fireflies_item:nth-child(121) .ag-fireflies_inner {
    -webkit-animation-delay: 1046ms;
    animation-delay: 1046ms;
}

.ag-fireflies_item:nth-child(122) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-122;
    animation-name: an-move-frames-122;
    -webkit-animation-duration: 28219ms;
    animation-duration: 28219ms;
    -webkit-animation-delay: 34522ms;
    animation-delay: 34522ms;
}

@-webkit-keyframes an-move-frames-122 {
    from {
        -webkit-transform: translate3d(26vw, 106vh, 0);
        transform: translate3d(26vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -128vh, 0);
        transform: translate3d(43vw, -128vh, 0);
    }
}

@keyframes an-move-frames-122 {
    from {
        -webkit-transform: translate3d(26vw, 106vh, 0);
        transform: translate3d(26vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -128vh, 0);
        transform: translate3d(43vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(122) .ag-fireflies_inner {
    -webkit-animation-delay: 2275ms;
    animation-delay: 2275ms;
}

.ag-fireflies_item:nth-child(123) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-123;
    animation-name: an-move-frames-123;
    -webkit-animation-duration: 33762ms;
    animation-duration: 33762ms;
    -webkit-animation-delay: 31412ms;
    animation-delay: 31412ms;
}

@-webkit-keyframes an-move-frames-123 {
    from {
        -webkit-transform: translate3d(98vw, 106vh, 0);
        transform: translate3d(98vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -131vh, 0);
        transform: translate3d(43vw, -131vh, 0);
    }
}

@keyframes an-move-frames-123 {
    from {
        -webkit-transform: translate3d(98vw, 106vh, 0);
        transform: translate3d(98vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -131vh, 0);
        transform: translate3d(43vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(123) .ag-fireflies_inner {
    -webkit-animation-delay: 801ms;
    animation-delay: 801ms;
}

.ag-fireflies_item:nth-child(124) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-124;
    animation-name: an-move-frames-124;
    -webkit-animation-duration: 34716ms;
    animation-duration: 34716ms;
    -webkit-animation-delay: 19493ms;
    animation-delay: 19493ms;
}

@-webkit-keyframes an-move-frames-124 {
    from {
        -webkit-transform: translate3d(63vw, 103vh, 0);
        transform: translate3d(63vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(68vw, -106vh, 0);
        transform: translate3d(68vw, -106vh, 0);
    }
}

@keyframes an-move-frames-124 {
    from {
        -webkit-transform: translate3d(63vw, 103vh, 0);
        transform: translate3d(63vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(68vw, -106vh, 0);
        transform: translate3d(68vw, -106vh, 0);
    }
}

.ag-fireflies_item:nth-child(124) .ag-fireflies_inner {
    -webkit-animation-delay: 30ms;
    animation-delay: 30ms;
}

.ag-fireflies_item:nth-child(125) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-125;
    animation-name: an-move-frames-125;
    -webkit-animation-duration: 35093ms;
    animation-duration: 35093ms;
    -webkit-animation-delay: 11498ms;
    animation-delay: 11498ms;
}

@-webkit-keyframes an-move-frames-125 {
    from {
        -webkit-transform: translate3d(31vw, 107vh, 0);
        transform: translate3d(31vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -133vh, 0);
        transform: translate3d(63vw, -133vh, 0);
    }
}

@keyframes an-move-frames-125 {
    from {
        -webkit-transform: translate3d(31vw, 107vh, 0);
        transform: translate3d(31vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -133vh, 0);
        transform: translate3d(63vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(125) .ag-fireflies_inner {
    -webkit-animation-delay: 116ms;
    animation-delay: 116ms;
}

.ag-fireflies_item:nth-child(126) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-126;
    animation-name: an-move-frames-126;
    -webkit-animation-duration: 31163ms;
    animation-duration: 31163ms;
    -webkit-animation-delay: 32385ms;
    animation-delay: 32385ms;
}

@-webkit-keyframes an-move-frames-126 {
    from {
        -webkit-transform: translate3d(62vw, 103vh, 0);
        transform: translate3d(62vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(68vw, -123vh, 0);
        transform: translate3d(68vw, -123vh, 0);
    }
}

@keyframes an-move-frames-126 {
    from {
        -webkit-transform: translate3d(62vw, 103vh, 0);
        transform: translate3d(62vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(68vw, -123vh, 0);
        transform: translate3d(68vw, -123vh, 0);
    }
}

.ag-fireflies_item:nth-child(126) .ag-fireflies_inner {
    -webkit-animation-delay: 3455ms;
    animation-delay: 3455ms;
}

.ag-fireflies_item:nth-child(127) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-127;
    animation-name: an-move-frames-127;
    -webkit-animation-duration: 33152ms;
    animation-duration: 33152ms;
    -webkit-animation-delay: 4061ms;
    animation-delay: 4061ms;
}

@-webkit-keyframes an-move-frames-127 {
    from {
        -webkit-transform: translate3d(74vw, 106vh, 0);
        transform: translate3d(74vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(77vw, -131vh, 0);
        transform: translate3d(77vw, -131vh, 0);
    }
}

@keyframes an-move-frames-127 {
    from {
        -webkit-transform: translate3d(74vw, 106vh, 0);
        transform: translate3d(74vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(77vw, -131vh, 0);
        transform: translate3d(77vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(127) .ag-fireflies_inner {
    -webkit-animation-delay: 2995ms;
    animation-delay: 2995ms;
}

.ag-fireflies_item:nth-child(128) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-128;
    animation-name: an-move-frames-128;
    -webkit-animation-duration: 29781ms;
    animation-duration: 29781ms;
    -webkit-animation-delay: 11875ms;
    animation-delay: 11875ms;
}

@-webkit-keyframes an-move-frames-128 {
    from {
        -webkit-transform: translate3d(51vw, 101vh, 0);
        transform: translate3d(51vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(5vw, -106vh, 0);
        transform: translate3d(5vw, -106vh, 0);
    }
}

@keyframes an-move-frames-128 {
    from {
        -webkit-transform: translate3d(51vw, 101vh, 0);
        transform: translate3d(51vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(5vw, -106vh, 0);
        transform: translate3d(5vw, -106vh, 0);
    }
}

.ag-fireflies_item:nth-child(128) .ag-fireflies_inner {
    -webkit-animation-delay: 1020ms;
    animation-delay: 1020ms;
}

.ag-fireflies_item:nth-child(129) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-129;
    animation-name: an-move-frames-129;
    -webkit-animation-duration: 32994ms;
    animation-duration: 32994ms;
    -webkit-animation-delay: 16070ms;
    animation-delay: 16070ms;
}

@-webkit-keyframes an-move-frames-129 {
    from {
        -webkit-transform: translate3d(38vw, 102vh, 0);
        transform: translate3d(38vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -105vh, 0);
        transform: translate3d(43vw, -105vh, 0);
    }
}

@keyframes an-move-frames-129 {
    from {
        -webkit-transform: translate3d(38vw, 102vh, 0);
        transform: translate3d(38vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(43vw, -105vh, 0);
        transform: translate3d(43vw, -105vh, 0);
    }
}

.ag-fireflies_item:nth-child(129) .ag-fireflies_inner {
    -webkit-animation-delay: 2312ms;
    animation-delay: 2312ms;
}

.ag-fireflies_item:nth-child(130) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-130;
    animation-name: an-move-frames-130;
    -webkit-animation-duration: 35964ms;
    animation-duration: 35964ms;
    -webkit-animation-delay: 1741ms;
    animation-delay: 1741ms;
}

@-webkit-keyframes an-move-frames-130 {
    from {
        -webkit-transform: translate3d(1vw, 103vh, 0);
        transform: translate3d(1vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(10vw, -107vh, 0);
        transform: translate3d(10vw, -107vh, 0);
    }
}

@keyframes an-move-frames-130 {
    from {
        -webkit-transform: translate3d(1vw, 103vh, 0);
        transform: translate3d(1vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(10vw, -107vh, 0);
        transform: translate3d(10vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(130) .ag-fireflies_inner {
    -webkit-animation-delay: 3905ms;
    animation-delay: 3905ms;
}

.ag-fireflies_item:nth-child(131) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-131;
    animation-name: an-move-frames-131;
    -webkit-animation-duration: 35559ms;
    animation-duration: 35559ms;
    -webkit-animation-delay: 16612ms;
    animation-delay: 16612ms;
}

@-webkit-keyframes an-move-frames-131 {
    from {
        -webkit-transform: translate3d(55vw, 101vh, 0);
        transform: translate3d(55vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(4vw, -130vh, 0);
        transform: translate3d(4vw, -130vh, 0);
    }
}

@keyframes an-move-frames-131 {
    from {
        -webkit-transform: translate3d(55vw, 101vh, 0);
        transform: translate3d(55vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(4vw, -130vh, 0);
        transform: translate3d(4vw, -130vh, 0);
    }
}

.ag-fireflies_item:nth-child(131) .ag-fireflies_inner {
    -webkit-animation-delay: 818ms;
    animation-delay: 818ms;
}

.ag-fireflies_item:nth-child(132) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-132;
    animation-name: an-move-frames-132;
    -webkit-animation-duration: 35700ms;
    animation-duration: 35700ms;
    -webkit-animation-delay: 34581ms;
    animation-delay: 34581ms;
}

@-webkit-keyframes an-move-frames-132 {
    from {
        -webkit-transform: translate3d(28vw, 101vh, 0);
        transform: translate3d(28vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -118vh, 0);
        transform: translate3d(93vw, -118vh, 0);
    }
}

@keyframes an-move-frames-132 {
    from {
        -webkit-transform: translate3d(28vw, 101vh, 0);
        transform: translate3d(28vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(93vw, -118vh, 0);
        transform: translate3d(93vw, -118vh, 0);
    }
}

.ag-fireflies_item:nth-child(132) .ag-fireflies_inner {
    -webkit-animation-delay: 2517ms;
    animation-delay: 2517ms;
}

.ag-fireflies_item:nth-child(133) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-133;
    animation-name: an-move-frames-133;
    -webkit-animation-duration: 28661ms;
    animation-duration: 28661ms;
    -webkit-animation-delay: 26996ms;
    animation-delay: 26996ms;
}

@-webkit-keyframes an-move-frames-133 {
    from {
        -webkit-transform: translate3d(60vw, 107vh, 0);
        transform: translate3d(60vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(76vw, -137vh, 0);
        transform: translate3d(76vw, -137vh, 0);
    }
}

@keyframes an-move-frames-133 {
    from {
        -webkit-transform: translate3d(60vw, 107vh, 0);
        transform: translate3d(60vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(76vw, -137vh, 0);
        transform: translate3d(76vw, -137vh, 0);
    }
}

.ag-fireflies_item:nth-child(133) .ag-fireflies_inner {
    -webkit-animation-delay: 215ms;
    animation-delay: 215ms;
}

.ag-fireflies_item:nth-child(134) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-134;
    animation-name: an-move-frames-134;
    -webkit-animation-duration: 34905ms;
    animation-duration: 34905ms;
    -webkit-animation-delay: 22248ms;
    animation-delay: 22248ms;
}

@-webkit-keyframes an-move-frames-134 {
    from {
        -webkit-transform: translate3d(100vw, 105vh, 0);
        transform: translate3d(100vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(45vw, -110vh, 0);
        transform: translate3d(45vw, -110vh, 0);
    }
}

@keyframes an-move-frames-134 {
    from {
        -webkit-transform: translate3d(100vw, 105vh, 0);
        transform: translate3d(100vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(45vw, -110vh, 0);
        transform: translate3d(45vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(134) .ag-fireflies_inner {
    -webkit-animation-delay: 3968ms;
    animation-delay: 3968ms;
}

.ag-fireflies_item:nth-child(135) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-135;
    animation-name: an-move-frames-135;
    -webkit-animation-duration: 29126ms;
    animation-duration: 29126ms;
    -webkit-animation-delay: 2880ms;
    animation-delay: 2880ms;
}

@-webkit-keyframes an-move-frames-135 {
    from {
        -webkit-transform: translate3d(45vw, 108vh, 0);
        transform: translate3d(45vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(29vw, -121vh, 0);
        transform: translate3d(29vw, -121vh, 0);
    }
}

@keyframes an-move-frames-135 {
    from {
        -webkit-transform: translate3d(45vw, 108vh, 0);
        transform: translate3d(45vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(29vw, -121vh, 0);
        transform: translate3d(29vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(135) .ag-fireflies_inner {
    -webkit-animation-delay: 2500ms;
    animation-delay: 2500ms;
}

.ag-fireflies_item:nth-child(136) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-136;
    animation-name: an-move-frames-136;
    -webkit-animation-duration: 28666ms;
    animation-duration: 28666ms;
    -webkit-animation-delay: 37ms;
    animation-delay: 37ms;
}

@-webkit-keyframes an-move-frames-136 {
    from {
        -webkit-transform: translate3d(75vw, 104vh, 0);
        transform: translate3d(75vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(88vw, -129vh, 0);
        transform: translate3d(88vw, -129vh, 0);
    }
}

@keyframes an-move-frames-136 {
    from {
        -webkit-transform: translate3d(75vw, 104vh, 0);
        transform: translate3d(75vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(88vw, -129vh, 0);
        transform: translate3d(88vw, -129vh, 0);
    }
}

.ag-fireflies_item:nth-child(136) .ag-fireflies_inner {
    -webkit-animation-delay: 726ms;
    animation-delay: 726ms;
}

.ag-fireflies_item:nth-child(137) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-137;
    animation-name: an-move-frames-137;
    -webkit-animation-duration: 30304ms;
    animation-duration: 30304ms;
    -webkit-animation-delay: 17669ms;
    animation-delay: 17669ms;
}

@-webkit-keyframes an-move-frames-137 {
    from {
        -webkit-transform: translate3d(58vw, 101vh, 0);
        transform: translate3d(58vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -116vh, 0);
        transform: translate3d(60vw, -116vh, 0);
    }
}

@keyframes an-move-frames-137 {
    from {
        -webkit-transform: translate3d(58vw, 101vh, 0);
        transform: translate3d(58vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -116vh, 0);
        transform: translate3d(60vw, -116vh, 0);
    }
}

.ag-fireflies_item:nth-child(137) .ag-fireflies_inner {
    -webkit-animation-delay: 2831ms;
    animation-delay: 2831ms;
}

.ag-fireflies_item:nth-child(138) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-138;
    animation-name: an-move-frames-138;
    -webkit-animation-duration: 28065ms;
    animation-duration: 28065ms;
    -webkit-animation-delay: 28402ms;
    animation-delay: 28402ms;
}

@-webkit-keyframes an-move-frames-138 {
    from {
        -webkit-transform: translate3d(54vw, 108vh, 0);
        transform: translate3d(54vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(15vw, -117vh, 0);
        transform: translate3d(15vw, -117vh, 0);
    }
}

@keyframes an-move-frames-138 {
    from {
        -webkit-transform: translate3d(54vw, 108vh, 0);
        transform: translate3d(54vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(15vw, -117vh, 0);
        transform: translate3d(15vw, -117vh, 0);
    }
}

.ag-fireflies_item:nth-child(138) .ag-fireflies_inner {
    -webkit-animation-delay: 2482ms;
    animation-delay: 2482ms;
}

.ag-fireflies_item:nth-child(139) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-139;
    animation-name: an-move-frames-139;
    -webkit-animation-duration: 29743ms;
    animation-duration: 29743ms;
    -webkit-animation-delay: 36592ms;
    animation-delay: 36592ms;
}

@-webkit-keyframes an-move-frames-139 {
    from {
        -webkit-transform: translate3d(46vw, 104vh, 0);
        transform: translate3d(46vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -105vh, 0);
        transform: translate3d(42vw, -105vh, 0);
    }
}

@keyframes an-move-frames-139 {
    from {
        -webkit-transform: translate3d(46vw, 104vh, 0);
        transform: translate3d(46vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(42vw, -105vh, 0);
        transform: translate3d(42vw, -105vh, 0);
    }
}

.ag-fireflies_item:nth-child(139) .ag-fireflies_inner {
    -webkit-animation-delay: 528ms;
    animation-delay: 528ms;
}

.ag-fireflies_item:nth-child(140) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-140;
    animation-name: an-move-frames-140;
    -webkit-animation-duration: 31117ms;
    animation-duration: 31117ms;
    -webkit-animation-delay: 21519ms;
    animation-delay: 21519ms;
}

@-webkit-keyframes an-move-frames-140 {
    from {
        -webkit-transform: translate3d(37vw, 102vh, 0);
        transform: translate3d(37vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(34vw, -120vh, 0);
        transform: translate3d(34vw, -120vh, 0);
    }
}

@keyframes an-move-frames-140 {
    from {
        -webkit-transform: translate3d(37vw, 102vh, 0);
        transform: translate3d(37vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(34vw, -120vh, 0);
        transform: translate3d(34vw, -120vh, 0);
    }
}

.ag-fireflies_item:nth-child(140) .ag-fireflies_inner {
    -webkit-animation-delay: 1816ms;
    animation-delay: 1816ms;
}

.ag-fireflies_item:nth-child(141) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-141;
    animation-name: an-move-frames-141;
    -webkit-animation-duration: 36595ms;
    animation-duration: 36595ms;
    -webkit-animation-delay: 17550ms;
    animation-delay: 17550ms;
}

@-webkit-keyframes an-move-frames-141 {
    from {
        -webkit-transform: translate3d(24vw, 109vh, 0);
        transform: translate3d(24vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(64vw, -131vh, 0);
        transform: translate3d(64vw, -131vh, 0);
    }
}

@keyframes an-move-frames-141 {
    from {
        -webkit-transform: translate3d(24vw, 109vh, 0);
        transform: translate3d(24vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(64vw, -131vh, 0);
        transform: translate3d(64vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(141) .ag-fireflies_inner {
    -webkit-animation-delay: 3334ms;
    animation-delay: 3334ms;
}

.ag-fireflies_item:nth-child(142) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-142;
    animation-name: an-move-frames-142;
    -webkit-animation-duration: 35147ms;
    animation-duration: 35147ms;
    -webkit-animation-delay: 12549ms;
    animation-delay: 12549ms;
}

@-webkit-keyframes an-move-frames-142 {
    from {
        -webkit-transform: translate3d(32vw, 104vh, 0);
        transform: translate3d(32vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(89vw, -129vh, 0);
        transform: translate3d(89vw, -129vh, 0);
    }
}

@keyframes an-move-frames-142 {
    from {
        -webkit-transform: translate3d(32vw, 104vh, 0);
        transform: translate3d(32vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(89vw, -129vh, 0);
        transform: translate3d(89vw, -129vh, 0);
    }
}

.ag-fireflies_item:nth-child(142) .ag-fireflies_inner {
    -webkit-animation-delay: 1761ms;
    animation-delay: 1761ms;
}

.ag-fireflies_item:nth-child(143) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-143;
    animation-name: an-move-frames-143;
    -webkit-animation-duration: 35884ms;
    animation-duration: 35884ms;
    -webkit-animation-delay: 14000ms;
    animation-delay: 14000ms;
}

@-webkit-keyframes an-move-frames-143 {
    from {
        -webkit-transform: translate3d(16vw, 106vh, 0);
        transform: translate3d(16vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(75vw, -128vh, 0);
        transform: translate3d(75vw, -128vh, 0);
    }
}

@keyframes an-move-frames-143 {
    from {
        -webkit-transform: translate3d(16vw, 106vh, 0);
        transform: translate3d(16vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(75vw, -128vh, 0);
        transform: translate3d(75vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(143) .ag-fireflies_inner {
    -webkit-animation-delay: 297ms;
    animation-delay: 297ms;
}

.ag-fireflies_item:nth-child(144) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-144;
    animation-name: an-move-frames-144;
    -webkit-animation-duration: 30518ms;
    animation-duration: 30518ms;
    -webkit-animation-delay: 7648ms;
    animation-delay: 7648ms;
}

@-webkit-keyframes an-move-frames-144 {
    from {
        -webkit-transform: translate3d(85vw, 110vh, 0);
        transform: translate3d(85vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(9vw, -115vh, 0);
        transform: translate3d(9vw, -115vh, 0);
    }
}

@keyframes an-move-frames-144 {
    from {
        -webkit-transform: translate3d(85vw, 110vh, 0);
        transform: translate3d(85vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(9vw, -115vh, 0);
        transform: translate3d(9vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(144) .ag-fireflies_inner {
    -webkit-animation-delay: 2010ms;
    animation-delay: 2010ms;
}

.ag-fireflies_item:nth-child(145) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-145;
    animation-name: an-move-frames-145;
    -webkit-animation-duration: 30093ms;
    animation-duration: 30093ms;
    -webkit-animation-delay: 21729ms;
    animation-delay: 21729ms;
}

@-webkit-keyframes an-move-frames-145 {
    from {
        -webkit-transform: translate3d(78vw, 107vh, 0);
        transform: translate3d(78vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -133vh, 0);
        transform: translate3d(62vw, -133vh, 0);
    }
}

@keyframes an-move-frames-145 {
    from {
        -webkit-transform: translate3d(78vw, 107vh, 0);
        transform: translate3d(78vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -133vh, 0);
        transform: translate3d(62vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(145) .ag-fireflies_inner {
    -webkit-animation-delay: 2444ms;
    animation-delay: 2444ms;
}

.ag-fireflies_item:nth-child(146) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-146;
    animation-name: an-move-frames-146;
    -webkit-animation-duration: 33975ms;
    animation-duration: 33975ms;
    -webkit-animation-delay: 9135ms;
    animation-delay: 9135ms;
}

@-webkit-keyframes an-move-frames-146 {
    from {
        -webkit-transform: translate3d(91vw, 108vh, 0);
        transform: translate3d(91vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(75vw, -122vh, 0);
        transform: translate3d(75vw, -122vh, 0);
    }
}

@keyframes an-move-frames-146 {
    from {
        -webkit-transform: translate3d(91vw, 108vh, 0);
        transform: translate3d(91vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(75vw, -122vh, 0);
        transform: translate3d(75vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(146) .ag-fireflies_inner {
    -webkit-animation-delay: 2024ms;
    animation-delay: 2024ms;
}

.ag-fireflies_item:nth-child(147) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-147;
    animation-name: an-move-frames-147;
    -webkit-animation-duration: 30202ms;
    animation-duration: 30202ms;
    -webkit-animation-delay: 8100ms;
    animation-delay: 8100ms;
}

@-webkit-keyframes an-move-frames-147 {
    from {
        -webkit-transform: translate3d(69vw, 107vh, 0);
        transform: translate3d(69vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(22vw, -130vh, 0);
        transform: translate3d(22vw, -130vh, 0);
    }
}

@keyframes an-move-frames-147 {
    from {
        -webkit-transform: translate3d(69vw, 107vh, 0);
        transform: translate3d(69vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(22vw, -130vh, 0);
        transform: translate3d(22vw, -130vh, 0);
    }
}

.ag-fireflies_item:nth-child(147) .ag-fireflies_inner {
    -webkit-animation-delay: 1377ms;
    animation-delay: 1377ms;
}

.ag-fireflies_item:nth-child(148) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-148;
    animation-name: an-move-frames-148;
    -webkit-animation-duration: 35863ms;
    animation-duration: 35863ms;
    -webkit-animation-delay: 35450ms;
    animation-delay: 35450ms;
}

@-webkit-keyframes an-move-frames-148 {
    from {
        -webkit-transform: translate3d(11vw, 106vh, 0);
        transform: translate3d(11vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -121vh, 0);
        transform: translate3d(31vw, -121vh, 0);
    }
}

@keyframes an-move-frames-148 {
    from {
        -webkit-transform: translate3d(11vw, 106vh, 0);
        transform: translate3d(11vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(31vw, -121vh, 0);
        transform: translate3d(31vw, -121vh, 0);
    }
}

.ag-fireflies_item:nth-child(148) .ag-fireflies_inner {
    -webkit-animation-delay: 617ms;
    animation-delay: 617ms;
}

.ag-fireflies_item:nth-child(149) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-149;
    animation-name: an-move-frames-149;
    -webkit-animation-duration: 29760ms;
    animation-duration: 29760ms;
    -webkit-animation-delay: 805ms;
    animation-delay: 805ms;
}

@-webkit-keyframes an-move-frames-149 {
    from {
        -webkit-transform: translate3d(10vw, 109vh, 0);
        transform: translate3d(10vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -133vh, 0);
        transform: translate3d(24vw, -133vh, 0);
    }
}

@keyframes an-move-frames-149 {
    from {
        -webkit-transform: translate3d(10vw, 109vh, 0);
        transform: translate3d(10vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -133vh, 0);
        transform: translate3d(24vw, -133vh, 0);
    }
}

.ag-fireflies_item:nth-child(149) .ag-fireflies_inner {
    -webkit-animation-delay: 2745ms;
    animation-delay: 2745ms;
}

.ag-fireflies_item:nth-child(150) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-150;
    animation-name: an-move-frames-150;
    -webkit-animation-duration: 28892ms;
    animation-duration: 28892ms;
    -webkit-animation-delay: 17611ms;
    animation-delay: 17611ms;
}

@-webkit-keyframes an-move-frames-150 {
    from {
        -webkit-transform: translate3d(24vw, 108vh, 0);
        transform: translate3d(24vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(27vw, -113vh, 0);
        transform: translate3d(27vw, -113vh, 0);
    }
}

@keyframes an-move-frames-150 {
    from {
        -webkit-transform: translate3d(24vw, 108vh, 0);
        transform: translate3d(24vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(27vw, -113vh, 0);
        transform: translate3d(27vw, -113vh, 0);
    }
}

.ag-fireflies_item:nth-child(150) .ag-fireflies_inner {
    -webkit-animation-delay: 2530ms;
    animation-delay: 2530ms;
}

.ag-fireflies_item:nth-child(151) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-151;
    animation-name: an-move-frames-151;
    -webkit-animation-duration: 33297ms;
    animation-duration: 33297ms;
    -webkit-animation-delay: 12319ms;
    animation-delay: 12319ms;
}

@-webkit-keyframes an-move-frames-151 {
    from {
        -webkit-transform: translate3d(57vw, 106vh, 0);
        transform: translate3d(57vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(45vw, -127vh, 0);
        transform: translate3d(45vw, -127vh, 0);
    }
}

@keyframes an-move-frames-151 {
    from {
        -webkit-transform: translate3d(57vw, 106vh, 0);
        transform: translate3d(57vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(45vw, -127vh, 0);
        transform: translate3d(45vw, -127vh, 0);
    }
}

.ag-fireflies_item:nth-child(151) .ag-fireflies_inner {
    -webkit-animation-delay: 1054ms;
    animation-delay: 1054ms;
}

.ag-fireflies_item:nth-child(152) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-152;
    animation-name: an-move-frames-152;
    -webkit-animation-duration: 28981ms;
    animation-duration: 28981ms;
    -webkit-animation-delay: 1608ms;
    animation-delay: 1608ms;
}

@-webkit-keyframes an-move-frames-152 {
    from {
        -webkit-transform: translate3d(9vw, 106vh, 0);
        transform: translate3d(9vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(22vw, -126vh, 0);
        transform: translate3d(22vw, -126vh, 0);
    }
}

@keyframes an-move-frames-152 {
    from {
        -webkit-transform: translate3d(9vw, 106vh, 0);
        transform: translate3d(9vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(22vw, -126vh, 0);
        transform: translate3d(22vw, -126vh, 0);
    }
}

.ag-fireflies_item:nth-child(152) .ag-fireflies_inner {
    -webkit-animation-delay: 1751ms;
    animation-delay: 1751ms;
}

.ag-fireflies_item:nth-child(153) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-153;
    animation-name: an-move-frames-153;
    -webkit-animation-duration: 34323ms;
    animation-duration: 34323ms;
    -webkit-animation-delay: 31389ms;
    animation-delay: 31389ms;
}

@-webkit-keyframes an-move-frames-153 {
    from {
        -webkit-transform: translate3d(89vw, 101vh, 0);
        transform: translate3d(89vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(29vw, -110vh, 0);
        transform: translate3d(29vw, -110vh, 0);
    }
}

@keyframes an-move-frames-153 {
    from {
        -webkit-transform: translate3d(89vw, 101vh, 0);
        transform: translate3d(89vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(29vw, -110vh, 0);
        transform: translate3d(29vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(153) .ag-fireflies_inner {
    -webkit-animation-delay: 1290ms;
    animation-delay: 1290ms;
}

.ag-fireflies_item:nth-child(154) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-154;
    animation-name: an-move-frames-154;
    -webkit-animation-duration: 31955ms;
    animation-duration: 31955ms;
    -webkit-animation-delay: 1267ms;
    animation-delay: 1267ms;
}

@-webkit-keyframes an-move-frames-154 {
    from {
        -webkit-transform: translate3d(77vw, 106vh, 0);
        transform: translate3d(77vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -126vh, 0);
        transform: translate3d(66vw, -126vh, 0);
    }
}

@keyframes an-move-frames-154 {
    from {
        -webkit-transform: translate3d(77vw, 106vh, 0);
        transform: translate3d(77vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -126vh, 0);
        transform: translate3d(66vw, -126vh, 0);
    }
}

.ag-fireflies_item:nth-child(154) .ag-fireflies_inner {
    -webkit-animation-delay: 3942ms;
    animation-delay: 3942ms;
}

.ag-fireflies_item:nth-child(155) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-155;
    animation-name: an-move-frames-155;
    -webkit-animation-duration: 29838ms;
    animation-duration: 29838ms;
    -webkit-animation-delay: 15619ms;
    animation-delay: 15619ms;
}

@-webkit-keyframes an-move-frames-155 {
    from {
        -webkit-transform: translate3d(49vw, 109vh, 0);
        transform: translate3d(49vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(79vw, -137vh, 0);
        transform: translate3d(79vw, -137vh, 0);
    }
}

@keyframes an-move-frames-155 {
    from {
        -webkit-transform: translate3d(49vw, 109vh, 0);
        transform: translate3d(49vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(79vw, -137vh, 0);
        transform: translate3d(79vw, -137vh, 0);
    }
}

.ag-fireflies_item:nth-child(155) .ag-fireflies_inner {
    -webkit-animation-delay: 2741ms;
    animation-delay: 2741ms;
}

.ag-fireflies_item:nth-child(156) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-156;
    animation-name: an-move-frames-156;
    -webkit-animation-duration: 34439ms;
    animation-duration: 34439ms;
    -webkit-animation-delay: 27590ms;
    animation-delay: 27590ms;
}

@-webkit-keyframes an-move-frames-156 {
    from {
        -webkit-transform: translate3d(99vw, 102vh, 0);
        transform: translate3d(99vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(51vw, -107vh, 0);
        transform: translate3d(51vw, -107vh, 0);
    }
}

@keyframes an-move-frames-156 {
    from {
        -webkit-transform: translate3d(99vw, 102vh, 0);
        transform: translate3d(99vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(51vw, -107vh, 0);
        transform: translate3d(51vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(156) .ag-fireflies_inner {
    -webkit-animation-delay: 898ms;
    animation-delay: 898ms;
}

.ag-fireflies_item:nth-child(157) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-157;
    animation-name: an-move-frames-157;
    -webkit-animation-duration: 29825ms;
    animation-duration: 29825ms;
    -webkit-animation-delay: 6485ms;
    animation-delay: 6485ms;
}

@-webkit-keyframes an-move-frames-157 {
    from {
        -webkit-transform: translate3d(14vw, 105vh, 0);
        transform: translate3d(14vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(3vw, -112vh, 0);
        transform: translate3d(3vw, -112vh, 0);
    }
}

@keyframes an-move-frames-157 {
    from {
        -webkit-transform: translate3d(14vw, 105vh, 0);
        transform: translate3d(14vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(3vw, -112vh, 0);
        transform: translate3d(3vw, -112vh, 0);
    }
}

.ag-fireflies_item:nth-child(157) .ag-fireflies_inner {
    -webkit-animation-delay: 2343ms;
    animation-delay: 2343ms;
}

.ag-fireflies_item:nth-child(158) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-158;
    animation-name: an-move-frames-158;
    -webkit-animation-duration: 32507ms;
    animation-duration: 32507ms;
    -webkit-animation-delay: 27627ms;
    animation-delay: 27627ms;
}

@-webkit-keyframes an-move-frames-158 {
    from {
        -webkit-transform: translate3d(27vw, 106vh, 0);
        transform: translate3d(27vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(74vw, -120vh, 0);
        transform: translate3d(74vw, -120vh, 0);
    }
}

@keyframes an-move-frames-158 {
    from {
        -webkit-transform: translate3d(27vw, 106vh, 0);
        transform: translate3d(27vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(74vw, -120vh, 0);
        transform: translate3d(74vw, -120vh, 0);
    }
}

.ag-fireflies_item:nth-child(158) .ag-fireflies_inner {
    -webkit-animation-delay: 1506ms;
    animation-delay: 1506ms;
}

.ag-fireflies_item:nth-child(159) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-159;
    animation-name: an-move-frames-159;
    -webkit-animation-duration: 31423ms;
    animation-duration: 31423ms;
    -webkit-animation-delay: 3265ms;
    animation-delay: 3265ms;
}

@-webkit-keyframes an-move-frames-159 {
    from {
        -webkit-transform: translate3d(63vw, 108vh, 0);
        transform: translate3d(63vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(65vw, -130vh, 0);
        transform: translate3d(65vw, -130vh, 0);
    }
}

@keyframes an-move-frames-159 {
    from {
        -webkit-transform: translate3d(63vw, 108vh, 0);
        transform: translate3d(63vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(65vw, -130vh, 0);
        transform: translate3d(65vw, -130vh, 0);
    }
}

.ag-fireflies_item:nth-child(159) .ag-fireflies_inner {
    -webkit-animation-delay: 401ms;
    animation-delay: 401ms;
}

.ag-fireflies_item:nth-child(160) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-160;
    animation-name: an-move-frames-160;
    -webkit-animation-duration: 35209ms;
    animation-duration: 35209ms;
    -webkit-animation-delay: 19246ms;
    animation-delay: 19246ms;
}

@-webkit-keyframes an-move-frames-160 {
    from {
        -webkit-transform: translate3d(97vw, 104vh, 0);
        transform: translate3d(97vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(78vw, -110vh, 0);
        transform: translate3d(78vw, -110vh, 0);
    }
}

@keyframes an-move-frames-160 {
    from {
        -webkit-transform: translate3d(97vw, 104vh, 0);
        transform: translate3d(97vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(78vw, -110vh, 0);
        transform: translate3d(78vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(160) .ag-fireflies_inner {
    -webkit-animation-delay: 2884ms;
    animation-delay: 2884ms;
}

.ag-fireflies_item:nth-child(161) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-161;
    animation-name: an-move-frames-161;
    -webkit-animation-duration: 35392ms;
    animation-duration: 35392ms;
    -webkit-animation-delay: 19024ms;
    animation-delay: 19024ms;
}

@-webkit-keyframes an-move-frames-161 {
    from {
        -webkit-transform: translate3d(47vw, 101vh, 0);
        transform: translate3d(47vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -111vh, 0);
        transform: translate3d(8vw, -111vh, 0);
    }
}

@keyframes an-move-frames-161 {
    from {
        -webkit-transform: translate3d(47vw, 101vh, 0);
        transform: translate3d(47vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -111vh, 0);
        transform: translate3d(8vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(161) .ag-fireflies_inner {
    -webkit-animation-delay: 593ms;
    animation-delay: 593ms;
}

.ag-fireflies_item:nth-child(162) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-162;
    animation-name: an-move-frames-162;
    -webkit-animation-duration: 28689ms;
    animation-duration: 28689ms;
    -webkit-animation-delay: 19995ms;
    animation-delay: 19995ms;
}

@-webkit-keyframes an-move-frames-162 {
    from {
        -webkit-transform: translate3d(38vw, 101vh, 0);
        transform: translate3d(38vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(77vw, -114vh, 0);
        transform: translate3d(77vw, -114vh, 0);
    }
}

@keyframes an-move-frames-162 {
    from {
        -webkit-transform: translate3d(38vw, 101vh, 0);
        transform: translate3d(38vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(77vw, -114vh, 0);
        transform: translate3d(77vw, -114vh, 0);
    }
}

.ag-fireflies_item:nth-child(162) .ag-fireflies_inner {
    -webkit-animation-delay: 1367ms;
    animation-delay: 1367ms;
}

.ag-fireflies_item:nth-child(163) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-163;
    animation-name: an-move-frames-163;
    -webkit-animation-duration: 30864ms;
    animation-duration: 30864ms;
    -webkit-animation-delay: 15511ms;
    animation-delay: 15511ms;
}

@-webkit-keyframes an-move-frames-163 {
    from {
        -webkit-transform: translate3d(61vw, 108vh, 0);
        transform: translate3d(61vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(95vw, -111vh, 0);
        transform: translate3d(95vw, -111vh, 0);
    }
}

@keyframes an-move-frames-163 {
    from {
        -webkit-transform: translate3d(61vw, 108vh, 0);
        transform: translate3d(61vw, 108vh, 0);
    }

    to {
        -webkit-transform: translate3d(95vw, -111vh, 0);
        transform: translate3d(95vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(163) .ag-fireflies_inner {
    -webkit-animation-delay: 1316ms;
    animation-delay: 1316ms;
}

.ag-fireflies_item:nth-child(164) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-164;
    animation-name: an-move-frames-164;
    -webkit-animation-duration: 31279ms;
    animation-duration: 31279ms;
    -webkit-animation-delay: 11102ms;
    animation-delay: 11102ms;
}

@-webkit-keyframes an-move-frames-164 {
    from {
        -webkit-transform: translate3d(40vw, 101vh, 0);
        transform: translate3d(40vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(17vw, -107vh, 0);
        transform: translate3d(17vw, -107vh, 0);
    }
}

@keyframes an-move-frames-164 {
    from {
        -webkit-transform: translate3d(40vw, 101vh, 0);
        transform: translate3d(40vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(17vw, -107vh, 0);
        transform: translate3d(17vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(164) .ag-fireflies_inner {
    -webkit-animation-delay: 630ms;
    animation-delay: 630ms;
}

.ag-fireflies_item:nth-child(165) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-165;
    animation-name: an-move-frames-165;
    -webkit-animation-duration: 28683ms;
    animation-duration: 28683ms;
    -webkit-animation-delay: 8340ms;
    animation-delay: 8340ms;
}

@-webkit-keyframes an-move-frames-165 {
    from {
        -webkit-transform: translate3d(21vw, 103vh, 0);
        transform: translate3d(21vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(52vw, -128vh, 0);
        transform: translate3d(52vw, -128vh, 0);
    }
}

@keyframes an-move-frames-165 {
    from {
        -webkit-transform: translate3d(21vw, 103vh, 0);
        transform: translate3d(21vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(52vw, -128vh, 0);
        transform: translate3d(52vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(165) .ag-fireflies_inner {
    -webkit-animation-delay: 2859ms;
    animation-delay: 2859ms;
}

.ag-fireflies_item:nth-child(166) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-166;
    animation-name: an-move-frames-166;
    -webkit-animation-duration: 36532ms;
    animation-duration: 36532ms;
    -webkit-animation-delay: 7476ms;
    animation-delay: 7476ms;
}

@-webkit-keyframes an-move-frames-166 {
    from {
        -webkit-transform: translate3d(65vw, 107vh, 0);
        transform: translate3d(65vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(6vw, -122vh, 0);
        transform: translate3d(6vw, -122vh, 0);
    }
}

@keyframes an-move-frames-166 {
    from {
        -webkit-transform: translate3d(65vw, 107vh, 0);
        transform: translate3d(65vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(6vw, -122vh, 0);
        transform: translate3d(6vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(166) .ag-fireflies_inner {
    -webkit-animation-delay: 2797ms;
    animation-delay: 2797ms;
}

.ag-fireflies_item:nth-child(167) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-167;
    animation-name: an-move-frames-167;
    -webkit-animation-duration: 28213ms;
    animation-duration: 28213ms;
    -webkit-animation-delay: 6779ms;
    animation-delay: 6779ms;
}

@-webkit-keyframes an-move-frames-167 {
    from {
        -webkit-transform: translate3d(25vw, 102vh, 0);
        transform: translate3d(25vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(84vw, -127vh, 0);
        transform: translate3d(84vw, -127vh, 0);
    }
}

@keyframes an-move-frames-167 {
    from {
        -webkit-transform: translate3d(25vw, 102vh, 0);
        transform: translate3d(25vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(84vw, -127vh, 0);
        transform: translate3d(84vw, -127vh, 0);
    }
}

.ag-fireflies_item:nth-child(167) .ag-fireflies_inner {
    -webkit-animation-delay: 3732ms;
    animation-delay: 3732ms;
}

.ag-fireflies_item:nth-child(168) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-168;
    animation-name: an-move-frames-168;
    -webkit-animation-duration: 33136ms;
    animation-duration: 33136ms;
    -webkit-animation-delay: 12005ms;
    animation-delay: 12005ms;
}

@-webkit-keyframes an-move-frames-168 {
    from {
        -webkit-transform: translate3d(43vw, 105vh, 0);
        transform: translate3d(43vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -127vh, 0);
        transform: translate3d(62vw, -127vh, 0);
    }
}

@keyframes an-move-frames-168 {
    from {
        -webkit-transform: translate3d(43vw, 105vh, 0);
        transform: translate3d(43vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -127vh, 0);
        transform: translate3d(62vw, -127vh, 0);
    }
}

.ag-fireflies_item:nth-child(168) .ag-fireflies_inner {
    -webkit-animation-delay: 2235ms;
    animation-delay: 2235ms;
}

.ag-fireflies_item:nth-child(169) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-169;
    animation-name: an-move-frames-169;
    -webkit-animation-duration: 30211ms;
    animation-duration: 30211ms;
    -webkit-animation-delay: 18155ms;
    animation-delay: 18155ms;
}

@-webkit-keyframes an-move-frames-169 {
    from {
        -webkit-transform: translate3d(74vw, 109vh, 0);
        transform: translate3d(74vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(82vw, -118vh, 0);
        transform: translate3d(82vw, -118vh, 0);
    }
}

@keyframes an-move-frames-169 {
    from {
        -webkit-transform: translate3d(74vw, 109vh, 0);
        transform: translate3d(74vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(82vw, -118vh, 0);
        transform: translate3d(82vw, -118vh, 0);
    }
}

.ag-fireflies_item:nth-child(169) .ag-fireflies_inner {
    -webkit-animation-delay: 1459ms;
    animation-delay: 1459ms;
}

.ag-fireflies_item:nth-child(170) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-170;
    animation-name: an-move-frames-170;
    -webkit-animation-duration: 31126ms;
    animation-duration: 31126ms;
    -webkit-animation-delay: 17244ms;
    animation-delay: 17244ms;
}

@-webkit-keyframes an-move-frames-170 {
    from {
        -webkit-transform: translate3d(52vw, 106vh, 0);
        transform: translate3d(52vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(2vw, -112vh, 0);
        transform: translate3d(2vw, -112vh, 0);
    }
}

@keyframes an-move-frames-170 {
    from {
        -webkit-transform: translate3d(52vw, 106vh, 0);
        transform: translate3d(52vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(2vw, -112vh, 0);
        transform: translate3d(2vw, -112vh, 0);
    }
}

.ag-fireflies_item:nth-child(170) .ag-fireflies_inner {
    -webkit-animation-delay: 2995ms;
    animation-delay: 2995ms;
}

.ag-fireflies_item:nth-child(171) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-171;
    animation-name: an-move-frames-171;
    -webkit-animation-duration: 33058ms;
    animation-duration: 33058ms;
    -webkit-animation-delay: 30469ms;
    animation-delay: 30469ms;
}

@-webkit-keyframes an-move-frames-171 {
    from {
        -webkit-transform: translate3d(51vw, 102vh, 0);
        transform: translate3d(51vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(13vw, -132vh, 0);
        transform: translate3d(13vw, -132vh, 0);
    }
}

@keyframes an-move-frames-171 {
    from {
        -webkit-transform: translate3d(51vw, 102vh, 0);
        transform: translate3d(51vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(13vw, -132vh, 0);
        transform: translate3d(13vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(171) .ag-fireflies_inner {
    -webkit-animation-delay: 2400ms;
    animation-delay: 2400ms;
}

.ag-fireflies_item:nth-child(172) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-172;
    animation-name: an-move-frames-172;
    -webkit-animation-duration: 32437ms;
    animation-duration: 32437ms;
    -webkit-animation-delay: 4025ms;
    animation-delay: 4025ms;
}

@-webkit-keyframes an-move-frames-172 {
    from {
        -webkit-transform: translate3d(53vw, 103vh, 0);
        transform: translate3d(53vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(97vw, -110vh, 0);
        transform: translate3d(97vw, -110vh, 0);
    }
}

@keyframes an-move-frames-172 {
    from {
        -webkit-transform: translate3d(53vw, 103vh, 0);
        transform: translate3d(53vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(97vw, -110vh, 0);
        transform: translate3d(97vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(172) .ag-fireflies_inner {
    -webkit-animation-delay: 1818ms;
    animation-delay: 1818ms;
}

.ag-fireflies_item:nth-child(173) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-173;
    animation-name: an-move-frames-173;
    -webkit-animation-duration: 33257ms;
    animation-duration: 33257ms;
    -webkit-animation-delay: 21700ms;
    animation-delay: 21700ms;
}

@-webkit-keyframes an-move-frames-173 {
    from {
        -webkit-transform: translate3d(34vw, 105vh, 0);
        transform: translate3d(34vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -117vh, 0);
        transform: translate3d(24vw, -117vh, 0);
    }
}

@keyframes an-move-frames-173 {
    from {
        -webkit-transform: translate3d(34vw, 105vh, 0);
        transform: translate3d(34vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(24vw, -117vh, 0);
        transform: translate3d(24vw, -117vh, 0);
    }
}

.ag-fireflies_item:nth-child(173) .ag-fireflies_inner {
    -webkit-animation-delay: 2507ms;
    animation-delay: 2507ms;
}

.ag-fireflies_item:nth-child(174) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-174;
    animation-name: an-move-frames-174;
    -webkit-animation-duration: 35562ms;
    animation-duration: 35562ms;
    -webkit-animation-delay: 13219ms;
    animation-delay: 13219ms;
}

@-webkit-keyframes an-move-frames-174 {
    from {
        -webkit-transform: translate3d(50vw, 109vh, 0);
        transform: translate3d(50vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -132vh, 0);
        transform: translate3d(14vw, -132vh, 0);
    }
}

@keyframes an-move-frames-174 {
    from {
        -webkit-transform: translate3d(50vw, 109vh, 0);
        transform: translate3d(50vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -132vh, 0);
        transform: translate3d(14vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(174) .ag-fireflies_inner {
    -webkit-animation-delay: 2242ms;
    animation-delay: 2242ms;
}

.ag-fireflies_item:nth-child(175) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-175;
    animation-name: an-move-frames-175;
    -webkit-animation-duration: 28292ms;
    animation-duration: 28292ms;
    -webkit-animation-delay: 241ms;
    animation-delay: 241ms;
}

@-webkit-keyframes an-move-frames-175 {
    from {
        -webkit-transform: translate3d(76vw, 107vh, 0);
        transform: translate3d(76vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(10vw, -109vh, 0);
        transform: translate3d(10vw, -109vh, 0);
    }
}

@keyframes an-move-frames-175 {
    from {
        -webkit-transform: translate3d(76vw, 107vh, 0);
        transform: translate3d(76vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(10vw, -109vh, 0);
        transform: translate3d(10vw, -109vh, 0);
    }
}

.ag-fireflies_item:nth-child(175) .ag-fireflies_inner {
    -webkit-animation-delay: 536ms;
    animation-delay: 536ms;
}

.ag-fireflies_item:nth-child(176) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-176;
    animation-name: an-move-frames-176;
    -webkit-animation-duration: 31436ms;
    animation-duration: 31436ms;
    -webkit-animation-delay: 36830ms;
    animation-delay: 36830ms;
}

@-webkit-keyframes an-move-frames-176 {
    from {
        -webkit-transform: translate3d(95vw, 110vh, 0);
        transform: translate3d(95vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(19vw, -125vh, 0);
        transform: translate3d(19vw, -125vh, 0);
    }
}

@keyframes an-move-frames-176 {
    from {
        -webkit-transform: translate3d(95vw, 110vh, 0);
        transform: translate3d(95vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(19vw, -125vh, 0);
        transform: translate3d(19vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(176) .ag-fireflies_inner {
    -webkit-animation-delay: 1307ms;
    animation-delay: 1307ms;
}

.ag-fireflies_item:nth-child(177) {
    width: 8px;
    height: 8px;
    -webkit-animation-name: an-move-frames-177;
    animation-name: an-move-frames-177;
    -webkit-animation-duration: 32155ms;
    animation-duration: 32155ms;
    -webkit-animation-delay: 1155ms;
    animation-delay: 1155ms;
}

@-webkit-keyframes an-move-frames-177 {
    from {
        -webkit-transform: translate3d(65vw, 103vh, 0);
        transform: translate3d(65vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(91vw, -125vh, 0);
        transform: translate3d(91vw, -125vh, 0);
    }
}

@keyframes an-move-frames-177 {
    from {
        -webkit-transform: translate3d(65vw, 103vh, 0);
        transform: translate3d(65vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(91vw, -125vh, 0);
        transform: translate3d(91vw, -125vh, 0);
    }
}

.ag-fireflies_item:nth-child(177) .ag-fireflies_inner {
    -webkit-animation-delay: 2174ms;
    animation-delay: 2174ms;
}

.ag-fireflies_item:nth-child(178) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-178;
    animation-name: an-move-frames-178;
    -webkit-animation-duration: 33620ms;
    animation-duration: 33620ms;
    -webkit-animation-delay: 8093ms;
    animation-delay: 8093ms;
}

@-webkit-keyframes an-move-frames-178 {
    from {
        -webkit-transform: translate3d(71vw, 110vh, 0);
        transform: translate3d(71vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -123vh, 0);
        transform: translate3d(62vw, -123vh, 0);
    }
}

@keyframes an-move-frames-178 {
    from {
        -webkit-transform: translate3d(71vw, 110vh, 0);
        transform: translate3d(71vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -123vh, 0);
        transform: translate3d(62vw, -123vh, 0);
    }
}

.ag-fireflies_item:nth-child(178) .ag-fireflies_inner {
    -webkit-animation-delay: 178ms;
    animation-delay: 178ms;
}

.ag-fireflies_item:nth-child(179) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-179;
    animation-name: an-move-frames-179;
    -webkit-animation-duration: 29547ms;
    animation-duration: 29547ms;
    -webkit-animation-delay: 17071ms;
    animation-delay: 17071ms;
}

@-webkit-keyframes an-move-frames-179 {
    from {
        -webkit-transform: translate3d(99vw, 110vh, 0);
        transform: translate3d(99vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -136vh, 0);
        transform: translate3d(66vw, -136vh, 0);
    }
}

@keyframes an-move-frames-179 {
    from {
        -webkit-transform: translate3d(99vw, 110vh, 0);
        transform: translate3d(99vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(66vw, -136vh, 0);
        transform: translate3d(66vw, -136vh, 0);
    }
}

.ag-fireflies_item:nth-child(179) .ag-fireflies_inner {
    -webkit-animation-delay: 190ms;
    animation-delay: 190ms;
}

.ag-fireflies_item:nth-child(180) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-180;
    animation-name: an-move-frames-180;
    -webkit-animation-duration: 34661ms;
    animation-duration: 34661ms;
    -webkit-animation-delay: 18203ms;
    animation-delay: 18203ms;
}

@-webkit-keyframes an-move-frames-180 {
    from {
        -webkit-transform: translate3d(99vw, 102vh, 0);
        transform: translate3d(99vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -130vh, 0);
        transform: translate3d(60vw, -130vh, 0);
    }
}

@keyframes an-move-frames-180 {
    from {
        -webkit-transform: translate3d(99vw, 102vh, 0);
        transform: translate3d(99vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(60vw, -130vh, 0);
        transform: translate3d(60vw, -130vh, 0);
    }
}

.ag-fireflies_item:nth-child(180) .ag-fireflies_inner {
    -webkit-animation-delay: 682ms;
    animation-delay: 682ms;
}

.ag-fireflies_item:nth-child(181) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-181;
    animation-name: an-move-frames-181;
    -webkit-animation-duration: 36982ms;
    animation-duration: 36982ms;
    -webkit-animation-delay: 32784ms;
    animation-delay: 32784ms;
}

@-webkit-keyframes an-move-frames-181 {
    from {
        -webkit-transform: translate3d(91vw, 109vh, 0);
        transform: translate3d(91vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(10vw, -132vh, 0);
        transform: translate3d(10vw, -132vh, 0);
    }
}

@keyframes an-move-frames-181 {
    from {
        -webkit-transform: translate3d(91vw, 109vh, 0);
        transform: translate3d(91vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(10vw, -132vh, 0);
        transform: translate3d(10vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(181) .ag-fireflies_inner {
    -webkit-animation-delay: 2412ms;
    animation-delay: 2412ms;
}

.ag-fireflies_item:nth-child(182) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-182;
    animation-name: an-move-frames-182;
    -webkit-animation-duration: 35560ms;
    animation-duration: 35560ms;
    -webkit-animation-delay: 17055ms;
    animation-delay: 17055ms;
}

@-webkit-keyframes an-move-frames-182 {
    from {
        -webkit-transform: translate3d(4vw, 103vh, 0);
        transform: translate3d(4vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -108vh, 0);
        transform: translate3d(63vw, -108vh, 0);
    }
}

@keyframes an-move-frames-182 {
    from {
        -webkit-transform: translate3d(4vw, 103vh, 0);
        transform: translate3d(4vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -108vh, 0);
        transform: translate3d(63vw, -108vh, 0);
    }
}

.ag-fireflies_item:nth-child(182) .ag-fireflies_inner {
    -webkit-animation-delay: 3286ms;
    animation-delay: 3286ms;
}

.ag-fireflies_item:nth-child(183) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-183;
    animation-name: an-move-frames-183;
    -webkit-animation-duration: 31164ms;
    animation-duration: 31164ms;
    -webkit-animation-delay: 13006ms;
    animation-delay: 13006ms;
}

@-webkit-keyframes an-move-frames-183 {
    from {
        -webkit-transform: translate3d(44vw, 105vh, 0);
        transform: translate3d(44vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -110vh, 0);
        transform: translate3d(94vw, -110vh, 0);
    }
}

@keyframes an-move-frames-183 {
    from {
        -webkit-transform: translate3d(44vw, 105vh, 0);
        transform: translate3d(44vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(94vw, -110vh, 0);
        transform: translate3d(94vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(183) .ag-fireflies_inner {
    -webkit-animation-delay: 2459ms;
    animation-delay: 2459ms;
}

.ag-fireflies_item:nth-child(184) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-184;
    animation-name: an-move-frames-184;
    -webkit-animation-duration: 28120ms;
    animation-duration: 28120ms;
    -webkit-animation-delay: 8345ms;
    animation-delay: 8345ms;
}

@-webkit-keyframes an-move-frames-184 {
    from {
        -webkit-transform: translate3d(81vw, 109vh, 0);
        transform: translate3d(81vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(16vw, -110vh, 0);
        transform: translate3d(16vw, -110vh, 0);
    }
}

@keyframes an-move-frames-184 {
    from {
        -webkit-transform: translate3d(81vw, 109vh, 0);
        transform: translate3d(81vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(16vw, -110vh, 0);
        transform: translate3d(16vw, -110vh, 0);
    }
}

.ag-fireflies_item:nth-child(184) .ag-fireflies_inner {
    -webkit-animation-delay: 150ms;
    animation-delay: 150ms;
}

.ag-fireflies_item:nth-child(185) {
    width: 3px;
    height: 3px;
    -webkit-animation-name: an-move-frames-185;
    animation-name: an-move-frames-185;
    -webkit-animation-duration: 31552ms;
    animation-duration: 31552ms;
    -webkit-animation-delay: 28793ms;
    animation-delay: 28793ms;
}

@-webkit-keyframes an-move-frames-185 {
    from {
        -webkit-transform: translate3d(7vw, 105vh, 0);
        transform: translate3d(7vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -135vh, 0);
        transform: translate3d(87vw, -135vh, 0);
    }
}

@keyframes an-move-frames-185 {
    from {
        -webkit-transform: translate3d(7vw, 105vh, 0);
        transform: translate3d(7vw, 105vh, 0);
    }

    to {
        -webkit-transform: translate3d(87vw, -135vh, 0);
        transform: translate3d(87vw, -135vh, 0);
    }
}

.ag-fireflies_item:nth-child(185) .ag-fireflies_inner {
    -webkit-animation-delay: 2178ms;
    animation-delay: 2178ms;
}

.ag-fireflies_item:nth-child(186) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-186;
    animation-name: an-move-frames-186;
    -webkit-animation-duration: 32328ms;
    animation-duration: 32328ms;
    -webkit-animation-delay: 11516ms;
    animation-delay: 11516ms;
}

@-webkit-keyframes an-move-frames-186 {
    from {
        -webkit-transform: translate3d(52vw, 109vh, 0);
        transform: translate3d(52vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(92vw, -111vh, 0);
        transform: translate3d(92vw, -111vh, 0);
    }
}

@keyframes an-move-frames-186 {
    from {
        -webkit-transform: translate3d(52vw, 109vh, 0);
        transform: translate3d(52vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(92vw, -111vh, 0);
        transform: translate3d(92vw, -111vh, 0);
    }
}

.ag-fireflies_item:nth-child(186) .ag-fireflies_inner {
    -webkit-animation-delay: 3928ms;
    animation-delay: 3928ms;
}

.ag-fireflies_item:nth-child(187) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-187;
    animation-name: an-move-frames-187;
    -webkit-animation-duration: 29586ms;
    animation-duration: 29586ms;
    -webkit-animation-delay: 22101ms;
    animation-delay: 22101ms;
}

@-webkit-keyframes an-move-frames-187 {
    from {
        -webkit-transform: translate3d(74vw, 107vh, 0);
        transform: translate3d(74vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(89vw, -122vh, 0);
        transform: translate3d(89vw, -122vh, 0);
    }
}

@keyframes an-move-frames-187 {
    from {
        -webkit-transform: translate3d(74vw, 107vh, 0);
        transform: translate3d(74vw, 107vh, 0);
    }

    to {
        -webkit-transform: translate3d(89vw, -122vh, 0);
        transform: translate3d(89vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(187) .ag-fireflies_inner {
    -webkit-animation-delay: 2347ms;
    animation-delay: 2347ms;
}

.ag-fireflies_item:nth-child(188) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-188;
    animation-name: an-move-frames-188;
    -webkit-animation-duration: 34939ms;
    animation-duration: 34939ms;
    -webkit-animation-delay: 22380ms;
    animation-delay: 22380ms;
}

@-webkit-keyframes an-move-frames-188 {
    from {
        -webkit-transform: translate3d(27vw, 104vh, 0);
        transform: translate3d(27vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -124vh, 0);
        transform: translate3d(14vw, -124vh, 0);
    }
}

@keyframes an-move-frames-188 {
    from {
        -webkit-transform: translate3d(27vw, 104vh, 0);
        transform: translate3d(27vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(14vw, -124vh, 0);
        transform: translate3d(14vw, -124vh, 0);
    }
}

.ag-fireflies_item:nth-child(188) .ag-fireflies_inner {
    -webkit-animation-delay: 1308ms;
    animation-delay: 1308ms;
}

.ag-fireflies_item:nth-child(189) {
    width: 6px;
    height: 6px;
    -webkit-animation-name: an-move-frames-189;
    animation-name: an-move-frames-189;
    -webkit-animation-duration: 35559ms;
    animation-duration: 35559ms;
    -webkit-animation-delay: 19220ms;
    animation-delay: 19220ms;
}

@-webkit-keyframes an-move-frames-189 {
    from {
        -webkit-transform: translate3d(44vw, 106vh, 0);
        transform: translate3d(44vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(13vw, -128vh, 0);
        transform: translate3d(13vw, -128vh, 0);
    }
}

@keyframes an-move-frames-189 {
    from {
        -webkit-transform: translate3d(44vw, 106vh, 0);
        transform: translate3d(44vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(13vw, -128vh, 0);
        transform: translate3d(13vw, -128vh, 0);
    }
}

.ag-fireflies_item:nth-child(189) .ag-fireflies_inner {
    -webkit-animation-delay: 1134ms;
    animation-delay: 1134ms;
}

.ag-fireflies_item:nth-child(190) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-190;
    animation-name: an-move-frames-190;
    -webkit-animation-duration: 30405ms;
    animation-duration: 30405ms;
    -webkit-animation-delay: 7995ms;
    animation-delay: 7995ms;
}

@-webkit-keyframes an-move-frames-190 {
    from {
        -webkit-transform: translate3d(16vw, 109vh, 0);
        transform: translate3d(16vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -126vh, 0);
        transform: translate3d(11vw, -126vh, 0);
    }
}

@keyframes an-move-frames-190 {
    from {
        -webkit-transform: translate3d(16vw, 109vh, 0);
        transform: translate3d(16vw, 109vh, 0);
    }

    to {
        -webkit-transform: translate3d(11vw, -126vh, 0);
        transform: translate3d(11vw, -126vh, 0);
    }
}

.ag-fireflies_item:nth-child(190) .ag-fireflies_inner {
    -webkit-animation-delay: 3171ms;
    animation-delay: 3171ms;
}

.ag-fireflies_item:nth-child(191) {
    width: 2px;
    height: 2px;
    -webkit-animation-name: an-move-frames-191;
    animation-name: an-move-frames-191;
    -webkit-animation-duration: 29458ms;
    animation-duration: 29458ms;
    -webkit-animation-delay: 26002ms;
    animation-delay: 26002ms;
}

@-webkit-keyframes an-move-frames-191 {
    from {
        -webkit-transform: translate3d(91vw, 103vh, 0);
        transform: translate3d(91vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(54vw, -115vh, 0);
        transform: translate3d(54vw, -115vh, 0);
    }
}

@keyframes an-move-frames-191 {
    from {
        -webkit-transform: translate3d(91vw, 103vh, 0);
        transform: translate3d(91vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(54vw, -115vh, 0);
        transform: translate3d(54vw, -115vh, 0);
    }
}

.ag-fireflies_item:nth-child(191) .ag-fireflies_inner {
    -webkit-animation-delay: 35ms;
    animation-delay: 35ms;
}

.ag-fireflies_item:nth-child(192) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-192;
    animation-name: an-move-frames-192;
    -webkit-animation-duration: 32433ms;
    animation-duration: 32433ms;
    -webkit-animation-delay: 29888ms;
    animation-delay: 29888ms;
}

@-webkit-keyframes an-move-frames-192 {
    from {
        -webkit-transform: translate3d(51vw, 110vh, 0);
        transform: translate3d(51vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -131vh, 0);
        transform: translate3d(62vw, -131vh, 0);
    }
}

@keyframes an-move-frames-192 {
    from {
        -webkit-transform: translate3d(51vw, 110vh, 0);
        transform: translate3d(51vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(62vw, -131vh, 0);
        transform: translate3d(62vw, -131vh, 0);
    }
}

.ag-fireflies_item:nth-child(192) .ag-fireflies_inner {
    -webkit-animation-delay: 3799ms;
    animation-delay: 3799ms;
}

.ag-fireflies_item:nth-child(193) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-193;
    animation-name: an-move-frames-193;
    -webkit-animation-duration: 36338ms;
    animation-duration: 36338ms;
    -webkit-animation-delay: 22299ms;
    animation-delay: 22299ms;
}

@-webkit-keyframes an-move-frames-193 {
    from {
        -webkit-transform: translate3d(72vw, 106vh, 0);
        transform: translate3d(72vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -132vh, 0);
        transform: translate3d(63vw, -132vh, 0);
    }
}

@keyframes an-move-frames-193 {
    from {
        -webkit-transform: translate3d(72vw, 106vh, 0);
        transform: translate3d(72vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(63vw, -132vh, 0);
        transform: translate3d(63vw, -132vh, 0);
    }
}

.ag-fireflies_item:nth-child(193) .ag-fireflies_inner {
    -webkit-animation-delay: 788ms;
    animation-delay: 788ms;
}

.ag-fireflies_item:nth-child(194) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-194;
    animation-name: an-move-frames-194;
    -webkit-animation-duration: 28999ms;
    animation-duration: 28999ms;
    -webkit-animation-delay: 12036ms;
    animation-delay: 12036ms;
}

@-webkit-keyframes an-move-frames-194 {
    from {
        -webkit-transform: translate3d(61vw, 110vh, 0);
        transform: translate3d(61vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -135vh, 0);
        transform: translate3d(8vw, -135vh, 0);
    }
}

@keyframes an-move-frames-194 {
    from {
        -webkit-transform: translate3d(61vw, 110vh, 0);
        transform: translate3d(61vw, 110vh, 0);
    }

    to {
        -webkit-transform: translate3d(8vw, -135vh, 0);
        transform: translate3d(8vw, -135vh, 0);
    }
}

.ag-fireflies_item:nth-child(194) .ag-fireflies_inner {
    -webkit-animation-delay: 1203ms;
    animation-delay: 1203ms;
}

.ag-fireflies_item:nth-child(195) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-195;
    animation-name: an-move-frames-195;
    -webkit-animation-duration: 30282ms;
    animation-duration: 30282ms;
    -webkit-animation-delay: 1862ms;
    animation-delay: 1862ms;
}

@-webkit-keyframes an-move-frames-195 {
    from {
        -webkit-transform: translate3d(53vw, 104vh, 0);
        transform: translate3d(53vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(49vw, -105vh, 0);
        transform: translate3d(49vw, -105vh, 0);
    }
}

@keyframes an-move-frames-195 {
    from {
        -webkit-transform: translate3d(53vw, 104vh, 0);
        transform: translate3d(53vw, 104vh, 0);
    }

    to {
        -webkit-transform: translate3d(49vw, -105vh, 0);
        transform: translate3d(49vw, -105vh, 0);
    }
}

.ag-fireflies_item:nth-child(195) .ag-fireflies_inner {
    -webkit-animation-delay: 320ms;
    animation-delay: 320ms;
}

.ag-fireflies_item:nth-child(196) {
    width: 1px;
    height: 1px;
    -webkit-animation-name: an-move-frames-196;
    animation-name: an-move-frames-196;
    -webkit-animation-duration: 30847ms;
    animation-duration: 30847ms;
    -webkit-animation-delay: 2666ms;
    animation-delay: 2666ms;
}

@-webkit-keyframes an-move-frames-196 {
    from {
        -webkit-transform: translate3d(6vw, 103vh, 0);
        transform: translate3d(6vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(25vw, -129vh, 0);
        transform: translate3d(25vw, -129vh, 0);
    }
}

@keyframes an-move-frames-196 {
    from {
        -webkit-transform: translate3d(6vw, 103vh, 0);
        transform: translate3d(6vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(25vw, -129vh, 0);
        transform: translate3d(25vw, -129vh, 0);
    }
}

.ag-fireflies_item:nth-child(196) .ag-fireflies_inner {
    -webkit-animation-delay: 2396ms;
    animation-delay: 2396ms;
}

.ag-fireflies_item:nth-child(197) {
    width: 7px;
    height: 7px;
    -webkit-animation-name: an-move-frames-197;
    animation-name: an-move-frames-197;
    -webkit-animation-duration: 29463ms;
    animation-duration: 29463ms;
    -webkit-animation-delay: 32801ms;
    animation-delay: 32801ms;
}

@-webkit-keyframes an-move-frames-197 {
    from {
        -webkit-transform: translate3d(44vw, 101vh, 0);
        transform: translate3d(44vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(5vw, -117vh, 0);
        transform: translate3d(5vw, -117vh, 0);
    }
}

@keyframes an-move-frames-197 {
    from {
        -webkit-transform: translate3d(44vw, 101vh, 0);
        transform: translate3d(44vw, 101vh, 0);
    }

    to {
        -webkit-transform: translate3d(5vw, -117vh, 0);
        transform: translate3d(5vw, -117vh, 0);
    }
}

.ag-fireflies_item:nth-child(197) .ag-fireflies_inner {
    -webkit-animation-delay: 446ms;
    animation-delay: 446ms;
}

.ag-fireflies_item:nth-child(198) {
    width: 5px;
    height: 5px;
    -webkit-animation-name: an-move-frames-198;
    animation-name: an-move-frames-198;
    -webkit-animation-duration: 29463ms;
    animation-duration: 29463ms;
    -webkit-animation-delay: 26055ms;
    animation-delay: 26055ms;
}

@-webkit-keyframes an-move-frames-198 {
    from {
        -webkit-transform: translate3d(23vw, 103vh, 0);
        transform: translate3d(23vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(64vw, -107vh, 0);
        transform: translate3d(64vw, -107vh, 0);
    }
}

@keyframes an-move-frames-198 {
    from {
        -webkit-transform: translate3d(23vw, 103vh, 0);
        transform: translate3d(23vw, 103vh, 0);
    }

    to {
        -webkit-transform: translate3d(64vw, -107vh, 0);
        transform: translate3d(64vw, -107vh, 0);
    }
}

.ag-fireflies_item:nth-child(198) .ag-fireflies_inner {
    -webkit-animation-delay: 455ms;
    animation-delay: 455ms;
}

.ag-fireflies_item:nth-child(199) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-199;
    animation-name: an-move-frames-199;
    -webkit-animation-duration: 33860ms;
    animation-duration: 33860ms;
    -webkit-animation-delay: 25801ms;
    animation-delay: 25801ms;
}

@-webkit-keyframes an-move-frames-199 {
    from {
        -webkit-transform: translate3d(47vw, 106vh, 0);
        transform: translate3d(47vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(36vw, -136vh, 0);
        transform: translate3d(36vw, -136vh, 0);
    }
}

@keyframes an-move-frames-199 {
    from {
        -webkit-transform: translate3d(47vw, 106vh, 0);
        transform: translate3d(47vw, 106vh, 0);
    }

    to {
        -webkit-transform: translate3d(36vw, -136vh, 0);
        transform: translate3d(36vw, -136vh, 0);
    }
}

.ag-fireflies_item:nth-child(199) .ag-fireflies_inner {
    -webkit-animation-delay: 2695ms;
    animation-delay: 2695ms;
}

.ag-fireflies_item:nth-child(200) {
    width: 4px;
    height: 4px;
    -webkit-animation-name: an-move-frames-200;
    animation-name: an-move-frames-200;
    -webkit-animation-duration: 29702ms;
    animation-duration: 29702ms;
    -webkit-animation-delay: 16223ms;
    animation-delay: 16223ms;
}

@-webkit-keyframes an-move-frames-200 {
    from {
        -webkit-transform: translate3d(71vw, 102vh, 0);
        transform: translate3d(71vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(55vw, -122vh, 0);
        transform: translate3d(55vw, -122vh, 0);
    }
}

@keyframes an-move-frames-200 {
    from {
        -webkit-transform: translate3d(71vw, 102vh, 0);
        transform: translate3d(71vw, 102vh, 0);
    }

    to {
        -webkit-transform: translate3d(55vw, -122vh, 0);
        transform: translate3d(55vw, -122vh, 0);
    }
}

.ag-fireflies_item:nth-child(200) .ag-fireflies_inner {
    -webkit-animation-delay: 2695ms;
    animation-delay: 2695ms;
}

.ag-fireflies_inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    mix-blend-mode: screen;
    background-image: radial-gradient(#f8f8f8 0%, rgba(253, 253, 253, 0.9) 10%);
    box-shadow: 0 0 .9375em .1875em #3a9cf8;
    -webkit-animation: an-scale-frames 2s infinite;
    animation: an-scale-frames 2s infinite;
}

@-webkit-keyframes an-scale-frames {
    0% {
        -webkit-transform: scale3d(0.4, 0.4, 1);
        transform: scale3d(0.4, 0.4, 1);
    }

    50% {
        -webkit-transform: scale3d(1.4, 1.4, 1);
        transform: scale3d(1.4, 1.4, 1);
    }

    100% {
        -webkit-transform: scale3d(0.4, 0.4, 1);
        transform: scale3d(0.4, 0.4, 1);
    }
}

@keyframes an-scale-frames {
    0% {
        -webkit-transform: scale3d(0.4, 0.4, 1);
        transform: scale3d(0.4, 0.4, 1);
    }

    50% {
        -webkit-transform: scale3d(1.4, 1.4, 1);
        transform: scale3d(1.4, 1.4, 1);
    }

    100% {
        -webkit-transform: scale3d(0.4, 0.4, 1);
        transform: scale3d(0.4, 0.4, 1);
    }
}


@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }

}

@media only screen and (max-width: 639px) {}

@media only screen and (max-width: 479px) {}

@media (min-width: 768px) and (max-width: 979px) {
    .ag-format-container {
        width: 750px;
    }

}

@media (min-width: 980px) and (max-width: 1161px) {
    .ag-format-container {
        width: 960px;
    }

}
