.marquee-parent {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 30px;
}
.marquee-child {
    display: block;
    width: 3000px;
    height: 30px;
    position: absolute;
    animation: marquee 35s linear infinite; /* change 5s value to your desired speed */
    display: flex;
    align-items: center;
}
@keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -1500px; /* same as your text width */
    }
}

.marquee-child.full-width {
    width: 100%;
}

.container.padding-x-30 {
    padding: 0 30px;
}

.body-before-login .download-page .row {
    margin: 0;
}
.body-before-login .download-page .download-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.body-before-login .download-page .download-link-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.body-before-login .download-page .download-link-item {
    display: flex;
    position: absolute;
    flex: 1;
    flex-direction: column;
    margin-right: 50px;
    text-align: center;
}
.body-before-login .download-page .download-link-item-title {
    color: white;
    font-size: x-large;
}
.body-before-login .download-page .download-link-btn {
    display: flex;
    color: white;
    align-items: center;
    background: #13c15f;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}
.body-before-login .download-page .download-link-btn-img {
    width: 55px;
}
.body-before-login .download-page .download-link-item-panduan,
.body-before-login .download-page .download-link-item-panduan:hover {
    color: white;
    text-decoration: underline;
}

.supportby-section {
    display: grid;
    grid-template-columns: .3fr .3fr;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 10px;
}

.supportby-section__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.supportby-section__list img {
    width: 150px;
}

.supportby-section__list-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -5px;
}
