header{
    width: 100%;
    background-color: #000000;
}
.content-header{
    padding: 0px 30px 16px 30px;
}
.box-img-logo{
    display: unset;
}
.img-header{
    height: 111px;
    width: 222px;
    object-fit: cover;
    cursor: pointer;
    
}
.sub-text-header{
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: Raleway, sans-serif;
}
.sub-text-detail{
    font-size: 15px;
    padding: 8px 0px 8px 18px;
    font-weight: 400;
}
.sub-text-detail:first-child{
    padding: 8px 0px 8px 10px;
}
/* tablet responsive */
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .box-img-logo{
        display: flex;
        justify-content: center;
    }
    .sub-text-header{
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    .sub-text-detail{
        padding: 8px 0px 48px 44px;
    }
    .sub-text-detail:first-child{
        padding: 8px 0px 48px 10px;
    }
}

/* mobile responsive */
@media only screen and (min-width: 360px) and (max-width: 767px){
    .box-img-logo{
        display: flex;
        justify-content: center;
    }
    .sub-text-header{
        display: flex;
        justify-content: center;
        margin-top: 8px;
    }
    .sub-text-detail{
        padding: 8px 0px 48px 34px;
    }
    .sub-text-detail:first-child{
        padding: 8px 0px 48px 10px;
    }
}