*{
    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");
}

/* Title */
.title{
    margin-top: 5rem;
}

/* Isi Jasa dan Layanan */
.isi-jasa-layanan{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.implementasi{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.accounting{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.tax{
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.txt-jasa{
    width: 40%;
    text-align: justify;
    gap: 30px;
    margin-left: 20px;
}

.txt-acc{
    width: 40%;
    text-align: justify;
    gap: 30px;
    margin-left: 20px;
}

.txt-tax{
    width: 40%;
    text-align: justify;
    gap: 30px;
    margin-left: 20px;
}

.button-jasa button{
    width: 250px;
    padding: 10px;
    background-color: #E71C3E;
    color: #FFF;
    border: 0;
    border-radius: 5px;
}

.button-acc button{
    width: 250px;
    padding: 10px;
    background-color: #E71C3E;
    color: #FFF;
    border: 0;
    border-radius: 5px;
}

.button-tax button{
    width: 250px;
    padding: 10px;
    background-color: #E71C3E;
    color: #FFF;
    border: 0;
    border-radius: 5px;
}

/* 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){

    /* Isi Jasa dan Layanan */
    .implementasi{
        display: block;
    }
    .accounting{
        display: block;
    }
    .tax{
        display: block;
    }
    .img-jasa img{
        width: 100%;
    }
    .img-acc img{
        width: 100%;
    }
    .img-tax img{
        width: 100%;
    }
    .txt-jasa{
        width: 100%;
        margin: 0;
        margin-top: 12px;
    }
    .txt-acc{
        width: 100%;
        margin: 0;
        margin-top: 12px;
    }
    .txt-tax{
        width: 100%;
        margin: 0;
        margin-top: 12px;
    }
    .button-jasa button{
        width: 100%;
        margin-top: 10px;
    }
    .button-acc button{
        width: 100%;
        margin-top: 10px;
    }
    .button-tax button{
        width: 100%;
        margin-top: 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){

    /* Isi jasa dan Layanan */
    .img-jasa img{
        width: 100%;
    }
    .img-acc img{
        width: 100%;
    }
    .img-tax img{
        width: 100%;
    }
    .txt-jasa{
        width: 70%;
    }
    .txt-acc{
        width: 70%;
    }
    .txt-tax{
        width: 70%;
    }
    .txt-jasa p{
        font-size: 12px;
    }
    .txt-acc p{
        font-size: 12px;
    }
    .txt-tax p{
        font-size: 12px;
    }
    .button-jasa button{
        margin-top: 10px;
    }
    .button-acc button{
        margin-top: 10px;
    }
    .button-tax button{
        margin-top: 10px;
    }

    /* Footer */
    .txt-footer h5{
        font-size: 24px;
    }
    .txt-footer p{
        font-size: 18px;
    }
    .location{
        width: 300px;
        margin-top: 30px;
    }
}