.navbar {
    height: 100px;
}

.service-item {
    border-radius: 10px;
    transition: ease-in-out .3s all;
    cursor: pointer;
    border: 1px solid var(--primary);
}

.service-item:hover {
    background-color: var(--primary);
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transform: translateY(-10px);
}

.service-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    transition: ease-in-out .3s all;
    color: var(--primary);
}
.service-item:hover h4 {
    color: var(--secondary);
}

.service-item p {
    color: white;
}

.service-item i {
    font-size: 70px;
    margin-bottom: 15px;
    transition: ease-in-out .3s all;
    color: var(--primary);
    
}

.service-item:hover i {
    color: var(--dark);
}

.cert-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
    transition: ease-in-out .3s all;
}
.cert-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 55px rgba(0, 0, 0, .2);
}

.contact-info h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    display: block;
    margin: 10px 0;
    border-radius: 5px;
}

.gmap iframe {
    border-radius: 10px;
    height: 320px;
    width: 100%;
}

.projek-item {
    border: 1px solid var(--primary);
    transition: ease-in-out .3s all;
    border-radius: 10px;
    overflow: hidden;
}

.projek-item img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-box {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* penting */
}


.footer span {
    font-size: 13px;
    color: var(--primary);
}

.footer h5 {
    color: var(--primary) !important;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer h5::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    display: block;
    margin-top: 10px;
    border-radius: 5px;
}


@media screen and (max-width:500px) {
    .carousel-caption {
        height: 640px !important;    
    }
    .carousel-caption h1 {
        font-size: 30px !important;
    }
    .carousel-caption p {
        font-size: 16px !important;
        width: 80% !important;
        text-align: center !important;
        margin: 20px auto;
    }
.home-about .btn {
    margin-bottom: 10px;
}
}

/* collapse */
