    /* * Prefixed by https://autoprefixer.github.io * PostCSS: v8.4.14, * Autoprefixer: v10.4.7 * Browsers: last 4 version */
    /* Root Variables */
    :root {
        --white: #ffffff;
        --blue: #18B1D1;
        --blue-fill:#D1EFF6;
        --purple: #6A67CE;
        --orange: #FA646B;
        --yellow: #FFB901;
        --bodyColor: #464646;
        --heading: #040511;
        --pink:#871CC8;
    }
    /*-------------------------------------------------------------- # Preloader --------------------------------------------------------------*/
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        overflow: hidden;
        background: var(--blue);
    }
    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #37517e;
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }
    @-webkit-keyframes animate-preloader {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    }
    }
    @keyframes animate-preloader {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    }
    }
    /* Body and Defaults */
    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    body {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        font-family: 'Gilroy', sans-serif;
        overflow-x: hidden;
    }
    /* Utility CSS */

    p{
        line-height: 26px;
        color: var(--bodyColor);
    }
    .section-padding {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .content-top-bottom-p {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .d-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .align-items-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .justify-content-between {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .align-items{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .align-items-start{
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .d-block {
        display: block;
    }
    .section-padding.pt-0 {
        padding-top:0;
    }
    .text-right{
        text-align: right;
    }
    .text-center{
        text-align: center;
    }
    .cursor-pointer{
        cursor: pointer;
    }
    .flex-wrap{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .sub-heading-black {
        font-size: 42px;
        font-weight: 800;
        line-height: 52px;
        margin: 0;
        color: var(--heading);
    }
    .small-heading-pink {
        color: var(--pink);
        font-weight: 600;
        margin: 0;
        line-height: 32px;
    }
    .service-heading {
        font-size: 20px;
        color: var(--heading);
        line-height: 30px;
    }
    .client-heading {
        font-size: 26px;
        line-height: 32px;
        color: #040511;
    }
    /* Container CSS*/
    .container {
        position: relative;
        margin: 0 auto;
        max-width: 1170px;
        width: 1170px;
    }
    #header .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    /* Button CSS*/
    button {
        width: 152px;
        height: auto;
        min-height: 46px;
        padding: 10px;
        border-radius: 4px;
        font-size: 18px;
        color: var(--white);
        background-color: var(--purple);
        border: none;
        cursor: pointer;
        font-weight: 700;
        -webkit-transition: all ease-in-out 0.3s;
        -o-transition: all ease-in-out 0.3s;
        transition: all ease-in-out 0.3s;
    }
    button:hover {
        background-color: var(--yellow);
        -webkit-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        transform: translateY(-8px);
        -webkit-transition: 0.8s all;
        -o-transition: 0.8s all;
        transition: 0.8s all;
    }
    /* Header CSS*/
    #header {
        width: 100%;
        padding: 10px 0;
        position: fixed;
        top: 0;
        z-index: 1000;
        background: #020a0075;
    }
    .nav-btn label {
        cursor: pointer;
    }
    .nav {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .nav > .nav-header {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .nav > .nav-header > .nav-title {
        font-size: 22px;
        color:var(--white);
    }
    .nav > .nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 2rem;
    }
    .nav > .nav-list > li a.active, .nav > .nav-list > li:hover a {
        color:var(--yellow);
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
    }
    .nav > .nav-list > li {
        list-style-type: none;
    }
    .nav-list li:hover a{
        color: var(--yellow) 
    }
    .nav-list li .active {
        color: var(--yellow) 
    }
    .nav > .nav-list > li a {
        text-decoration: none;
        color: var(--white);
        cursor: pointer;
    }
    .nav > #nav-check {
        display: none;
    }
    /* Hero Section CSS*/
    #hero {
        background-image: url(../assets/Banner.png);
        min-height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
    }
    #hero h1 {
        color: var(--white);
        font-size: 72px;
        font-weight: 800;
        line-height: 80px;
        margin: 0;
        padding-top: 70px;
    }
    .hero-para p {
        color: var(--white);
        font-size: 18px;
        line-height: 26px;
        -webkit-box-flex:0;
        -ms-flex:0 1 40%;
        flex:0 1 40%;
    }
    /* About Section CSS */
    .about-wrapper {
        -webkit-column-gap: 10%;
        -moz-column-gap: 10%;
        column-gap: 10%;
    }
    .about-wrapper .about-para, .about-wrapper .about-para, .about-wrapper .about-img, #pointer-section .pointer-para, #pointer-section .pointer-img {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
    }
    .icon-container {
        position: relative;
        margin-top: 30%;
    }
    .about-1 {
        border-radius: 6px;
    }
    .about-2 {
        position: absolute;
        bottom: -24%;
        right: -16%;
        -webkit-animation: zoomInOut 5s infinite;
        animation: zoomInOut 5s infinite;
    }
    @-webkit-keyframes zoomInOut {
        0%, 100% {
            -webkit-transform: scale(1);
            transform: scale(1);
    }
        50% {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
    }
    }
    @keyframes zoomInOut {
        0%, 100% {
            -webkit-transform: scale(1);
            transform: scale(1);
    }
        50% {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
    }
    }
    .about-4 {
        position: absolute;
        right: -72px;
        top: -135px;
        -webkit-animation: slideArrow 8s infinite;
        animation: slideArrow 8s infinite;
    }
    @-webkit-keyframes slideArrow {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
    }
        50% {
            -webkit-transform: translateX(20px);
            transform: translateX(20px);
    }
    /* Slide direction as per arrow */
    }
    @keyframes slideArrow {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
    }
        50% {
            -webkit-transform: translateX(20px);
            transform: translateX(20px);
    }
    /* Slide direction as per arrow */
    }
    .about-5{
        position: absolute;
        top: -123px;
        left: 64%;
        -webkit-animation: leftToRight 8s infinite;
        animation: leftToRight 8s infinite;
    }
    @-webkit-keyframes leftToRight {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
    }
        50% {
            -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    }
    }
    @keyframes leftToRight {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
    }
        50% {
            -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    }
    }
    .about-6 {
        position: absolute;
        left: 90px;
        top: -70px;
        -webkit-animation: movingCircle 35s linear infinite;
        animation: movingCircle 35s linear infinite;
    }
    @-webkit-keyframes movingCircle {
        0%, 100% {
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
    }
        50% {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
    }
    }
    @keyframes movingCircle {
        0%, 100% {
            -webkit-transform: scale(0.5);
            transform: scale(0.5);
    }
        50% {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
    }
    }
    .about-7 {
        position: absolute;
        top: 20px;
        z-index: -9;
        right: -185px;
        -webkit-animation: upDown 8s ease-in-out infinite;
        animation: upDown 8s ease-in-out infinite;
    }
    @-webkit-keyframes upDown {
        0%, 100% {
            -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
    }
        50% {
            -webkit-transform: translate(-50%, -50%) translateY(-20px);
            transform: translate(-50%, -50%) translateY(-20px);
    }
    }
    @keyframes upDown {
        0%, 100% {
            -webkit-transform: translate(-50%, -50%) translateY(0);
            transform: translate(-50%, -50%) translateY(0);
    }
        50% {
            -webkit-transform: translate(-50%, -50%) translateY(-20px);
            transform: translate(-50%, -50%) translateY(-20px);
    }
    }
    /* Service Section CSS */
    #services-section .services{
        border: 1px solid var(--blue);
        padding: 50px;
        border-radius: 4px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
    }
    #services-section .bg-blue-fill {
        background-color: var(--blue-fill);
    }
    #services-section .d-flex {
        -webkit-column-gap: 3%;
        -moz-column-gap: 3%;
        column-gap: 3%;
    }
    #services-section .row-top-gap {
        margin-top: 3%;
    }
    .services:hover {
        -webkit-transition: 1.5s all;
        -o-transition: 1.5s all;
        transition: 1.5s all;
        background-color: var(--blue-fill);
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    /* Pointers Sectio CSS */
    #pointer-section {
        background-color: var(--blue);
    }
    #pointer-section .d-flex {
        -webkit-column-gap: 10%;
        -moz-column-gap: 10%;
        column-gap: 10%;
    }
    .pointer-para .d-flex {
        margin-bottom: 25px;
    }
    .pointer-para .d-flex:hover img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
    }
    #pointer-section .d-flex:nth-child(6) {
        margin-bottom: 0px;
    }
    .pointer-heading {
        color:var(--white);
    }
    .pointer-para p {
        color: var(--white);
    }
    .pointer-img {
        -webkit-animation: moveUpDown 4s linear infinite;
        animation: moveUpDown 4s linear infinite;
    }
    @-webkit-keyframes moveUpDown {
        0%, 100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
    }
        50% {
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
    }
    }
    @keyframes moveUpDown {
        0%, 100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
    }
        50% {
            -webkit-transform: translateY(30px);
            transform: translateY(30px);
    }
    }
    /* Client section CSS */
    #client-section h2 {
        margin-bottom: 80px;
    }
    #client-section .client-box {
        padding: 30px;
        border: 1px solid #F3D1BF;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
        flex: 1 1 25%;
    }
    #client-section .d-flex {
        -webkit-column-gap: 3%;
        -moz-column-gap: 3%;
        column-gap: 3%;
    }
    #client-section img {
        margin-bottom: 65px;
    }
    .client-box p {
        padding-bottom: 0;
    }
    .client-box:hover {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
        -webkit-transition: 0.8s all;
        -o-transition: 0.8s all;
        transition: 0.8s all;
    }
    .client-icon {
        min-height: 173px;
    }
    /* Contact Section Css */
    .contact-section {
        background-image: url('../assets/map.png');
        background-color: #F5AFA3;
        background-blend-mode: multiply;
    }
    .contact-heading {
        font-size: 36px;
        line-height: 32px;
        color: var(--heading);
    }
    .contact-section h3 {
        margin-top: 30px;
        margin-bottom: 16px;
    }
    .contact-form {
        background-color: var(--white);
        padding: 50px 30px;
        -webkit-box-flex:0;
        -ms-flex:0 1 48%;
        flex:0 1 48%;
        border-radius: 6px;
    }
    .fonm-field input {
        width: 100%;
        height: 48px;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding-inline: 0;
        border: 1px solid #F3D1BF;
        padding: 16px;
        font-size: 16px;
        border-radius: 4px;
        outline: 0;
        margin-bottom: 20px;
    }
    .contact-form p {
        padding-bottom: 40px;
    }

    /* Footer Section CSS */
    .footer-heading {
        font-weight: 800;
        font-size:16px;
        color: var(--purple);
        margin-bottom: 35px;
        text-transform: uppercase;
    }
    footer ul {
        list-style: none;
    }
    footer ul li {
        margin-bottom: 20px;
    }
    footer ul a,
    .copyright a{
        text-decoration: none;
        color: var(--bodyColor);
    }
    footer .footer-menu {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 80%;
        flex: 0 1 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    footer .social-icons {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 15%;
        flex: 0 1 15%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    footer .footer-menu div {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 30%;
        flex: 0 1 30%;
    }
    footer ul li:hover a {
        color:var(--yellow);
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        transition: 0.5s all;
    }
    footer .section-padding {
        padding-bottom: 50px;
    }

    /* CopyRight Section CSS */
    .copyright a {
        margin-right: 50px;
    }

    .copyright a:hover {
        color: var(--yellow);
        transition: 0.5s all;
    }

    .copyright a:nth-child(2) {
        margin-right: 0px;
    }

    .copyright  {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .copyright-seperator {
        height: 0.5px;
        background-color: var(--orange);
    }

    /* Media Query CSS */
    @media only screen and (max-width: 1400px) and (min-width: 1024px) {
        .about-section .d-flex{
            flex-direction: column;
        }
        .container {
            padding: 30px;
            width: 100%;
        max-width: 100%;
        }
        #header .container {
            padding: 0 30px;
        }
        .about-5 {
            left: 35%;
        }

        .about-4 {
            right: 0;
        }

        .about-2 {
            width: 30%;
            right: 0;
        }

        .about-1{
            width: 80%;
        }
        
        .about-7 {
            width: 80%;
        }
    }
    @media (max-width:1024px) {
        .mt-6 {
            margin-top: 6%;
    }
        .content-top-bottom-p {
            padding-top: 16px;
            padding-bottom: 30px;
    }
        .section-padding {
            padding-top: 70px;
            padding-bottom: 70px;
    }
        .container {
            width: 100%;
            max-width: 100%;
            padding-right: 30px;
            padding-left: 30px;
    }
        .sub-heading-black, #client-section h2 {
            font-size: 40px;
            line-height: 45px;
    }
    /* Header Responsive */
        .nav > .nav-list > li a {
            color: var(--bodyColor);
    }
        .nav > .nav-btn > label > span {
            display: block;
            width: 20px;
            height: 6px;
            border-top: 2px solid #eee;
    }
        .nav > .nav-list {
            position: absolute;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            background-color: var(--white);
            height: 0;
            -webkit-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
            top: 60px;
            left: 0;
            overflow: hidden;
    }
        .nav > .nav-list > li {
            width: 100%;
            margin-top: 1.5rem;
            padding: 1px 30px;
    }
        .nav > #nav-check:checked ~ .nav-list {
            height: calc(100vh - 50px);
    }
        .nav > .nav-btn > label > span:nth-child(3) {
            height: 0;
    }
        #header {
            padding: 10px 0;
    }
        #hero {
            min-height: 500px;
    }
        #hero h1 {
            font-size: 45px;
            padding-top: 60px;
            line-height: 50px;
    }
        .hero-para p {
            -webkit-box-flex: 0;
            -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    }
    /* About Section CSS */
        #about-section .about-para {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
    }
        .about-img {
            padding-bottom: 30px;
    }
        #about-section .d-flex, #services-section .d-flex, #pointer-section .d-flex {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
    }
    .icon-container {
        margin-top: 25%;
        }
        .about-1 {
            width: 60%;
    }
        .about-2 {
            bottom: -11%;
            right: 6%;
            width: 30%;
    }
        .about-4 {
            right: 15px;
            top: -170px;
    }
        .about-5 {
            top: -150px;
            left: 59%;
            width: 48%;
    }
        .about-6 {
            left: 100px;
            top: -60px;
            width: 25%;
    }
        .about-7 {
            top: 30px;
            right: -160px;
            width: 60%;
    }
    /* Pointer Section CSS */
        .pointer-img {
            margin-bottom: 40px;
    }
        .pointer-img img {
            width: 50%;
    }
        #pointer-section .pointer-para .d-flex{
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
    }
        #pointer-section {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
    }
        .pointer-para .d-flex {
            margin-bottom: 30px;
    }
        #pointer-section .d-flex {
            -webkit-column-gap: 6%;
            -moz-column-gap: 6%;
            column-gap: 6%;
    }
        @-webkit-keyframes moveUpDown {
            0%, 100% {
                -webkit-transform: translateY(0);
                transform: translateY(0);
        }
            50% {
                -webkit-transform: translateY(-60px);
                transform: translateY(-60px);
        }
    }
        @keyframes moveUpDown {
            0%, 100% {
                -webkit-transform: translateY(0);
                transform: translateY(0);
        }
            50% {
                -webkit-transform: translateY(-60px);
                transform: translateY(-60px);
        }
    }
    /* Client Section CSS */
        #client-section h2 {
            margin-bottom: 50px;
    }
        #client-section .d-flex {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
    }
        #client-section .client-box {
            margin-bottom: 6%;
    }
        .client-icon {
            min-height: auto;
    }
        #client-section .client-box:nth-child(4) {
            margin-bottom: 0;
    }
    /* Service Section CSS */
        #services-section .services:nth-child(1), #services-section .services:nth-child(3) {
            background-color: var(--blue-fill);
    }
        #services-section .services:nth-child(2), #services-section .services:nth-child(4) {
            background-color: transparent;
    }
        #services-section .row-top-gap {
            margin-top: 6%;
    }
    /* Contact Form CSS */
        .contact-form {
            -webkit-box-flex: 0;
            -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    }
    /* Footer CSS */
        footer .d-flex {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
    }
        footer .social-icons {
            display: block;
    }
        footer .social-icons img {
            width: 36px;
    }
        footer div.footer-logo {
            -webkit-box-flex: 0;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
    }
        footer div.footerService {
            -webkit-box-flex: 0;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
            margin-bottom: 20px;
    }
        footer div.footerMenu {
            -webkit-box-flex: 0;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
            margin-bottom: 20px;
    }
        footer .footer-menu {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
    }
        footer .footer-logo {
            margin-bottom: 40px;
    }
        footer .footer-heading {
            margin-bottom: 20px;
    }
        footer ul li {
            margin-bottom: 12px;
    }
        .social-icons img {
            margin-right: 4px;
    }
    .copyright .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .copyright .d-flex div p {
     padding-bottom: 16px;
    }

    }

    @media only screen and (max-width: 480px) and (min-width: 320px) {
        .icon-container {
            margin-top: 35%;
        }
        #hero h1 {
            font-size: 32px;
            padding-top: 60px;
            line-height: 37px;
    }
        #hero {
            min-height: 400px;
    }
        #hero h1 {
            padding-top: 30px;
    }
        .about-7 {
            top: 30px;
            right: -100px;
            width: 70%;
    }
        .about-4 {
            right: -2px;
            top: -80px;
            width: 40%;
    }
        .about-6 {
            left: 47px;
            top: -32px;
            width: 25%;
    }
        .sub-heading-black, #client-section h2 {
            font-size: 28px;
            line-height: 33px;
    }
        #services-section .services {
            padding: 30px 20px;
    }
        #client-section .client-box {
            padding: 30px 20px;
    }
        .contact-form {
            padding: 30px 20px;
    }
        .section-padding {
            padding-top: 40px;
            padding-bottom: 40px;
    }
        .pointer-para .d-flex img {
            width: 60px;
    }
        .service-heading {
            line-height: 25px;
            margin-bottom: 6px;
    }
        #client-section h2 {
            margin-bottom: 30px;
    }
        .pointer-img {
            -webkit-animation: moveUpDown 4s linear infinite;
            animation: moveUpDown 4s linear infinite;
    }
        @-webkit-keyframes moveUpDown {
            0%, 100% {
                -webkit-transform: translateY(0);
                transform: translateY(0);
        }
            50% {
                -webkit-transform: translateY(15px);
                transform: translateY(15px);
        }
    }
        @keyframes moveUpDown {
            0%, 100% {
                -webkit-transform: translateY(0);
                transform: translateY(0);
        }
            50% {
                -webkit-transform: translateY(15px);
                transform: translateY(15px);
        }
    }
    }