body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #3f51b5;
    /* Hijau */
}

.navbar-brand {
    font-weight: bold;
    color: #fff;
    /* Putih */
    font-size: 2.5em;
    /* Ukuran teks */
    text-align: center;
    /* Rata tengah teks */
    width: 100%;
    /* Lebar maksimum */
    display: block;
    /* Ubah menjadi blok */
    animation: neon 1.5s ease-in-out infinite alternate;
    /* Animasi */
}

* {
    margin: 0;
    padding: 0;
}


@keyframes shine {
    0% {
        background-position-x: -500%;
    }

    100% {
        background-position-x: 500%;
    }
}


.fancy {
    --b: 6px;
    /* control the border thickness */
    --w: 80px;
    /* control the width of the line*/
    --g: 15px;
    /* control the gap */
    --c: #0B486B;

    width: fit-content;
    padding: 0 1em;
    line-height: 1.6em;
    border: 1px solid;
    color: #fff;
    background:
        conic-gradient(from 45deg at left, var(--c) 25%, #0000 0) 0,
        conic-gradient(from -135deg at right, var(--c) 25%, #0000 0) 100%;
    background-size: 51% 100%;
    background-origin: border-box;
    background-repeat: no-repeat;
    border-image:
        linear-gradient(#0000 calc(50% - var(--b)/2),
            var(--c) 0 calc(50% + var(--b)/2),
            #0000 0) 1/0 var(--w)/calc(var(--w) + var(--g));
    margin-inline: auto;
}

p {
    font-size: 1.3rem;
    text-align: justify;
    margin-inline: max(20px, 50% - 800px/2);
}

h1 {
    font-size: 2.3rem;
}

h2 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.25rem;
}

body {
    font-family: system-ui, sans-serif;
}


.testimonial-text {
    font-family: 'Roboto', sans-serif;
    /* Menggunakan font Roboto */
    font-style: italic;
    /* Membuat teks menjadi miring */
    font-size: 18px;
    /* Menetapkan ukuran font */
}

body {
    font-size: 1.2rem;
}

.container {
    max-width: 80%;
    margin: 0 auto;
}

@media screen and (min-width: 1920px) {
    body {
        font-size: 2.5rem;
    }

    span {
        font-weight: 700;
        text-align: center;
        font-size: 40px;
        font-family: Hack, sans-serif;
        text-transform: uppercase;
        background: linear-gradient(90deg, #3f51b5, #fff, #3f51b5);
        letter-spacing: 5px;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-repeat: no-repeat;
        background-size: 80%;
        animation: shine 5s linear infinite;
        position: relative;
    }

    .container {
        max-width: 60%;
    }

    img {
        width: 200px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1919px) {
    body {
        font-size: 1rem;
    }

    .container {
        max-width: 70%;
    }

    img {
        width: 200px;
    }

    h5 {
        font-size: 1.25rem;
    }

    span {
        font-weight: 700;
        text-align: center;
        font-size: 40px;
        font-family: Hack, sans-serif;
        text-transform: uppercase;
        background: linear-gradient(90deg, #3f51b5, #fff, #3f51b5);
        letter-spacing: 5px;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-repeat: no-repeat;
        background-size: 80%;
        animation: shine 5s linear infinite;
        position: relative;
    }

    /* Gaya untuk slider */
    .my-slider {
        width: 100%;
        /* Sesuaikan lebar slider sesuai kebutuhan */
        margin: 0 auto;
    }

    .my-slide img {
        width: 100%;
        height: auto;
    }

    /* Gaya untuk slider */
    .penghargaan-slider {
        width: 110%;
        /* Sesuaikan lebar slider sesuai kebutuhan */
        margin: -20px;
        margin-top: 0rem;
    }

    .penghargaan-slide img {
        width: 100%;
        height: auto;
    }

    /* Gaya untuk slider */
    .sertifikat-slider {
        width: 110%;
        /* Sesuaikan lebar slider sesuai kebutuhan */
        margin: -20px;
        margin-top: 0rem;
    }

    .sertifikat-slide img {
        width: 100%;
        height: auto;
    }

    /* DIVIDER */
    body {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .editorial {
        display: block;
        width: 100%;
        height: 90px;
        max-height: 90px;
        margin: 0;
        z-index: 5;
        bottom: 90;
        position: absolute;
        left: 0px;
        float: left;
    }

    .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 (min-width: 3840px) {

    span {
        font-weight: 700;
        text-align: center;
        font-size: 80px;
        font-family: Hack, sans-serif;
        text-transform: uppercase;
        background: linear-gradient(90deg, #3f51b5, #fff, #3f51b5);
        letter-spacing: 5px;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        background-repeat: no-repeat;
        background-size: 80%;
        animation: shine 5s linear infinite;
        position: relative;
    }


    h5 {
        font-size: 2.25rem;
    }

    .figure-caption {
        font-size: .875em;
        color: #3F51B5;
    }

    .fs-5 {
        font-size: 2.25rem !important;
    }

    img {
        width: 400px;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .slick-slider img {
        width: 70%;
        height: auto;
    }

    .slick-slide img {
        display: inline-block;
    }

    .testimonial-text {
        font-size: 2rem;
    }

    .list-inline-item i {
        font-size: 2rem;
    }

    /* Gaya untuk slider */
    .my-slider {
        width: 100%;
        /* Sesuaikan lebar slider sesuai kebutuhan */
        margin: 0 auto;
    }

    .my-slide img {
        width: 100%;
        height: auto;
    }

    /* Gaya untuk slider*/
    .penghargaan-slider {
        width: 100%;
        /* Sesuaikan lebar slider sesuai kebutuhan */
        /* margin: 0 auto; */
        margin: -5px;
        margin-top: 0rem;
        margin-bottom: -3rem;
    }

    .penghargaan-slide img {
        width: 100%;
        height: auto;
    }

    /* Gaya untuk slider*/
    .sertifikat-slider {
        width: 100%;
        /* Sesuaikan lebar slider sesuai kebutuhan */
        /* margin: 0 auto; */
        margin: -5px;
        margin-top: 0rem;
        margin-bottom: -3rem;
    }

    .sertifikat-slide img {
        width: 100%;
        height: auto;
    }

    /* DIVIDER */
    body {
        margin: 0;
        padding: 0;
        background-color: #fff;
    }

    .editorial {
        display: block;
        width: 100%;
        height: 90px;
        max-height: 90px;
        margin: 0;
        z-index: 5;
        bottom: 0;
        position: absolute;
        left: 0px;
        float: left;
    }

    .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%);
        }
    }
}