.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 12px;
    font-weight: 600;
    outline: none;
    transition: .5s;
    text-transform: uppercase;
}

.bg-dark {
    background-color: #050505 !important;
}


.timeline {
    position: relative;
    background: #f2f2f291;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 5rem;
    margin: 0 auto 1rem auto;
    overflow: hidden;
}

.timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -2px;
    border-right: 2px dashed #4b546f;
    height: 100%;
    display: block;
}

.timeline-row {
    padding-left: 50%;
    position: relative;
    margin-bottom: 30px;
}

.timeline-row .timeline-time {
    position: absolute;
    right: 50%;
    top: 15px;
    text-align: right;
    margin-right: 20px;
    font-size: 3rem;
    color: black;
    font-weight: bold;
}

.timeline-row .timeline-time small {
    display: block;
    font-size: 0.8rem;
}

.timeline-row .timeline-content {
    position: relative;
    padding: 20px 30px;
    background: #C91A20;
    ;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.timeline-row .timeline-content:after {
    content: "";
    position: absolute;
    top: 20px;
    height: 16px;
    width: 16px;
    background: #ffffff;
}

.timeline-row .timeline-content:before {
    content: "";
    position: absolute;
    top: 20px;
    right: -49px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    z-index: 10;
    background: #ffffff;
    border: 2px dashed #4b546f;
}

.timeline-row .timeline-content h4 {
    margin: 0 0 20px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    line-height: 150%;
    color: white;
}

.timeline-row .timeline-content p {
    color: white;
}

.timeline-row .timeline-content p {
    margin-bottom: 30px;
    line-height: 150%;
}

.timeline-row .timeline-content i {
    font-size: 1.2rem;
    line-height: 100%;
    padding: 15px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: #ffffff;
    margin-bottom: 10px;
    display: inline-block;
}

.timeline-row .timeline-content .thumbs {
    margin-bottom: 20px;
    display: flex;
}

.timeline-row .timeline-content .thumbs img {
    margin: 5px;
    max-width: 60px;
}

.timeline-row .timeline-content .badge {
    color: #ffffff;
    background: linear-gradient(120deg, #00b5fd 0%, #0047b1 100%);
}

.timeline-row:nth-child(even) .timeline-content {
    margin-left: 40px;
    text-align: left;
}

.timeline-row:nth-child(even) .timeline-content:after {
    left: -8px;
    right: initial;
    border-bottom: 0;
    border-left: 0;
    transform: rotate(-135deg);
}

.timeline-row:nth-child(even) .timeline-content:before {
    left: -52px;
    right: initial;
}

.timeline-row:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%;
}

.timeline-row:nth-child(odd) .timeline-time {
    right: auto;
    left: 50%;
    text-align: left;
    font-size: 3rem;
    margin-right: 0;
    margin-left: 20px;
    color: black;
    font-weight: bold;
}

.timeline-row:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-row:nth-child(odd) .timeline-content:after {
    right: -8px;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .timeline {
        padding: 15px;
    }

    .timeline:after {
        border: 0;
    }

    .timeline .timeline-row:nth-child(odd) {
        padding: 0;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-time {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 0 10px 0;
        color: black;
        font-weight: bold;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-content {
        margin: 0;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-content:before {
        display: none;
    }

    .timeline .timeline-row:nth-child(odd) .timeline-content:after {
        display: none;
    }

    .timeline .timeline-row:nth-child(even) {
        padding: 0;
    }

    .timeline .timeline-row:nth-child(even) .timeline-time {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 0 10px 0;
        text-align: left;
    }

    .timeline .timeline-row:nth-child(even) .timeline-content {
        margin: 0;
    }

    .timeline .timeline-row:nth-child(even) .timeline-content:before {
        display: none;
    }

    .timeline .timeline-row:nth-child(even) .timeline-content:after {
        display: none;
    }
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
}

.video-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.shuffle-item .project-img-container img {
    -webkit-transform: perspective(1px) scale3d(1.1, 1.1, 1);
    transform: perspective(1px) scale3d(1.1, 1.1, 1);
    transition: all 400ms;
    min-height: 17rem;
    height: 100px;
    width: 100%;
}

/* Projects area
================================================== */
/* Project filter nav */
.shuffle-btn-group {
    display: inline-block;
    margin: 20px 0 50px;
    width: 100%;
    border-bottom: 3px solid #C91A20;
}

.shuffle-btn-group label {
    display: inline-block;
    color: #212121;
    font-size: 14px;
    padding: 6px 25px;
    padding-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    margin: 0;
}

.shuffle-btn-group label.active {
    color: #ffffff;
    background: #C91A20;
}

.shuffle-btn-group label input {
    display: none;
}

/* Project shuffle Item */
.shuffle-item {
    padding: 0;
}

.shuffle-item .project-img-container {
    position: relative;
    overflow: hidden;
}

.shuffle-item .project-img-container img {
    -webkit-transform: perspective(1px) scale3d(1.1, 1.1, 1);
    transform: perspective(1px) scale3d(1.1, 1.1, 1);
    transition: all 400ms;
}

.shuffle-item .project-img-container:hover img {
    -webkit-transform: perspective(1px) scale3d(1.15, 1.15, 1);
    transform: perspective(1px) scale3d(1.15, 1.15, 1);
}

.shuffle-item .project-img-container:after {
    opacity: 0;
    position: absolute;
    content: '';
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 400ms;
}

.shuffle-item .project-img-container:hover:after {
    opacity: 1;
}

.shuffle-item .project-img-container .gallery-popup .gallery-icon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding: 5px 12px;
    background: #C91A20;
    color: #fff;
    opacity: 0;
    -webkit-transform: perspective(1px) scale3d(0, 0, 0);
    transform: perspective(1px) scale3d(0, 0, 0);
    transition: all 400ms;
}

.shuffle-item .project-img-container:hover .gallery-popup .gallery-icon {
    opacity: 1;
    -webkit-transform: perspective(1px) scale3d(1, 1, 1);
    transform: perspective(1px) scale3d(1, 1, 1);
}

.shuffle-item .project-img-container .project-item-info {
    position: absolute;
    top: 50%;
    margin-top: -10%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
    z-index: 1;
}

.shuffle-item .project-img-container .project-item-info-content {
    opacity: 0;
    -webkit-transform: perspective(1px) translate3d(0, 15px, 0);
    transform: perspective(1px) translate3d(0, 15px, 0);
    transition: all 400ms;
}

.shuffle-item .project-img-container .project-item-info-content .project-item-title {
    font-size: 20px;
}

.shuffle-item .project-img-container .project-item-info-content .project-item-title a {
    color: #fff;
}

.shuffle-item .project-img-container .project-item-info-content .project-item-title a:hover {
    color: #C91A20;
}

.shuffle-item .project-img-container .project-item-info-content .project-cat {
    background: #C91A20;
    display: inline-block;
    padding: 2px 8px;
    font-weight: 700;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
}

.shuffle-item .project-img-container:hover .project-item-info-content {
    opacity: 1;
    -webkit-transform: perspective(1px) translate3d(0, 0, 0);
    transform: perspective(1px) translate3d(0, 0, 0);
}

/* Recent News */
.widget.recent-posts .widget-title {
    margin-bottom: 35px;
}

.widget.recent-posts ul li {
    border-bottom: 1px solid #dadada;
    padding-bottom: 15px;
    margin-bottom: 17px;
}

.widget.recent-posts ul li:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget.recent-posts .posts-thumb img {
    margin-right: 15px;
    width: 90px;
    height: 70px;
}

.widget.recent-posts .post-info .entry-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
}

.widget.recent-posts .post-info .entry-title a {
    color: #303030;
    display: inline-block;
}

.widget.recent-posts .post-info .entry-title a:hover {
    color: #C91A20;
}

.widget.recent-posts .post-date {
    font-weight: 400;
    color: #999;
    text-transform: capitalize;
}

/* Widget tags */
.widget-tags ul>li {
    float: left;
    margin: 3px;
}

.sidebar .widget-tags ul>li a {
    border: 1px solid #dadada;
    color: #303030;
    display: block;
    font-size: 14px;
    padding: 3px 15px;
    transition: all 0.3s ease 0s;
}

.sidebar .widget-tags ul>li a:hover {
    background: #C91A20;
    color: #fff;
    border: 1px solid transparent;
}

/* News Single
================================================== */
.tags-area {
    margin: 20px 0;
}

.post-tags a {
    border: 1px solid #dadada;
    color: #7c7c7c;
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    margin-left: 3px;
}

.post-tags a:hover {
    background: #C91A20;
    color: #fff;
    border: 1px solid transparent;
}

/* Post social */
.post-social-icons>li {
    display: inline-block;
}

.post-social-icons a i {
    margin-left: 5px;
    font-size: 12px;
    width: 28px;
    height: 26px;
    line-height: 26px;
    color: #fff;
    text-align: center;
}

.post-social-icons a i.fa-facebook-f {
    background: #41578a;
}

.post-social-icons a i.fa-whatsapp {
    background: #C91A20;
}

.post-social-icons a i.fa-twitter {
    background: #64bae2;
}

.post-social-icons a i.fa-google-plus {
    background: #c0343d;
}

.post-social-icons a i.fa-linkedin {
    background: #3397b6;
}

/* Meta */
.post-meta {
    padding-bottom: 10px;
}

.post-meta a {
    color: #303030;
}

.post-meta a:hover {
    color: #C91A20;
}

.post-meta span {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #dadada;
    line-height: 12px;
    display: inline-block;
}

.post-meta i {
    color: #bbb;
    margin-right: 3px;
}

.post-meta .post-comment {
    border-right: 0;
}

.post-meta .post-comment .comments-link {
    margin-left: 5px;
}

.post-footer .btn.btn-primary {
    font-size: 12px;
    margin-top: 10px;
}

.image-caption {
    display: block;
    /* Agar caption muncul di bawah gambar */
    margin-top: 5px;
    /* Jarak antara gambar dan caption */
    font-size: 0.875rem;
    /* Ukuran font yang sedikit lebih kecil */
    color: #6c757d;
    /* Warna teks yang lebih lembut */
    text-align: center;
    /* Menengahkan caption */
}

/* Career */

.ln-section-career .list-career .item-career {
    border-radius: 8px;
    /* border: 1px solid rgb(233, 233, 233); */
    box-shadow: 0px 4px 24px -3.809523820877075px rgba(24, 39, 75, 0.08);
    padding: 20px;
    background: white;
}

.ln-section-career .list-career .item-career .title {
    color: var(--color-text-primary-light);
    font-family: var(--font-family-1);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.ln-section-career .list-career .item-career .type,
.ln-section-career .list-career .item-career .division {
    color: var(--color-text-primary-light);
    font-family: var(--font-family-1);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.ln-section-career .list-career .item-career .ln-btn {
    font-size: 16px;
}

.ln-section-career .list-career .item-career .row {
    align-items: center;
}

.ln-section-career .list-career .header.item-career {
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(160, 160, 160);
    font-family: var(--font-family-1);
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    background: transparent;
}

@media(max-width:700px) {
    .ln-section.ln-section-career .ln-section-header .title {
        font-size: 20px;
        line-height: 30px;
    }

    .ln-section-career .list-career .item-career .title {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Life at LinkNet */

.ln-section.ln-section-img .img-section {
    border-radius: var(--border-radius-75);
}

.ln-section.ln-section-img .img-section img {
    z-index: 1;
    position: relative;
    height: 400px;
    width: 95%;
    /* border-radius: var(--border-radius-75) !important; */
    border-radius: 36px 36px 36px 0;
    margin: 25px 0;
    object-fit: cover;
}

.ln-section.ln-section-img .ln-section-header {
    align-items: center;
    vertical-align: middle;
    /* height: 100%; */
    position: relative;
    /* position: absolute; */
    top: 50%;
    transform: translate(0, -50%);
}

.ln-section.ln-section-img.ln-section-img-on-left .img-section:before {
    content: "";
    background: #F9FAFB;
    position: absolute;
    height: 100%;
    width: 45%;
    left: 0;
    z-index: 0;
}

.ln-section.ln-section-img.ln-section-img-on-right .img-section {
    text-align: right;
}

.ln-section.ln-section-img.ln-section-img-on-right .img-section img {
    border-radius: 36px 36px 0 36px !important;
}

.ln-section.ln-section-img.ln-section-img-on-right .img-section:before {
    content: "";
    background: #F9FAFB;
    position: absolute;
    height: 100%;
    width: 45%;
    right: 0;
    z-index: 0;
}

@media(max-width:700px) {
    .ln-section.ln-section-img .img-section img {
        width: 100%;
        height: auto;
    }

    .ln-section.ln-section-img .img-section {
        position: relative;
    }

    .ln-section.ln-section-img.ln-section-img-on-left .img-section:before {
        width: 90%;
        left: -15px;
    }

    .ln-section.ln-section-img.ln-section-img-on-right .img-section:before {
        width: 90%;
        right: -15px;
    }
}




