@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    opacity: 0;
    animation: fadeInAnimation 1s ease-in forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 1;
    }
}

/*--------------------------*/
/*--------HEADER------------*/
/*--------------------------*/
.header {
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav {
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    padding: 15px 6%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

nav img {
    display: block;
    max-width: 80%;
    height: auto;
    width: 250px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.nav-links ul li a:hover {
    color: #31b1ff
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #31b1ff;
    display: block;
    margin: auto;
}

.nav-links ul li:hover::after {
    width: 100%;
    transition: 0.5s;
}

.text-box {
    width: 90%;
    color: #fff;
    position: relative;
    margin: 40px auto;
    text-align: center;
    margin-top: 150px;
}

.text-box h1 {
    margin-top: 40px;
    font-size: 80px;
    color: #31b1ff;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

/* not-home --> Styling for h1 tag for the pages other than the home page. */
/* h1-styling --> Styling for span element that is a part of h1. */

.not-home {
    font-size: 48px !important;
}

.h1-styling {
    color: #2f5df1;
}

@media (max-width: 768px) {
    .not-home {
        font-size: 28px !important;
    }
}

/*------------------END------------------*/

.heading-line {
    line-height: 1;
    display: block;
    position: relative;
    text-align: center;
}

.heading-line::before {
    line-height: 1;
    display: block;
    position: absolute;
    color: #fff;
    pointer-events: none;
    width: 100%;
}

.heading-line-gradient {
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

/* 1st heading gradient */
@keyframes first_heading_gradient {

    0%,
    16.667% {
        opacity: 1;
    }

    33.333%,
    83.333% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 1st heading white text */
@keyframes first_heading_white_text {

    0%,
    16.667% {
        opacity: 0;
    }

    25%,
    91.667% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes second_heading_gradient {

    0%,
    16.667% {
        opacity: 0;
    }

    33.333%,
    50% {
        opacity: 1;
    }

    66.667%,
    100% {
        opacity: 0;
    }
}

@keyframes second_heading_white_text {

    0%,
    25% {
        opacity: 1;
    }

    33.333%,
    50% {
        opacity: 0;
    }

    58.333%,
    100% {
        opacity: 1;
    }
}

@keyframes third_heading_gradient {

    0%,
    50% {
        opacity: 0;
    }

    66.667%,
    83.333% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes third_heading_white_text {

    0%,
    58.333% {
        opacity: 1;
    }

    66.667%,
    83.333% {
        opacity: 0;
    }

    91.667%,
    100% {
        opacity: 1;
    }
}

.heading-line-first>.heading-line-gradient {
    background-image: linear-gradient(to left, #ed8936, #ed64a6);
    animation: first_heading_gradient 8s infinite;
}

.heading-line-first::before {
    content: "Innovate.";
    animation: first_heading_white_text 8s infinite;
}

.heading-line-second>.heading-line-gradient {
    background-image: linear-gradient(to left, #38b2ac, #0bc5ea);
    animation: second_heading_gradient 8s infinite;
}

.heading-line-second::before {
    content: "Transform.";
    animation: second_heading_white_text 8s infinite;
}

.heading-line-third>.heading-line-gradient {
    background-image: linear-gradient(to left, #ecc94b, #48bb78);
    animation: third_heading_gradient 8s infinite;
}

.heading-line-third::before {
    content: "Excel.";
    animation: third_heading_white_text 8s infinite;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
    padding: 20px;
}

/*--------------------------*/
/*----- SUPER BUTTON -----*/
/*--------------------------*/
.super-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.super-btn:hover {
    border: 1px solid #31b1ff;
    color: #31b1ff;
    transition: 1s;
}

a span:nth-child(1) {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #002b9d, #31b1ff);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

a span:nth-child(2) {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(to bottom, #002b9d, #31b1ff);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

a span:nth-child(3) {
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #002b9d, #31b1ff);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

a span:nth-child(4) {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #002b9d, #31b1ff);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/*--------------------------*/
/*----- SUPER BUTTON END -----*/
/*--------------------------*/

/* Dropdown Menu */
.dropdown .dropdown-toggle::after {
    content: '\25BE';
    /* Unicode character for down arrow */
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 200px;
    border: solid 1px #31b1ff;
    text-align: center;
    /* Center items horizontally */
    left: 50%;
    /* Position the dropdown menu horizontally */
    transform: translateX(-50%);
    /* Center the dropdown menu */
}

.dropdown-menu li {
    display: block;
    white-space: nowrap;
    /* Prevent items from wrapping to a new row */
}

/* Show Dropdown Menu */
.dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .nav-links ul li:hover::after {
        width: 0;
    }

    .dropdown-menu {
        min-width: 120px;
        max-width: 200px;
        border: none;
        background-color: #2c2c2c;
    }
}

nav .fa {
    display: none;
}

@media(max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .text-box h1 {
        font-size: 40px;
    }

    .text-box p {
        font-size: 12px;
    }

    .nav-links ul li a:hover {
        color: #fff;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: #31b1ff;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }

    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 24px !important;
        cursor: pointer;
    }

    nav .fa-times {
        display: flex;
        margin-left: 20px;
        margin-top: 20px;
    }

    .nav-links ul {
        padding: 30px;
    }

}

/*--------------------------*/
/*----- INTRODUCTION -----*/
/*--------------------------*/

.introduction {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    overflow: hidden;
}

h1 {
    font-size: 30px;
    font-weight: 600;
    color: #31b1ff;
    text-transform: uppercase;
}

.content-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.content-container p {
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.content-container img {
    width: 350px;
    margin-left: 15px;
}

.service-description {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.text-box h2 {
    color: #31b1ff;
    text-transform: uppercase
}

.service-img {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 50px;
}

.service-description p {
    flex: 1;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    text-align: center;
}

.service-description img {
    max-width: 256px;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .content-container img {
        margin-top: 20px;
        margin-left: 0;
        width: 80%;
    }

    .service-description {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .service-description img {
        margin-top: 20px;
        margin-left: 0;
        width: 180px;
    }
}


.tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    padding: 40px;
}

.tools i {
    font-size: 100px;
}




/*--------------------------*/
/*----- SERVICES -----*/
/*--------------------------*/
.services {
    overflow: hidden;
}

.services h1 {
    text-align: center;
    padding-top: 50px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px;
    padding: 20px;
}

.service-card {
    width: 300px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s;
    border: 2px solid #31b1ff;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card h2 {
    margin-top: 0;
    color: #fff;
}

.service-card img {
    width: 100px;
    padding-top: 20px;
}

.service-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover {
    border: 2px solid #31b1ff;
    background: #31b1ff;
    transition: 1s;
}

.service-card a {
    color: #fff;
    text-decoration: none;
    border: 2px solid #31b1ff;
}

/*--------------------------*/
/*----- APPROACH -----*/
/*--------------------------*/
.our-approach {
    padding: 40px 30px;
}

.our-approach h1 {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}

.approach-container {
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.approach-image img {
    max-width: 90%;
}

.approach-list {
    margin-left: 50px;
}

.approach-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.approach-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.approach-item i {
    font-size: 24px !important;
    margin-right: 10px;
    color: #31b1ff;
}

.approach-item h2 {
    color: #31b1ff;
}

.approach-item p {
    color: #fff;
}

@media (max-width: 768px) {
    .approach-container {
        flex-direction: column;
    }

    .approach-list {
        margin: 30px 0 0;
    }
}

/*--------------------------*/
/*----- CONTACT -----*/
/*--------------------------*/
.contact-section {
    padding: 30px;
    width: 100%;
}

.contact-section h1 {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
}

.introduction h1:before,
.introduction h1:after,
.services h1:before,
.services h1:after,
.our-approach h1:before,
.our-approach h1:after,
.contact-section h1:before,
.contact-section h1:after {
    content: '\00a0\00a0\00a0\00a0';
    text-decoration: line-through;
    margin: auto 5px;
}

@media (max-width: 768px) {

    .introduction h1:before,
    .introduction h1:after,
    .services h1:before,
    .services h1:after,
    .our-approach h1:before,
    .our-approach h1:after,
    .contact-section h1:before,
    .contact-section h1:after {
        content: '';
        text-decoration: none;
        margin: auto 0;
    }
}

.contact-container {
    background: rgba(56, 56, 56, 0.3);
    border-radius: 30px;
    border: solid 1px #31b1ff;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.contact-left {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.contact-left h2 {
    text-align: center;
}

.contact-right {
    flex-basis: 50%;
    padding: 20px;
}

.contact-right h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #31b1ff;
}

.contact-right p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-form {
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}


label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #31b1ff;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: solid 1px #31b1ff;
    border-radius: 10px;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #31b1ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #2f5df1;
}

p {
    color: #fff;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        justify-content: center;
    }

    .contact-left,
    .contact-right {
        flex-basis: 100%;
        margin-bottom: 5px;
    }

    .form-row {
        justify-content: center;
    }

    .input-fields {
        display: inline;
    }

    label {
        text-align: left;
    }

    .contact-right h2,
    .contact-right p {
        text-align: center;
    }
}

/*--------------------------*/
/*----- FOOTER -----*/
/*--------------------------*/
footer {
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #131313, #1d1d1d);
    color: #fff;
    padding: 100px 0 30px;
    border-top-left-radius: 75px;
    border-top-right-radius: 75px;
    border: solid 1px #31b1ff;
    font-size: 13px;
    line-height: 20px;
    margin-top: 80px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.logo {
    width: 80px;
    margin-bottom: 30px;
}

.col h3 {
    margin-bottom: 20px;
}

.col h4 {
    font-size: 15px;
}

.col p {
    padding-left: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 12px;
}

footer ul li a {
    text-decoration: none;
    color: #fff;
}

footer ul li a:hover {
    color: #31b1ff;
    transition: 0.5s;
}

.fa {
    font-size: 16px !important;
    margin-top: 10px;
    padding-right: 5px;
    text-align: center;
    text-decoration: none;
}

.social-icons a {
    text-decoration: none;
    color: #31b1ff;
}

.social-icons a:hover {
    text-decoration: none;
    color: #00ffc8;
}

.email-id {
    width: fit-content;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
}

.phone {
    font-family: 'Poppins', sans-serif;
    font-size: 6px;
}

hr {
    width: 0%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

.contacts-footer {
    padding-top: 40px;
}

.contacts-footer li {
    margin-bottom: 0;
}

.contacts-footer li i {
    color: #31b1ff;
}

@media (max-width: 700px) {
    footer {
        bottom: unset;
        text-align: center;

    }

    .col {
        flex-basis: 100%;
        margin-bottom: 40px;
    }
}

/*--------------------------*/
/*----- TEXT ANIMATION -----*/
/*--------------------------*/
.typewriter {
    overflow: hidden;
    border-right: .15em solid #31b1ff;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(30, end), blink-caret 1s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #31b1ff;
    }
}

/*--------------------------*/
/*----- BACKGROUND -----*/
/*--------------------------*/
@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: #000000;
    overflow: hidden;
    z-index: -1;
}

.background li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 22s linear infinite;
}




.background li:nth-child(0) {
    left: 30%;
    width: 25px;
    height: 25px;
    bottom: -25px;
    animation-delay: 1s;
}

.background li:nth-child(1) {
    left: 10%;
    width: 8px;
    height: 8px;
    bottom: -8px;
    animation-delay: 2s;
}

.background li:nth-child(2) {
    left: 57%;
    width: 1px;
    height: 1px;
    bottom: -1px;
    animation-delay: 3s;
}

.background li:nth-child(3) {
    left: 34%;
    width: 25px;
    height: 25px;
    bottom: -25px;
    animation-delay: 1s;
}

.background li:nth-child(4) {
    left: 40%;
    width: 9px;
    height: 9px;
    bottom: -9px;
    animation-delay: 2s;
}

.background li:nth-child(5) {
    left: 26%;
    width: 1px;
    height: 1px;
    bottom: -1px;
    animation-delay: 22s;
}

.background li:nth-child(6) {
    left: 25%;
    width: 13px;
    height: 13px;
    bottom: -13px;
    animation-delay: 22s;
}

.background li:nth-child(7) {
    left: 37%;
    width: 4px;
    height: 4px;
    bottom: -4px;
    animation-delay: 7s;
}

.background li:nth-child(8) {
    left: 17%;
    width: 21px;
    height: 21px;
    bottom: -21px;
    animation-delay: 17s;
}

.background li:nth-child(9) {
    left: 69%;
    width: 4px;
    height: 4px;
    bottom: -4px;
    animation-delay: 3s;
}

.background li:nth-child(10) {
    left: 23%;
    width: 5px;
    height: 5px;
    bottom: -5px;
    animation-delay: 35s;
}

.background li:nth-child(11) {
    left: 26%;
    width: 18px;
    height: 18px;
    bottom: -18px;
    animation-delay: 19s;
}

.background li:nth-child(12) {
    left: 74%;
    width: 20px;
    height: 20px;
    bottom: -20px;
    animation-delay: 18s;
}

.background li:nth-child(13) {
    left: 54%;
    width: 14px;
    height: 14px;
    bottom: -14px;
    animation-delay: 31s;
}

.background li:nth-child(14) {
    left: 76%;
    width: 10px;
    height: 10px;
    bottom: -10px;
    animation-delay: 21s;
}

.background li:nth-child(15) {
    left: 44%;
    width: 16px;
    height: 16px;
    bottom: -16px;
    animation-delay: 30s;
}

.background li:nth-child(16) {
    left: 33%;
    width: 24px;
    height: 24px;
    bottom: -24px;
    animation-delay: 5s;
}

.background li:nth-child(17) {
    left: 69%;
    width: 24px;
    height: 24px;
    bottom: -24px;
    animation-delay: 36s;
}

.background li:nth-child(18) {
    left: 1%;
    width: 2px;
    height: 2px;
    bottom: -2px;
    animation-delay: 63s;
}

.background li:nth-child(19) {
    left: 57%;
    width: 5px;
    height: 5px;
    bottom: -5px;
    animation-delay: 63s;
}

.background li:nth-child(20) {
    left: 33%;
    width: 26px;
    height: 26px;
    bottom: -26px;
    animation-delay: 65s;
}

.background li:nth-child(21) {
    left: 42%;
    width: 7px;
    height: 7px;
    bottom: -7px;
    animation-delay: 84s;
}

.background li:nth-child(22) {
    left: 12%;
    width: 2px;
    height: 2px;
    bottom: -2px;
    animation-delay: 75s;
}

.background li:nth-child(23) {
    left: 55%;
    width: 15px;
    height: 15px;
    bottom: -15px;
    animation-delay: 4s;
}

.background li:nth-child(24) {
    left: 58%;
    width: 6px;
    height: 6px;
    bottom: -6px;
    animation-delay: 95s;
}

.background li:nth-child(25) {
    left: 31%;
    width: 5px;
    height: 5px;
    bottom: -5px;
    animation-delay: 83s;
}

.background li:nth-child(26) {
    left: 7%;
    width: 6px;
    height: 6px;
    bottom: -6px;
    animation-delay: 126s;
}

.background li:nth-child(27) {
    left: 15%;
    width: 10px;
    height: 10px;
    bottom: -10px;
    animation-delay: 50s;
}

.background li:nth-child(28) {
    left: 31%;
    width: 8px;
    height: 8px;
    bottom: -8px;
    animation-delay: 35s;
}

.background li:nth-child(29) {
    left: 52%;
    width: 7px;
    height: 7px;
    bottom: -7px;
    animation-delay: 56s;
}

.background li:nth-child(30) {
    left: 81%;
    width: 17px;
    height: 17px;
    bottom: -17px;
    animation-delay: 31s;
}

.background li:nth-child(31) {
    left: 34%;
    width: 13px;
    height: 13px;
    bottom: -13px;
    animation-delay: 61s;
}

.background li:nth-child(32) {
    left: 47%;
    width: 6px;
    height: 6px;
    bottom: -6px;
    animation-delay: 106s;
}

.background li:nth-child(33) {
    left: 34%;
    width: 3px;
    height: 3px;
    bottom: -3px;
    animation-delay: 81s;
}

.background li:nth-child(34) {
    left: 63%;
    width: 10px;
    height: 10px;
    bottom: -10px;
    animation-delay: 81s;
}

.background li:nth-child(35) {
    left: 61%;
    width: 1px;
    height: 1px;
    bottom: -1px;
    animation-delay: 42s;
}

.background li:nth-child(36) {
    left: 53%;
    width: 1px;
    height: 1px;
    bottom: -1px;
    animation-delay: 23s;
}

.background li:nth-child(37) {
    left: 79%;
    width: 5px;
    height: 5px;
    bottom: -5px;
    animation-delay: 113s;
}

.background li:nth-child(38) {
    left: 66%;
    width: 18px;
    height: 18px;
    bottom: -18px;
    animation-delay: 37s;
}

.background li:nth-child(39) {
    left: 16%;
    width: 2px;
    height: 2px;
    bottom: -2px;
    animation-delay: 23s;
}

.background li:nth-child(40) {
    left: 59%;
    width: 8px;
    height: 8px;
    bottom: -8px;
    animation-delay: 141s;
}

.background li:nth-child(41) {
    left: 60%;
    width: 14px;
    height: 14px;
    bottom: -14px;
    animation-delay: 98s;
}

.background li:nth-child(42) {
    left: 13%;
    width: 19px;
    height: 19px;
    bottom: -19px;
    animation-delay: 52s;
}

.background li:nth-child(43) {
    left: 51%;
    width: 27px;
    height: 27px;
    bottom: -27px;
    animation-delay: 179s;
}

.background li:nth-child(44) {
    left: 40%;
    width: 22px;
    height: 22px;
    bottom: -22px;
    animation-delay: 216s;
}

.background li:nth-child(45) {
    left: 79%;
    width: 19px;
    height: 19px;
    bottom: -19px;
    animation-delay: 41s;
}

.background li:nth-child(46) {
    left: 2%;
    width: 7px;
    height: 7px;
    bottom: -7px;
    animation-delay: 194s;
}

.background li:nth-child(47) {
    left: 42%;
    width: 9px;
    height: 9px;
    bottom: -9px;
    animation-delay: 17s;
}

.background li:nth-child(48) {
    left: 25%;
    width: 9px;
    height: 9px;
    bottom: -9px;
    animation-delay: 36s;
}

.background li:nth-child(49) {
    left: 50%;
    width: 7px;
    height: 7px;
    bottom: -7px;
    animation-delay: 146s;
}