

/* Gelombang animasi */
.editorial-border {
    display: block;
    width: 100%;
    height: 80px;
    max-height: 80x;
    margin: 0;
    z-index: 5;
    bottom: 0;
    left: 0px;
    float: left;
    margin-top: -75px;
}
.parallax1 > use {
    animation: move-forever1 10s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
.parallax2 > use {
    animation: move-forever2 8s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
.parallax3 > use {
    animation: move-forever3 6s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
.parallax4 > use {
    animation: move-forever4 4s linear infinite;
    &:nth-child(1) {
        animation-delay: -2s;
    }
}
@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes move-forever3 {
    0% {
        transform: translate(85px, 0%);
    }
    100% {
        transform: translate(-90px, 0%);
    }
}
@keyframes move-forever4 {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@media (max-width: 480px) {
    .editorial-border {
        height: 60px;
        max-height: 60x;
        margin-top: -45px;
    }
}

@keyframes cloud {
    0% {
        background-position-x: 0rem;
    }
    100% {
        background-position-x: -250rem;
    }
}

@media (max-width: 768px) {
    .konten {
        flex-direction: column-reverse;
    }

    .kol-12 {
        width: 100%;
        text-align: center;
    }

    .box {
        text-align: center;
    }

    .box h1 {
        font-size: 32px;
    }

    .renggang {
        padding: 0 0 60px;
    }

    .cloud {
        background-size: 180rem 15rem;
    }

    .cloud-1,
    .cloud-2 {
        height: 15rem;
        background-size: 200rem 15rem;
        margin-top: -17rem;
    }
    .mobile-center {
        align-items: center;
    }
}

.preview-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
}

.preview-container:hover .overlay {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease-in-out;
    font-size: 0.875rem;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slide-in 0.3s ease-out;
}

@media (max-width: 640px) {
    .captcha-wrapper {
        transform: scale(0.7);
    }
}

@media (min-width: 641px) {
    .captcha-wrapper {
        transform: scale(1);
    }
}
