@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caprasimo&display=swap');


:root {
    --dark: #0f172a;
    --sky: #67b9c5;
    --putih: #ffffff;
    --abu: #cacaca;
}

body {
    background: #fbfcfb;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* todo membuat color */
.bg-white {
    background-color: var(--putih);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-sky,
.btn-sky {
    background-color: var(--sky) !important;
}

.text-sky {
    color: var(--sky) !important;
}

/* CSS */

.container-kategoriProduk {
    padding-top: 10%;
    display: flex;
    justify-content: center;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    width: 250px;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 1 200px;
    /* Mengatur lebar item */
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    display: block;
    border-radius: 5px;
}

.view-detail {
    position: absolute;
    top: 10px;
    right: 1px;
    padding: 5px 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.product-card:hover .view-detail {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info {
    text-align: center;
    margin-top: 10px;
    z-index: 1;
}

.product-info h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.product-info .product-price {
    margin-top: 2px;
    font-size: 12px;
    color: red;
}

/* ? mengubah warna hover navbar-toggler-icon */
vbar-expand-lg .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: 0.3s ease;
}

.navbar-light .navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28103, 185, 197, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-close {
    border-radius: 50px;
}

/* ? menghilangkan box shadow pada toggler focus */
.navbar-toggler:focus {
    box-shadow: none;
}

/* ?mengubah warna active */
.active {
    color: var(--sky) !important;
}

/* ?membuat hover pada tag element navbar */
.nav-item .nav-link1 {
    transition: 0.3s ease;
}

.nav-item .nav-link1:hover {
    color: var(--sky);
}

.kotak {
    width: 75% !important;
}

.kotak h5 {
    font-family: 'Lugrasimo', cursive;
    font-size: 32px;
}

.kotak span {
    font-family: 'Caprasimo', cursive;
    letter-spacing: 3px;
}

/* ? Produk */
#produk {
    padding-top: 56px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--putih);
    background-color: var(--sky);
}

.card-body img {
    width: 100px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.card-body img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.card__produk {
    border-radius: 50px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    /* Menambahkan efek bayangan */
}

.card__produk2 {
    border-radius: 10px;
    margin-bottom: 2%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Ubah nilai rgba() sesuai kebutuhan */
}


.lihat__produk {
    width: 150px;
    height: 100%;
    background-color: var(--sky);
    color: var(--putih);
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: none;
}

.lihat__produk:hover {
    background-color: white;
    color: var(--sky);
    border: 1px solid var(--sky);
}


.card-body .lihat__produk3 {
    font-size: 12px;
}

.konten__lima {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__aindustri {
    margin-top: 2.6rem;
    /* border-bottom: 1px solid var(--sky); */
}

.foot {
    margin-bottom: -5px;
}

.card__video {
    width: 230px;
    border: 1px solid var(--sky);
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.card__video:hover {
    box-shadow: 1px 1px 8px 1px var(--sky);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.video__video {
    width: 210px;
    height: 350px;
    margin: auto;
    padding-top: 5px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

/* Modal Pop Up Banner */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding-top: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    /* menambahkan lapisan transparan di latar belakang */
}

.modal-dialog {
    max-width: 100%;
    /* width: 300px; */
    width: 450px;
    /* background-color: #fff; */
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); */
    position: relative;
    /* Mengubah posisi menjadi relatif untuk memudahkan penempatan absolut */
}

.modal-image {
    /* border: 5px solid #fff; */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn-close {
    background-image: url(../img/close.png);
    background-repeat: no-repeat;
    width: 30px !important;
    height: 30px !important;
    display: block;
    cursor: pointer;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 100;
    font-weight: bold;
    background-size: contain;
}

/* Modal Pop Up Banner */

/* Media queries untuk tampilan responsif */
@media screen and (min-width: 768px) {
    .modal-dialog {
        max-width: 500px;
        /* Ubah lebar maksimum sesuai kebutuhan untuk tampilan tablet */
    }

}

@media screen and (min-width: 992px) {
    .modal-dialog {
        max-width: 700px;
        /* Ubah lebar maksimum sesuai kebutuhan untuk tampilan desktop */
    }
}

@media screen and (max-width: 767px) {
    .modal-dialog {
        max-width: 90%;
        /* Atur lebar maksimum sesuai kebutuhan untuk tampilan ponsel */
        margin: 0 auto;
        /* Tengahkan dialog di tengah layar */
    }

    .modal {
        padding-top: 100px;
    }
}

/* detail produk printing */

img {
    width: 100%;
    height: auto;
    padding-top: 2%;
    display: block;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6%;
}

.container-detailprinting {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

.product-div {
    margin: 1rem 0;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #fff;
    border-radius: 3px;
    column-gap: 10px;
}

.product-div-left {
    padding: 20px;
}

.product-div-right {
    padding: 20px;
}

.product-name {
    color: var(--sky);
    transition: color 0.3s ease;
    /* Menambahkan transisi untuk efek smooth */
}

.product-name:hover {
    color: var(--dark);
    /* Mengubah warna teks saat dihover */
}

.img-container img {
    width: 130px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.img-container img:hover {
    transform: scale(1.1);
    /* Perbesar gambar saat dihover */
}

.hover-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.hover-container div {
    border: 2px solid var(--dark);
    padding: 1rem;
    border-radius: 15px;
    margin: 0 4px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, padding 0.3s ease, transform 0.3s ease;
    /* Efek transisi untuk border, padding, dan transform */
}

.hover-container div:hover {
    border-color: var(--sky);
    /* Mengubah warna border saat dihover */
    padding: 1.2rem;
    /* Mengubah padding saat dihover */
    transform: scale(1.1);
    /* Mengubah skala saat dihover */
}

.hover-container div:hover {
    border-color: var(--sky);
}

.hover-container div img {
    width: 50px;
    cursor: pointer;
}

.product-div-right span {
    display: block;
}

.product-name {
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

.product-price {
    font-weight: 700;
    font-size: 24px;
    opacity: 0.9;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-top: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
    /* Efek transisi untuk perubahan warna */
    cursor: pointer;
    /* Menambahkan ikon kursor pointer */
}

/* Definisi animasi */
@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Menetapkan animasi pada elemen saat dipilih */
.product-rating:hover {
    color: #FF9F00;
    /* Mengubah warna saat dihover */
    animation: moveUpDown 0.5s ease;
    /* Menetapkan animasi gerak */
}

.product-rating span {
    margin-right: 6px;
}

.product-description {
    font-size: 15px;
    /* Ukuran font */
    line-height: 1.5;
    font-weight: 300;
    /* Ketebalan font */
    opacity: 0.9;
    margin-top: 22px;
    text-align: justify;
}

.product-description span {
    margin-top: 15px;
    font-weight: bold;
    color: #FF9F00;
    transition: transform 0.3s ease;
    /* Efek transisi untuk perubahan transformasi */
}

.product-description span:hover {
    transform: translateY(-5px);
    /* Menggeser elemen ke atas saat dihover */
}

.product-unggulan {
    font-size: 15px;
    /* Ukuran font */
    line-height: 1.6;
    font-weight: 300;
    /* Ketebalan font */
    opacity: 0.9;
    text-align: justify;
}


.btn-groups {
    margin-top: 22px;
}

.btn-groups a {
    display: inline-block;
    font-size: 14px;
    font-family: inherit;
    padding: 8px 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    text-decoration: none;
    /* menambahkan garis bawah */
}

.btn-groups a .fas {
    margin-right: 8px;
}

.add-cart-btn {
    background-color: #FF9F00;
    border: 2px solid #FF9F00;
    margin-right: 8px;
}

.add-cart-btn:hover {
    background-color: #fff;
    color: #FF9F00;
}

.add-cartTiktok-btn {
    background-color: var(--dark);
    border: 2px solid var(--dark);
    margin-right: 8px;
}

.add-cartTiktok-btn:hover {
    background-color: #fff;
    color: var(--dark);
}

.buy-now-btn {
    background-color: var(--sky);
    border: 2px solid var(--sky);
}

.buy-now-btn:hover {
    background-color: #fff;
    color: var(--sky);
}

.buy-now-btn .fa-whatsapp {
    font-size: 20px;
    /* Sesuaikan ukuran ikon */
    margin-right: 7px;
    /* Sesuaikan jarak antara ikon dan teks */
    vertical-align: middle;
    /* Menyesuaikan penempatan ikon secara vertikal */
}

.buy-now-btn .fa-whatsapp:before {
    content: "\f232";
    /* Kode ikon WhatsApp */
    font-family: "Font Awesome 5 Brands";
    /* Gunakan jenis font yang benar */
}



@media screen and (max-width: 992px) {
    .product-div {
        grid-template-columns: 100%;
    }

    .product-div-right {
        text-align: center;
    }

    .product-rating {
        justify-content: center;
    }

    .product-description {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }

    .main-wrapper {
        padding-top: 8%;
    }
}

@media screen and (min-width: 450) {
    .product-div-left {
        flex-direction: row;
    }

    .img-container {
        flex: 0 0 50%;
        /* Bagi lebar menjadi setengah */
        padding: 0 10px;
        /* Jarak antara gambar dengan konten lainnya */
    }

    .img-container img {
        max-width: 100%;
        height: auto;
    }

    .hover-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex: 0 0 50%;
        /* Bagi lebar menjadi setengah */
        padding: 0 10px;
        /* Jarak antara galeri gambar dengan konten lainnya */
    }

    .hover-container div {
        width: calc(20% - 10px);
        /* Menyusun 5 gambar per baris */
        margin: 5px;
        /* Jarak antara gambar */
    }

    .hover-container img {
        max-width: 100%;
        height: auto;
    }

    .main-wrapper {
        padding-top: 12%;
    }

}

@media screen and (max-width: 470px) {
    .btn-groups {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-groups a {
        flex: 0 0 calc(50% - 10px);
        /* Tombol mengisi setengah lebar container dengan jarak 10px */
        margin: 5px;
        /* Jarak antara tombol */
    }

    .main-wrapper {
        padding-top: 12%;
    }
}


@media screen and (max-width: 400px) {
    .btn-groups {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-groups a {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .main-wrapper {
        padding-top: 12%;
    }
}

/* selesai detail produk printing */

/* our patners */

.slick-slide {
    margin: 0 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
}

.slick-slide {
    display: none;
    float: left;
    max-height: 100%;
    height: 150px;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-initialized .slick-slide {
    display: block;
}

/* selesai our patners */


/* lightbox testimoni */

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
    display: none;
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
    outline: none;
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;

    /* Image border */
    border: 4px solid white;
}

.lightbox a img {
    border: none;
    width: 100%;
}

.lb-outerContainer {
    position: relative;
    zoom: 1;
    width: 250px;
    height: 260px;
    margin: 0 auto;
    border-radius: 4px;

    /* Background color behind image.
           This is visible during transitions. */
    background-color: white;
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../img/kiriman/loading.gif) no-repeat;
}

.lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.lb-container>.nav {
    left: 0;
}

.lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(../img/kiriman/prev.png) left 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(../img/kiriman/next.png) right 48% no-repeat;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
}

.lb-data {
    padding: 15px;
    color: #ccc;
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
}

.lb-data .lb-caption a {
    color: #4ae;
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../img/kiriman/close.png) top right no-repeat;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

/* selesai lightbox testimoni */

/* kontak shoppe, tiktok whatsapp */

.container-contact {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
}

.container-contact .card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* Mengubah arah flex menjadi column */
    justify-content: center;
    /* Menengahkan konten secara vertikal */
    align-items: center;
    /* Menengahkan konten secara horizontal */
    width: 350px;
    max-width: 100%;
    height: 300px;
    background: white;
    border-radius: 15px;
    transition: 0.5s;
    box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.2);
}

.container-contact .card:hover {
    height: 330px;
    cursor: pointer;
}

.container-contact .card .img-box {
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
    margin: 0 0;

}

.container-contact .card:hover .img-box {
    top: -100px;
    scale: 0.75;
}

.container-contact .card .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.container-contact .card .content {
    position: absolute;
    top: 252px;
    width: 100%;
    height: 35px;
    padding: 0 30px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
}

.container-contact .card:hover .content {
    top: 130px;
    height: 250px;
}

.container-contact .card .content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr);
}

.container-contact .card .content p {
    color: #333;
    font-size: 0.8rem;
    font-weight: 700;
}

.container-contact .card .content p span {
    color: var(--sky);
    text-transform: uppercase;
}

.container-contact .card .content a {
    position: relative;
    top: 15px;
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    background: var(--clr);
    color: white;
    font-weight: 500;
    border-radius: 15px;
    font-size: 14px;
}

.container-contact .card .content a:hover {
    opacity: 0.8;
}

@media (max-width: 480px) {
    .container-contact .card {
        width: 200px;
        border-radius: 15px;
    }

    .container-contact .card:hover {
        height: 385px;
        cursor: pointer;
    }

    .container-contact .card .img-box {
        width: 185px;
        border-radius: 10px;
    }


    .container-contact .card .content p {
        font-size: 0.8rem;
    }

    .container-contact .card .content a {
        font-size: 0.9rem;
    }

    .container-contact .card .content h4 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--clr);
    }
}

/* selesai kontak shoppe, tiktok whatsapp */

/* faq */


.accordion {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}

.accordion-item {
    background-color: #fff;
    color: #111;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.accordion-item-body-content span {
    font-weight: 600;
    color: var(--sky);
}

@media(max-width:767px) {
    html {
        font-size: 14px;
    }
}

/* selesai faq */

/* Galeri Gambar */
#lightgallery.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 7%;
    padding-right: 7%;
}

#lightgallery.row .col-lg-3 {
    flex: 0 0 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    position: relative;
    padding: 0 0.5rem;
}

#lightgallery.row .col-lg-3:nth-child(4n+1),
#lightgallery.row .col-lg-3:nth-child(4n+2),
#lightgallery.row .col-lg-3:nth-child(4n+3),
#lightgallery.row .col-lg-3:nth-child(4n+4) {
    clear: both;
}

#lightgallery.row .col-lg-3 img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

#lightgallery.row .col-lg-3:hover img {
    transform: scale(1.05);
}

/* Responsif */
@media (max-width: 992px) {
    #lightgallery.row .col-lg-3 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    #lightgallery.row .col-lg-3 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 576px) {
    #lightgallery.row .col-lg-3 {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }
}

/* Galeri Gambar */


/* Floating WhatsApp */

.btn-floating {
    position: fixed;
    right: 25px;
    bottom: 25px;
    overflow: hidden;
    width: 150px;
    height: 45px;
    border-radius: 20px;
    border: none;
    z-index: 9999;
    color: #fff;
    background-color: #34af23;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-floating span {
    font-size: 14px;
    margin-left: 5px;
    transition: .2s;
}

.btn-floating span {
    display: inline-block;
}

.btn-floating img {
    height: 30px;
    width: 30px;
    transition: all 0.2s ease;
}

/* Selesai Floating WhatsApp */


/* todo ======================================================================================================================================== */

/* todo Ukuran Dekstop ============================================================================================= */
@media only screen and (min-width:1040px) {
    .test {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 42px;
        z-index: 1030;
        color: var(--putih);
        background-color: var(--sky);
        text-align: center;
        line-height: 42px;
        display: flex;
        justify-content: center;
    }

    /* ! ------------------------------------------------------------------------------------------------------------------------------------------- */

    .navbar-brand {
        display: flex;
        align-items: end;
    }

    .navbar-brand img {
        width: 50px;
        margin-right: 5px;
    }

    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }


    .navbar-brand .industri {
        margin-left: -7px;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }

    .nav-link1 {
        position: relative;
    }

    .nav-link1::after {
        content: '';
        height: 2px;
        width: 0;
        background-color: var(--sky);
        position: absolute;
        left: 5%;
        bottom: 0;
        transform: translateY(50% - 25px);
        transition: 0.3s ease;
        pointer-events: none;
    }

    .nav-link1.active::after {
        content: '';
        height: 2px;
        width: 100%;
        background-color: var(--sky);
        position: absolute;
        left: 5%;
        bottom: 0;
        transform: translateY(50% - 25px);
        transition: 0.3s ease;
        pointer-events: none;
    }

    .nav-link1:hover:after {
        width: 100%;
    }


    /* ? Halaman Utama */
    .konten__ketiga .garis__konten {
        width: 5%;
        height: 1px;
        background-color: var(--dark);
        margin-top: 13px;
        margin-right: 20px;
    }

    .konten__ketiga .lead {
        font-size: 16px;
        font-weight: 100;
    }

    /* ? membuat garis */
    .garis__navbar {
        width: 1px;
        height: 30px;
        background-color: var(--dark);
    }

    /* ? sosial media */
    .nav-item .media__sosial {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 1px solid var(--abu);
        text-align: center;
        transition: 0.3s ease;
        margin: 0;
    }

    .nav-item .media__sosial:hover {
        color: var(--putih);
        background-color: var(--sky);
        border: 1px solid var(--sky);
    }

    /* ? Produk */

    .konten__ketiga .produk {
        margin: auto;
        width: 180px;
        height: 45px;
        border: 1px solid var(--sky);
        border-radius: 50px;
        text-align: center;
        transition: 0.5s ease;
    }

    .konten__ketiga .produk h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 45px;
        color: var(--sky);
    }

    .konten__ketiga .produk:hover {
        box-shadow: 1px 1px 10px 1px var(--sky);
    }

    .konten__ketiga .jasa__layanan {
        margin-top: 15px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 3px;
        color: var(--sky);
    }

    .card-body .lihat__produk1 {
        text-transform: uppercase;
        margin-top: 25px;
        font-size: 21px;
        font-weight: 600;
        color: var(--sky);
        transition: color 0.3s ease;
    }

    .card-body .lihat__produk1:hover {
        color: #0072a0;
    }

    .konten__ketiga {
        margin-bottom: 60px;
    }

    /* ?  */
    .container .bingkai {
        display: flex;
    }

    .container .bingkai .bulat {
        margin: auto;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid var(--sky);
        text-align: center;
    }

    .container .bingkai .bulat img {
        width: 78px;
        height: 78px;
        border-radius: 50%;
    }

    /* ? Jumbotron */
    .jumbotron__ {
        background-color: var(--sky);
        padding-top: 90px;
        height: 300px;
    }

    .jumbotron__ .h1__printing,
    .jumbotron__ .h1__konveksi,
    .jumbotron__ .h1__bordir,
    .jumbotron__ .h1__about,
    .jumbotron__ .h1__contact,
    .jumbotron__ .h1__FAQ,
    .jumbotron__ .h1__video {
        text-align: center;
        line-height: 200px;
        font-size: 90px;
        font-weight: 700;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px #ffffff;
        background-image: url(../img/animasi/back.png);
        -webkit-background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
        border-radius: 50px;
    }

    @keyframes back {
        100% {
            background-position: 2000px 0;
        }
    }

    /* container box load more bukti kiriman   */

    .container .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding-bottom: 25px;
    }

    .container .box-container .box {
        background-color: #fff;
        padding: 5px;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
        display: none;
    }

    .container .box-container .box:nth-child(1),
    .container .box-container .box:nth-child(2),
    .container .box-container .box:nth-child(3),
    .container .box-container .box:nth-child(4) {
        display: inline-block;
    }

    .container .box-container .box .image {
        margin-bottom: 20px;
        overflow: hidden;
        height: 250px;
        border-radius: 5px;
    }

    .container .box-container .box .image img {
        height: 100%;
        width: 100%;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .container .box-container .box:hover .image img {
        transform: scale(1.1);
    }


    .container .box-container .box .content h6 {
        font-size: 16px;
        color: #334;
        padding-left: 15px;
    }

    .container .box-container .box .content p {
        font-size: 13px;
        color: #777;
        line-height: 2;
        padding-left: 15px;
        padding-right: 15px;
        text-align: justify;
    }

    .container .box-container .box .content .btn:hover {
        background-color: crimson;
        border-color: crimson;
        color: #fff;
    }

    .container .box-container .box .content .icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 8px;
        border-top: 1px solid #334;
    }

    .container .box-container .box .content .icons span {
        font-size: 14px;
        color: #777;
    }

    .container .box-container .box .content .icons span i {
        color: crimson;
        padding-right: 5px;
    }

    #load-more {
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 13px 30px;
        color: #334;
        font-size: 16px;
        border-radius: 30px;
        background-color: #fff;
        cursor: pointer;
        margin-bottom: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #load-more:hover {
        background-color: var(--dark);
        border-color: var(--dark);
        color: #fff;
    }


    @media (max-width:450px) {

        .container .heading {
            font-size: 25px;
        }

        .container .box-container {
            grid-template-columns: 1fr;
        }

        .container .box-container .box .image {
            height: 200px;
        }

        .container .box-container .box .content p {
            font-size: 12px;
        }

        .container .box-container .box .content .icons span {
            font-size: 12px;
        }
    }

    /* selesai container box load more bukti kiriman   */



    /* ? ============================================== ABOUT ======================================================= */
    .about__satu,
    .contact__satu,
    .video__satu .faq__satu {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .printing__satu,
    .konveksi__satu {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .about__satu .garis__about,
    .kontak__satu .garis__kontak,
    .faq__satu .garis__faq,
    .video__satu .garis__video,
    .printing__satu .garis__print,
    .konveksi__satu .garis__konveksi {
        width: 5%;
        height: 1px;
        background-color: var(--dark);
    }

    .about__satu .p__tentang,
    .kontak__satu .p__kontak,
    .faq__satu .p__faq,
    .video__satu,
    .p__video,
    .printing__satu .p__print,
    .konveksi__satu .p__konveksi {
        margin-top: -10px;
        margin-left: 20px;
    }

    .about__h1 {
        width: 50%;
    }

    .jumbotron__image {
        width: 100%;
        height: 400px;
        background-image: url(../img/team/1.jpg);
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        color: white;

    }

    /* ProdukPrinting */
    /* ProdukKonveksi */

    .row.row-cols-1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .card-printing,
    .card-konveksi {
        border: none;
        padding: 10px 10px;
        color: #fbfcfb;
    }

    .print__gambar1,
    .konveksi__gambar1 {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .wadah__gambar {
        position: relative;
        overflow: hidden;
    }

    .gambar__print {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .ulasan__print,
    .ulasan__konveksi {
        background-color: var(--sky);
        border-radius: 20px;
        text-align: center;
        line-height: 25px;
        font-weight: bold;
        color: var(--putih);
        font-size: 12px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .ulasan {
        color: #666;
        font-size: 10px;
    }

    .card-body .lihat__print,
    .card-body .lihat__konveksi {
        background-color: var(--sky);
        color: var(--putih);
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
    }

    .card-body .lihat__print:hover,
    .card-body .lihat__konveksi:hover {
        background-color: transparent;
        border: 1px solid var(--sky);
        color: var(--sky);
    }


    /* ? Bukti Pengiriman */

    .bukti__pengiriman__logo p {
        padding-top: 18px;
        letter-spacing: 2px;
    }

    .bukti__pengiriman__logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gambar__konten__lima {
        width: 150px;
        max-width: 100%;
    }

    /* Carousel Banner */

    .carousel {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
        padding-top: 40px;
    }

    .carousel .carousel-item img {
        width: 100%;
        height: 607px;
        object-fit: cover;
    }

    .carousel .carousel-inner {
        display: flex;
        transition: transform 0.5s ease;
    }

    .carousel .carousel-item {
        flex: 0 0 100%;
    }

    .carousel-control-prev {
        left: 5px;
    }

    .carousel-control-next {
        right: 5px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
        background-color: var(--sky);
        border-radius: 50%;
        color: #fff;
        border: none;
        cursor: pointer;
        z-index: 1;
    }

    .carousel-indicator {
        border: none;
        background-color: #bbb;
        margin: 0 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .carousel-indicator.active {
        background-color: #333;
    }

    /* Selesai Carousel Banner */

    #corporate {
        margin: 20px auto;
        /* Untuk memberi jarak antara bagian atas dan bawah */
        max-width: 1200px;
        /* Untuk membatasi lebar konten */
    }

    .content-wrapper {
        display: flex;
        /* Untuk menempatkan anak-anak secara horizontal */
        justify-content: space-between;
        /* Untuk memberikan jarak yang sama di antara anak-anak */
    }

    .produk-styles-ZUcTIx {
        position: relative;
        /* Untuk membuat posisi relatif yang diperlukan untuk absolut */
        overflow: hidden;
        /* Untuk memastikan gambar tidak terlihat di luar kotak */
        width: 45%;
        /* Mengatur lebar setiap gambar */
    }

    .produk-styles-ZUcTIx img {
        width: 100%;
        /* Mengisi gambar sepenuhnya dalam kotak */
        height: auto;
        /* Menjaga rasio aspek gambar */
    }

    .produk-styles-tVg6Cu {
        position: absolute;
        /* Untuk menempatkan teks di atas gambar */
        bottom: 20px;
        /* Jarak dari bawah */
        left: 20px;
        /* Jarak dari kiri */
        color: white;
        /* Warna teks */
    }

    .produk-styles-HOLDO2 {
        margin: 0;
        /* Menghapus margin default */
        font-size: 24px;
        /* Ukuran teks */
        font-weight: bold;
        /* Ketebalan teks */
    }



    /* ? ============================================== TESTIMONIAL ======================================================= */

    /* ? ============================================== FAQ ======================================================= */

    /* ? ============================================== PRINTING ======================================================= */

    /* ? ============================================== KONVEKSI ======================================================= */

    /* ? ============================================== BORDIR ======================================================= */

    /* diluar code lightbox style */

    .conteiner-gallery {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin: 0 auto;
    }

    .gallery a {
        flex-basis: calc(25% - 30px);
        margin-bottom: 30px;
        text-align: center;
    }

    .gallery img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.1);
    }


    /* diluar code lightbox style */

}


/* todo ukuran Tablet  ============================================================================================= */

@media (min-width:604px) and (max-width:1029px) {
    .test {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 42px;
        z-index: 1030;
        color: var(--putih);
        background-color: var(--sky);
        text-align: center;
        line-height: 42px;
        display: flex;
        justify-content: center;
        font-size: 13px;
    }

    .navbar-brand img {
        width: 50px;
        margin-top: -5px;
    }

    .navbar-brand .industri {
        margin-left: -7px;
    }

    .navbar-brand span {
        font-size: 1.1rem;
    }

    .sm-icons {
        flex-direction: row;
        margin-top: 15px;
    }

    /* ? sosial media */
    .nav-item .media__sosial {
        width: 35px;
        height: 35px;
        border-radius: 50px;
        border: 1px solid var(--abu);
        text-align: center;
        transition: 0.3s ease;
    }

    .nav-item .media__sosial:hover {
        color: var(--putih);
        background-color: var(--sky);
        border: 1px solid var(--sky);
    }

    /* ? Halaman Utama */
    .garis__konten,
    .konten__ketiga .garis__konten {
        width: 8%;
        height: 1px;
        background-color: var(--dark);
        margin-top: 13px;
        margin-right: 20px;
    }

    .konten__ketiga .lead {
        font-size: 14px;
        font-weight: 100;
    }

    .konten__ketiga .produk {
        margin: auto;
        width: 180px;
        height: 45px;
        border: 1px solid var(--sky);
        border-radius: 50px;
        text-align: center;
        transition: 0.5s ease;
    }

    .konten__ketiga .produk h3 {
        font-size: 24px;
        font-weight: 600;
        line-height: 45px;
        color: var(--sky);
    }

    .konten__ketiga .produk:hover {
        box-shadow: 1px 1px 10px 1px var(--sky);
    }

    .konten__ketiga .jasa__layanan {
        margin-top: 15px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 3px;
        color: var(--sky);
    }

    .card-body .lihat__produk1 {
        text-transform: uppercase;
        margin-top: 25px;
        font-size: 21px;
        font-weight: 600;
        color: var(--sky);
        transition: color 0.3s ease;
    }

    .card-body .lihat__produk1:hover {
        color: #0072a0;
    }

    /* ?  Cara Memilih Konveksi*/
    .container .bingkai {
        display: flex;
    }

    .container .bingkai .bulat {
        margin: auto;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        border: 1px solid var(--putih);
        text-align: center;
    }

    .container .bingkai .bulat img {
        width: 63px;
        height: 63px;
        border-radius: 50%;
    }

    /* ? Jumbotron */
    .jumbotron__ {
        background-color: var(--sky);
        padding-top: 70px;
        height: 250px;
    }

    .jumbotron__ .h1__printing,
    .jumbotron__ .h1__konveksi,
    .jumbotron__ .h1__bordir,
    .jumbotron__ .h1__about,
    .jumbotron__ .h1__contact,
    .jumbotron__ .h1__FAQ,
    .jumbotron__ .h1__video {
        text-align: center;
        line-height: 200px;
        font-size: 80px;
        font-weight: bold;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px #ffffff;
        background-image: url(../img/animasi/back.png);
        -webkit-background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
    }

    @keyframes back {
        100% {
            background-position: 2000px 0;
        }
    }

    /* container box load more bukti kiriman   */

    .container .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding-bottom: 25px;
    }

    .container .box-container .box {
        background-color: #fff;
        padding: 5px;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
        display: none;
    }

    .container .box-container .box:nth-child(1),
    .container .box-container .box:nth-child(2),
    .container .box-container .box:nth-child(3),
    .container .box-container .box:nth-child(4) {
        display: inline-block;
    }

    .container .box-container .box .image {
        margin-bottom: 20px;
        overflow: hidden;
        height: 250px;
        border-radius: 5px;
    }

    .container .box-container .box .image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .container .box-container .box:hover .image img {
        transform: scale(1.1);
    }

    .container .box-container .box .content h6 {
        font-size: 16px;
        color: #334;
        padding-left: 15px;
    }

    .container .box-container .box .content p {
        font-size: 13px;
        color: #777;
        line-height: 2;
        padding-left: 15px;
        padding-right: 15px;
        text-align: justify;
    }

    .container .box-container .box .content .btn:hover {
        background-color: crimson;
        border-color: crimson;
        color: #fff;
    }

    .container .box-container .box .content .icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 8px;
        border-top: 1px solid #334;
    }

    .container .box-container .box .content .icons span {
        font-size: 14px;
        color: #777;
    }

    .container .box-container .box .content .icons span i {
        color: crimson;
        padding-right: 5px;
    }


    #load-more {
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 13px 30px;
        color: #334;
        font-size: 16px;
        border-radius: 30px;
        background-color: #fff;
        cursor: pointer;
        margin-bottom: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #load-more:hover {
        background-color: var(--dark);
        border-color: var(--dark);
        color: #fff;
    }

    @media (max-width:450px) {

        .container .heading {
            font-size: 25px;
        }

        .container .box-container {
            grid-template-columns: 1fr;
        }

        .container .box-container .box .image {
            height: 200px;
        }

        .container .box-container .box .content p {
            font-size: 12px;
        }

        .container .box-container .box .content .icons span {
            font-size: 12px;
        }
    }

    /* selesai container box load more bukti kiriman   */

    /* ? ============================================== ABOUT ======================================================= */
    .about__satu .garis__about,
    .contact__satu .garis__contact,
    .video__satu .garis__video,
    .faq__satu .garis__faq,
    .printing__satu .garis__print,
    .konvekasi__satu .garis__konveksi {
        width: 5%;
        height: 1px;
        background-color: var(--dark);
    }


    .about__satu .p__tentang,
    .contact__satu .p__contact,
    .printing__satu .p__print,
    .konveksi__satu .p__konveksi,
    .faq__satu .p__faq {
        margin-top: -10px;
        margin-left: 20px;
    }

    .about__h1 {
        width: 70%;
    }

    .jumbotron__image {
        width: 100%;
        height: 300px;
        background-image: url(../img/team/1.jpg);
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        color: white;

    }

    /* ProdukPrinting */

    .row.row-cols-1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .card-printing {
        border: none;
        padding: 10px 10px;
        color: #fbfcfb;
    }

    .print__gambar1 {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .wadah__gambar {
        position: relative;
        overflow: hidden;
    }

    .gambar__print {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .ulasan__print {
        background-color: var(--sky);
        border-radius: 20px;
        text-align: center;
        line-height: 25px;
        font-weight: bold;
        color: var(--putih);
        font-size: 12px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .ulasan {
        color: #666;
        font-size: 10px;
    }

    .lihat__print,
    .fab.fa-whatsapp {
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .lihat__print {
        background-color: var(--sky);
        color: var(--putih);
    }

    .lihat__print:hover {
        background-color: #058FAA;
    }

    .fab.fa-whatsapp {
        color: var(--putih);
        margin-right: 5px;
    }

    .bukti__pengiriman__logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gambar__konten__lima {
        width: 130px;
        max-width: 100%;
    }

    .bukti__pengiriman__logo p {
        padding-top: 18px;
        letter-spacing: 2px;
    }

    /* Carousel Banner */

    .carousel {
        padding-top: 80px;
    }

    .carousel-item img {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }

    .carousel-indicator.active {
        background-color: #333;
    }

    /* Selesai Carousel Banner */


    /* ? ============================================== CONTACT ======================================================= */

    /* ? ============================================== FAQ ======================================================= */

    /* ? ============================================== PRINTING ======================================================= */

    /* ? ============================================== KONVEKSI ======================================================= */

    /* ? ============================================== BORDIR ======================================================= */
    .conteiner-gallery {
        margin-top: 50px;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin: 0 auto;
        /* Menengahkan galeri */
    }

    .gallery a {
        flex-basis: calc(25% - 20px);
        /* 25% = 100% / 4 images */
        margin-bottom: 30px;
        text-align: center;
    }

    .gallery img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.1);
    }

}

/* todo ukuran hp ============================================================================================= */
@media only screen and (max-width:600px) {
    .test {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 6rem;
        z-index: 1030;
        color: var(--putih);
        background-color: var(--sky);
        text-align: center;
        display: block;
        justify-content: center;
        font-size: 10px;
        padding: 10%;
    }

    .test .test__2 {
        margin-top: -20px;
    }

    .navbar-brand img {
        width: 40px;
        margin-top: -5px;
    }

    .navbar-brand .industri {
        margin-left: -7px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }

    .sm-icons {
        flex-direction: row;
        margin-top: 15px;
    }

    /* ? sosial media */
    .nav-item .media__sosial {
        width: 35px;
        height: 35px;
        border-radius: 50px;
        border: 1px solid var(--abu);
        text-align: center;
        transition: 0.3s ease;
    }

    .nav-item .media__sosial:hover {
        color: var(--putih);
        background-color: var(--sky);
        border: 1px solid var(--sky);
    }

    /* ? Halaman Utama */
    .garis__konten,
    .konten__ketiga .garis__konten {
        width: 5%;
        height: 1px;
        background-color: var(--dark);
        margin-top: 11px;
        margin-left: 20px;
        margin-right: 10px;
    }

    .konten__ketiga .lead {
        font-size: 12px;
        font-weight: 100;
    }

    .kotak {
        width: 75% !important;
    }

    .kotak h5 {
        font-family: 'Lugrasimo', cursive;
        font-size: 20px;
    }

    .kotak span {
        font-family: 'Caprasimo', cursive;
        letter-spacing: 3px;
    }

    /* Produk */

    .card__produk {
        border-radius: 20px;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
        /* Menambahkan efek bayangan */
    }

    .lihat__produk {
        width: 100px;
        height: 100%;
        background-color: var(--sky);
        color: var(--putih);
        border-radius: 50px;
        font-size: 12px;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        border: none;
    }

    .card-body img {
        width: 70px;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .konten__ketiga .produk {
        display: none;
    }

    .konten__ketiga .produk h3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 45px;
        color: var(--sky);
    }

    .konten__ketiga .produk:hover {
        box-shadow: 1px 1px 10px 1px var(--sky);
    }

    .konten__ketiga .jasa__layanan {
        font-size: 19px;
        font-weight: bold;
        color: var(--sky);
    }

    .garis__konten,
    p.lead {
        display: none;
    }

    .card-body .lihat__produk1 {
        text-transform: uppercase;
        margin-top: 15px;
        font-size: 16px;
        font-weight: 600;
        color: var(--sky);
        transition: color 0.3s ease;
    }

    .card-body .lihat__produk1:hover {
        color: #0072a0;
    }

    .card-body .lihat__produk2 {
        font-size: 10px;
    }

    .card-body .lihat__produk3 {
        font-size: 12px;
    }

    /* ?  Cara Memilih Konveksi*/
    .container .bingkai {
        display: flex;
    }

    .container .bingkai .bulat {
        margin: auto;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--sky);
        text-align: center;
        flex-wrap: wrap-reverse;
    }

    .container .bingkai .bulat img {
        width: 38px;
        height: 38px;
        border-radius: 50%;
    }

    /* ? Jumbotron */
    .jumbotron__ {
        background-color: var(--sky);
        padding-top: 100px;
        height: 200px;
    }

    .jumbotron__ .h1__printing,
    .jumbotron__ .h1__konveksi,
    .jumbotron__ .h1__bordir,
    .jumbotron__ .h1__about,
    .jumbotron__ .h1__contact,
    .jumbotron__ .h1__FAQ,
    .jumbotron__ .h1__video {
        text-align: center;
        line-height: 100px;
        font-size: 60px;
        font-weight: bold;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px #ffffff;
        background-image: url(../img/animasi/back.png);
        -webkit-background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
    }

    @keyframes back {
        100% {
            background-position: 2000px 0;
        }
    }

    .jumbotron__ .h1__video {
        text-align: center;
        line-height: 100px;
        font-size: 60px;
        font-weight: bold;
        text-transform: uppercase;
        color: transparent;
        -webkit-text-stroke: 1px #ffffff;
        background-image: url(../img/animasi/back.png);
        -webkit-background-clip: text;
        background-position: 0 0;
        animation: back 20s linear infinite;
    }

    @keyframes back {
        100% {
            background-position: 2000px 0;
        }
    }

    /* ?Konten Keempat */
    .konten__keempat {
        margin-top: -20px;
        padding-top: 10px;
    }

    /* container box load more bukti kiriman   */

    .container .box-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding-bottom: 25px;
    }

    .container .box-container .box {
        width: calc(50% - 10px);
        background-color: #fff;
        padding: 5px;
        border-radius: 5px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
        display: none;
    }

    .container .box-container .box:nth-child(1),
    .container .box-container .box:nth-child(2),
    .container .box-container .box:nth-child(3),
    .container .box-container .box:nth-child(4) {
        display: inline-block;
    }

    .container .box-container .box .image {
        margin-bottom: 20px;
        overflow: hidden;
        height: 250px;
        border-radius: 5px;
    }

    .container .box-container .box .image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .container .box-container .box:hover .image img {
        transform: scale(1.1);
    }

    .container .box-container .box .content h6 {
        font-size: 16px;
        color: #334;
        padding-left: 15px;
    }

    .container .box-container .box .content p {
        font-size: 13px;
        color: #777;
        line-height: 2;
        padding-left: 15px;
        padding-right: 15px;
        text-align: justify;
    }

    .container .box-container .box .content .btn:hover {
        background-color: crimson;
        border-color: crimson;
        color: #fff;
    }

    .container .box-container .box .content .icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 8px;
        border-top: 1px solid #334;
    }

    .container .box-container .box .content .icons span {
        font-size: 14px;
        color: #777;
    }

    .container .box-container .box .content .icons span i {
        color: crimson;
        padding-right: 5px;
    }


    #load-more {
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding: 13px 30px;
        color: #334;
        font-size: 16px;
        border-radius: 30px;
        background-color: #fff;
        cursor: pointer;
        margin-bottom: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #load-more:hover {
        background-color: var(--dark);
        border-color: var(--dark);
        color: #fff;
    }

    @media (max-width:450px) {

        .container .heading {
            font-size: 25px;
        }

        .container .box-container {
            grid-template-columns: 1fr;
        }

        .container .box-container .box .image {
            height: 200px;
        }

        .container .box-container .box .content p {
            font-size: 12px;
        }

        .container .box-container .box .content .icons span {
            font-size: 12px;
        }
    }

    /* selesai container box load more bukti kiriman   */

    /* ? ============================================== ABOUT ======================================================= */
    .about__satu .garis__about,
    .contact__satu .garis__contact,
    .faq__satu .garis__faq,
    .video__satu .garis__video,
    .printing__satu .garis__print,
    .konveksi__satu .garis__konveksi {
        width: 5%;
        height: 1px;
        background-color: var(--dark);
    }

    .about__satu .p__tentang,
    .contact__satu .p__contact,
    .video__satu .p__video,
    .printing__satu .p__print,
    .konveksi__satu .p__konveksi,
    .faq__satu .p__faq {
        font-size: 16px;
        margin-top: -10px;
        margin-left: 20px;
    }

    .about__h1 {
        width: 100%;
    }

    .about__h1 h1 {
        font-size: 24px;
    }

    .jumbotron__image {
        width: 100%;
        height: 200px;
        background-image: url(../img/team/1.jpg);
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        color: white;

    }

    /* ProdukPrinting */

    .row.row-cols-1 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .card-printing {
        border: none;
        padding: 10px 10px;
        color: #fbfcfb;
    }

    .print__gambar1 {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .wadah__gambar {
        position: relative;
        overflow: hidden;
    }

    .gambar__print {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .ulasan__print {
        background-color: var(--sky);
        border-radius: 20px;
        text-align: center;
        line-height: 25px;
        font-weight: bold;
        color: var(--putih);
        font-size: 12px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
    }

    .ulasan {
        color: #666;
        font-size: 10px;
    }

    .lihat__print,
    .fab.fa-whatsapp {
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .lihat__print {
        background-color: var(--sky);
        color: var(--putih);
    }

    .lihat__print:hover {
        background-color: #058FAA;
    }

    .fab.fa-whatsapp {
        color: var(--putih);
        margin-right: 5px;
    }

    .gambar__print1 .bukti__pengiriman__logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gambar__konten__lima {
        width: 110px;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }

    .bukti__pengiriman__logo p {
        padding-top: 18px;
        letter-spacing: 2px;
    }


    /* ? ============================================== VIDEO ======================================================= */
    .card__video {
        margin: auto;
        width: 280px;
        border: 1px solid var(--sky);
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        transition: 0.3s ease;
        -webkit-transition: 0.3s ease;
        -moz-transition: 0.3s ease;
        -ms-transition: 0.3s ease;
        -o-transition: 0.3s ease;
    }

    .card__video:hover {
        box-shadow: 1px 1px 8px 1px var(--sky);
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

    .video__video {
        width: 270px;
        height: 330px;
        margin: auto;
        padding-top: 5px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
    }

    /* Carousel Banner */

    .carousel {
        padding-top: 96px;
    }

    .carousel-item img {
        width: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-indicator {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }

    .carousel-indicator.active {
        background-color: #333;
    }

    /* Selesai Carousel Banner */



    /* ? ============================================== FAQ ======================================================= */

    /* ? ============================================== PRINTING ======================================================= */

    /* ? ============================================== KONVEKSI ======================================================= */

    /* ? ============================================== BORDIR ======================================================= */

    .conteiner-gallery {
        margin-top: 50px;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin: 0 auto;
        /* Menengahkan galeri */
    }

    .gallery a {
        flex-basis: calc(50% - 20px);
        /* 50% = 100% / 2 images */
        margin-bottom: 30px;
        text-align: center;
    }

    .gallery img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .gallery img:hover {
        transform: scale(1.1);
    }
}
