*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* navbar */
.navbar{
    background-color: #00293B;
    color: #fff;
}

.navbar img{
    width: 100px;
}

.navbar-toggler{
    border-color: #FFF;
}

.navbar-toggler:focus{
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.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(255, 255, 255, 255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}

.line{
    height: 5px;
    width: 100%;
    background-color: #C1C1C1;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Implementasi */
.implementasi{
    margin-top: 7.5rem;
}

.isi-implementasi{
    display: flex;
}

.txt-imp{
    margin-left: 20px;
}

/* One Day Service */
.one-day-service{
    margin-top: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #003751;
}

.txt-ods{
    padding-top: 20px;
    padding-bottom: 20px;
}

.card-ods{
    display: flex;
    justify-content: space-between;
}

.card-1{
    background-color: #FFF;
    width: 290px;
    border-radius: 10px;
    padding: 9px;
}

.button-card button{
    width: 170px;
    background-color: #E71C3E;
    border-radius: 10px;
    border: 0;
    height: 40px;
    color: #FFF;
    margin-bottom: 30px;
}

/* Package Service */
.txt-ps{
    padding-top: 50px;
    padding-bottom: 20px;
}

.card-ps{
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.card-ps-2{
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.card-2{
    background-color: #FFF;
    width: 250px;
    border-radius: 10px;
    padding: 9px;
}

.button-package button{
    background-color: #E71C3E;
    border-radius: 10px;
    width: 230px;
    border: 0;
    height: 40px;
    color: #FFF;
}

/* Service Package - 2 */
.package-service{
    margin-top: 3rem;
}

.package{
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.card-package{
    border: 2px solid #000;
    width: 400px;
    border-radius: 10px;
    padding: 20px;
}

.img-layanan{
    margin-top: 40px;
    margin-bottom: 60px;
}

.button-layanan{
    margin-top: 40px;
    margin-bottom: 40px;
}

.button-layanan button{
    width: 170px;
    background-color: #E71C3E;
    border-radius: 10px;
    border: 0;
    height: 40px;
    color: #FFF;
    margin-bottom: 30px;
}

.txt-layanan-2{
    width: 60%; 
    margin-left: 250px;
}

/* Footer */
.footer{
    background-color: #00293B;
}

.isi-footer{
    display: flex;
    justify-content: space-around;
}

.txt-footer{
    padding-top: 30px;
}

.txt-footer h5{
    font-size: 36px;
}

.location{
    margin-top: 60px;
}

@media (min-width: 360px) and (max-width: 760px) {
    /* Implementasi */
    .img-imp img{
        width: 100%;
    }
    .txt-imp{
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .isi-implementasi{
        display: block;
    }

    /* One Day Service */
    .card-ods{
        display: block;
    }
    .card-1{
        display: block;
        margin: auto;
        padding: auto;
        margin-bottom: 25px;
    }
    .card-ps{
        display: block;
    }
    .card-ps-2{
        display: block;
    }
    .card-2{
        width: 300px;
        display: block;
        margin: auto;
        padding: auto;
        margin-bottom: 25px;
    }

    /* Layanan */
    .img-layanan img{
        width: 100%;
    }
    .txt-layanan-2{
        width: 100%; 
        margin-left: 0px;
    }

    /* Package */
    .package{
        display: block;
    }
    .card-package{
        width: 100%;
        margin-bottom: 25px;
    }

    /* Footer */
    .txt-footer h5{
        font-size: 20px;
    }
    .txt-footer p{
        font-size: 14px;
    }
    .isi-footer{
        display: block;
    }
}
@media (min-width: 760px) and (max-width: 1200px) {
    /* Implementasi */
    .img-imp img{
        width: 380px;
    }

    /* One Day Service */
    .card-ods{
        display: flex;
        justify-content: space-between;
    }
    .card-1{
        width: 200px;
        padding: 10px;
    }

    /* Package Service */
    .card-ps{
        display: block;
    }
    .card-ps-2{
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    /* Layanan */
    .txt-layanan-2{
        width: 100%; 
        margin-left: 0px;
    }

    /* Footer */
    .txt-footer h5{
        font-size: 24px;
    }
    .txt-footer p{
        font-size: 18px;
    }
    .location{
        width: 300px;
        margin-top: 30px;
    }
}
@media (min-width: 1200px) {}