.quote-section .quote-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    /* Sesuaikan dengan kebutuhan */
    height: 100%;
    margin: 10px;
}

.quote-box:focus {
    outline: none;
    /* Menghilangkan outline ketika elemen difokuskan */
}


.goog-te-gadget {
    font-family: Roboto, 'Open Sans', sans-serif !important;
    text-transform: uppercase;
}

.goog-te-gadget-simple {
    background-color: rgb(255, 255, 255) !important;
    border: 1px solid rgba(146, 72, 72, 0.4) !important;
    padding: 8px 4px 8px 16px !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    line-height: 2rem !important;
    display: inline-block;
    position: relative;
    top: 20px !important;
    cursor: pointer;
    zoom: .75;
}



.goog-te-menu-value {
    color: #2c2121 !important;

    &:before {
        font-family: 'Material Icons';
        content: "\E927";
        margin-right: 16px;
        font-size: 1.6rem;
        vertical-align: -05px;
        width: 32px !important;
        display: default;
    }
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        margin-right: 20px;
        background-color: #ffffff00;
    }

    .form-control3 {
        width: 500px !important;
    }

    .container {
        scroll-snap-type: x mandatory;
        scroll-padding: 100%;
    }

    .child {
        scroll-snap-align: center;
    }

    .scroll-x-overflow {
        border: 1px solid lightgray;
        padding: 1rem;
        display: flex;
        overflow-x: scroll;
        scroll-padding: 0 50%;
        scroll-snap-type: x mandatory;
        justify-content: start !important;
        border: none !important;
    }

    /* Menghilangkan default scrollbar */
    .scroll-x-overflow {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer and Edge */
    }

    .scroll-x-overflow::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    /* Membuat scrollbar custom berupa titik */
    .scroll-dots {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .scroll-dots .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        border-radius: 50%;
        background-color: darkgray;
        transition: background-color 0.3s;
    }

    /* Mengubah warna titik aktif */
    .scroll-dots .dot.active {
        background-color: var(--secondary-color);
    }
}


@media (min-width: 991.99px) {
    .home-page-icon {
        display: none;
    }
}

.home-page-icon {
    font-size: 2rem;
    padding-left: 200px !important;
    color: #fff;
}

.form-control3 {
    width: 700px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-control3:hover {
    border: none !important;
}

.form-control3:focus {
    border: none !important;
    outline: 2px solid var(--secondary-color);
    /* Ganti warna sesuai keinginan */
}

/* ================================== *\
    Mediaqueries
\* ================================== */

.img-container {
    width: 100%;
    height: 150px;
    /* Sesuaikan tinggi yang diinginkan */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-produk {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Menjaga proporsi gambar */
}


.harga-produk {
    color: var(--secondary-color);
    margin-bottom: 0px;
}

.keterangan-produk {
    font-size: 0.7rem;
    margin-bottom: 0px;
}

.produk {
    padding: 0 0 0 5px;
}

.title-produk {
    font-family: 'Roleway', sans-serif;
    font-size: 1rem;
    max-width: 100%;
    /* Mencegah teks membungkus ke baris baru */
    overflow: hidden;
    /* Sembunyikan teks yang keluar dari batas div */
    text-overflow: ellipsis;
    /* text-decoration: none !important; */
    letter-spacing: 1px;
}

#myTabContent .harga-produk {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    /* text-decoration: none !important; */
}

.femail {
    /* margin: 0 auto; */
    max-width: 100%;
    /* Agar teks tidak melewati batas div */
    white-space: nowrap;
    /* Mencegah teks membungkus ke baris baru */
    overflow: hidden;
    /* Sembunyikan teks yang keluar dari batas div */
    text-overflow: ellipsis;
    /* Tambahkan "..." jika teks terlalu panjang */
}


.scroll-down {
    position: relative;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    color: #fff;
    margin-top: 100px;
}

.scroll-down i {
    top: 10px;
    font-size: 25px;
    display: inline-block;
    animation: moveDown 2s infinite;
    margin-right: 10px;
    -webkit-animation: moveDown 2s infinite;
}

@keyframes moveDown {
    0%, 50% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
    }
}


.more-produk {
    color: var(--secondary-color)
}

.fa-arrow-right {
    display: inline-block;
    animation: moveRight 1s infinite;
    margin-right: 10px;
    -webkit-animation: moveRight 1s infinite;
}

@keyframes moveRight {
    0%, 50% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
        -webkit-transform: translateX(5px);
        -moz-transform: translateX(5px);
        -ms-transform: translateX(5px);
        -o-transform: translateX(5px);
    }
}

.timeline-section .luar-negeri1 {
    margin-bottom: 50px
}

/* .timeline-section .luar-negeri2 {
    margin-bottom: 50px;
} */

/* sosmed */
.img-sosmed {
    width: 60px;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

video {
    border-radius: 15px;
    cursor: pointer;
}

.playButton {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.playButton:hover {
    transform: scale(1.1);
}

.pulse {
    position: relative;
    width: 40px;
    height: 50px;
    background-color: rgb(16, 1, 153);
    mask: url('https://img.icons8.com/material-rounded/24/ffffff/play--v1.png') no-repeat center;
    mask-size: contain;
    -webkit-mask: url('https://img.icons8.com/material-rounded/24/ffffff/play--v1.png') no-repeat center;
    -webkit-mask-size: contain;
}

.playButton::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    animation: pulse 1.5s infinite;
}

.fullscreenButton {
    font-size: 24px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

video {
    outline: none;
}


/* back to top */
#myBtb {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    font-size: 18px;
    animation: pointUp 2s infinite;
    -webkit-animation: pointUp 3s infinite;
}

#myBtb:hover {
    background-color: #ffffff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

@keyframes pointUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* small size */
@media (max-width: 576px) {

    .container {
        scroll-snap-type: x mandatory;
        scroll-padding: 100%;
    }

    .child {
        scroll-snap-align: center;
    }

    .scroll-x-overflow {
        border: 1px solid lightgray;
        padding: 1rem;
        display: flex;
        overflow-x: scroll;
        scroll-padding: 0 50%;
        scroll-snap-type: x mandatory;
        justify-content: start !important;
        border: none !important;
    }

    /* Menghilangkan default scrollbar */
    .scroll-x-overflow {
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer and Edge */
    }

    .scroll-x-overflow::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    /* Membuat scrollbar custom berupa titik */
    .scroll-dots {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .scroll-dots .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        border-radius: 50%;
        background-color: darkgray;
        transition: background-color 0.3s;
    }

    /* Mengubah warna titik aktif */
    .scroll-dots .dot.active {
        background-color: var(--secondary-color);
    }


    #myTabContent .title-produk {
        font-size: 4vw;
    }

    .w-40 {
        width: 48%;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        margin: 3px;
        padding: 0 !important;
    }

    .form-control3 {
        width: 250px !important;
    }


    body {
        background-color: rgb(240, 240, 240);
        font-family: var(--body-font-family);
    }

    .bg-search {
        background-color: rgb(240, 240, 240);
    }

    .bg-produk {
        background-color: rgb(240, 240, 240);
    }


    .keterangan-produk {
        font-size: 0.7rem !important;
    }

    /* navbar */
    .navbar-nav .nav-link {
        display: inline-block;
        color: var(--white-color);
        font-family: var(--title-font-family);
        font-size: var(--menu-font-size);
        font-weight: var(--font-weight-medium);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        padding-top: 15px;
        padding-bottom: 15px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        color: var(--secondary-color) !important;
        padding: 10px 20px 10px 20px;
        background-color: #fff;
    }

    .input-group {
        position: relative;
    }

    .input-group input {
        border: 1px solid var(--secondary-color);

    }

    .input-group i {
        position: absolute;
        right: 13px;
        top: 8px;
        color: var(--secondary-color);
    }

    .form-control2:hover {
        color: var(--p-color);
        padding-top: 5px;
        padding-bottom: 2px;
        padding-left: 20px;
        outline: 2px solid var(--secondary-color);
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .form-control2:focus {
        color: var(--p-color);
        padding-top: 5px;
        padding-bottom: 2px;
        padding-left: 20px;
        outline: 1px solid var(--secondary-color);
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .timeline-section h6 {
        font-size: 1.2rem !important;
    }

    .timeline-section h5 {
        font-size: 1rem !important;
    }

    .timeline-section {
        background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        min-width: 10vh !important;
    }

    .timeline-container .vertical-scrollable-timeline li .icon-holder {
        position: absolute;
        left: 0;
        top: 0;
        width: 52px !important;
        height: 52px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--secondary-color);
        border-radius: 50%;
        z-index: 1;
        transition: 0.4s all;
    }

    .timeline-container .vertical-scrollable-timeline li .icon-holder::before {
        content: "";
        width: 40px !important;
        height: 40px !important;
        border: 4px solid #fff;
        position: absolute;
        background-color: var(--secondary-color);
        border-radius: 50%;
        z-index: -1;
        transition: 0.4s all;
    }

    .timeline-container .vertical-scrollable-timeline li .icon-holder i {
        font-size: 15px;
        color: var(--white-color);
    }

    .timeline-container .vertical-scrollable-timeline li::before {
        content: "";
        position: absolute;
        height: 100%;
        width: 8px;
        background-color: transparent;
        left: 100px !important;
        z-index: 0;
    }


    /* line */
    .timeline-container .vertical-scrollable-timeline .list-progress {
        width: 8px;
        height: 90%;
        background-color: var(--primary-color);
        position: absolute;
        left: 24px !important;
        top: 0;
        overflow: hidden;
    }

    .timeline-container .vertical-scrollable-timeline li {
        position: relative !important;
        padding-left: 65px !important;
        padding-top: 10px !important;
    }


    .timeline-section .luar-negeri1 {
        display: none;
    }

    .timeline-section .luar-negeri2 {
        display: inline-block !important;
    }

    .img-sosmed {
        width: 40px;
    }

    .container-copyright {
        margin-top: 200px !important;

    }
}




/* Spinner Loading Page*/
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.d-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader {
    position: relative;
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #0f009b;
    margin-bottom: 10px;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #FF3D00;
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes spin {

    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

.spinner-text {
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
    margin: 0;

    margin-top: 100%;
}

.content {
    display: none;
    padding: 20px;
    text-align: center;
}