*{
    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");

}

.banner {
    position: relative;
    text-align: center;
    color: white;
	margin-top: 3.5rem;
}

.img-banner {
    display: inline-block;
}

.img-banner img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

/* Card */
.card-main-isi{
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.img-card img {
    width: 200px;
}

.title-produk-1, .title-produk-2, .title-produk-3 {
    height: 100px;
}

.card-1 {
    display: flex; 
    flex-direction: column;
    width: 300px !important;
    border: 3px solid #00293B;
    color: #00293B;
    padding: 20px;
    border-radius: 10px;
    justify-content: space-between;
    background-color: white;
}

.harga-1 {
    align-self: flex-end;
    width: 100%;
}


.card-2 {
    display: flex; 
    flex-direction: column;
    width: 300px;
    border: 0;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    justify-content: space-between;
    background-color: #ae0000;
}

.harga-2 {
    align-self: flex-end;
    width: 100%;
}


.card-3 {
    display: flex; 
    flex-direction: column;
    width: 300px;
    border: 0;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    justify-content: space-between;
    background-color: #303030;
}

.harga-3 {
    align-self: flex-end;
    width: 100%;
}

.txt-card-1 {
    margin-bottom: auto;
}

.txt-card-1 p{
    text-align: justify;
}
.txt-card-2 {
    margin-bottom: auto;
}

.txt-card-2 p{
    text-align: justify;
}
.txt-card-3 {
    margin-bottom: auto;
}

.txt-card-3 p{
    text-align: justify;
}

.harga-1 a{
    border: 0;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    display: block;
    background-color: #00293B !important;
    color: #FFF !important;
}

.harga-1 a:hover {
    background-color: #00293B !important;
    color: #FFF !important;
}

.harga-2 a{
    background-color: #FFF !important;
    border: 0;
    border-radius: 10px;
    padding: 10px;
    color: #ae0000 !important;
    width: 100%;
    display: block;
}

.harga-2 a:hover {
    background-color: #ffffff !important;
    color: #ae0000 !important;
}

.harga-3 a{
    background-color: #ffffff !important;
    border: 0;
    border-radius: 10px;
    padding: 10px;
    color: #3E3E3E !important;
    width: 100%;
    display: block;
}

.harga-3 a:hover {
    background-color: #ffffff !important;
    color: #3E3E3E !important;
}


/* 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) {

	.text-overlay h5 {
		font-size: 16px;
	}

	.text-overlay p {
		font-size: 10px;
	}

	/* 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){
    /* Footer */
    .txt-footer h5{
        font-size: 24px;
    }
    .txt-footer p{
        font-size: 18px;
    }
    .location{
        width: 300px;
        margin-top: 30px;
    }
}