body {
    overflow-y: hidden; /* Hide vertical scrollbar */
    overflow-x: hidden; /* Hide horizontal scrollbar */
  }


.wrapper {
    height: 100vh;
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    overflow: hidden;
    width: 700px;
    position: relative;


}

.sliding-background {
    background: url("../imgs/logo-banner.png") repeat-x;
    height: 200px;
    width: 5076px;
    animation: slide 60s linear infinite;
}


@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-1692px, 0, 0);
    }
}


.container:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(to right,
            rgba(255, 255, 255, 1) 2%,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 1)98%);
    width: 100%;
    height: 100%;
}


#name {
    font-size: 5em;
    text-align: center;
}

#desc {
    font-size: 1em;
    padding-top: 0px;
    padding-bottom: 20px;
    text-align: center;
}

#trusted {
}

/* #logo-ticker {
    margin: 0px auto;
    padding: 60px 0px;
    background-color: #fff;
    width: 100%;
    position: relative;
}
   #logo-ticker .footer-logo-slider {
        display: inline-block;
        list-style: none;
        margin: 0;
        padding: 8px 0;
        height: 120px;
        width: 100%;
        overflow: hidden;
        position: absolute;
   }
.footer-logo-slider > ul {
    position: relative;
    display: inline-block;
}

.footer-logo-slider li {
    display: inline-block;
    height: 90px;
    width: 90px;
    padding: 5px;
    position: absolute;
    top: 0;
}
.logo {
    display: inline-block;
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
  }
           */