.isi-holder.closed {
    z-index: 10;
}

.home_banner{
    padding:30px 40px 0 ;
    position: relative;
    overflow: hidden ;
}

.home_banner_bg {
    padding: 30px 40px 0;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover;
    position: absolute;
    left: calc(50% + 25px);
    transform: translateX(-50%);
    bottom: -183px;
    height: 100%;
    width: 1132px;
}

.hb_container {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    align-items: stretch ;
    position: relative;
    z-index: 1;
}

.hb-col-1 {
    width: 40%;
    align-self: center;
}

.hb-col-2 {
    width: 32%;
    position: relative;
    align-self: flex-end;
}

.hb-col-2 > img {
    max-height: 550px;
    object-fit: contain;
}

.hb-col-3 {
    width: 20%;
    align-self: flex-start;
}

.banner_desc {
    text-align: center;
    line-height: 1.3em;
    font-weight: 600;
}

.banner_title {
    line-height: 1em;
    text-align: center;
    text-transform: none;
    font-weight: 700;
    margin-top: 40px;
}

.hb_button {
    border: none;
    padding: 0;
    background: transparent;
}

.hb_button > a {
    padding: 15px 15px;
    display: block;
    font-size: 26px;
    line-height: 1.3em;
    font-weight: 600;
    border-radius: 500px;
    text-decoration: none;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
    margin-top: 30px;
}

@media(max-width:1300px){
    .banner_desc {
        font-size: 30px !important ;
    }
    
    .banner_title {
        font-size: 60px !important ;
    }

    .hb_button > a {
        padding: 15px 15px;
        font-size: 18px;
    }
}

@media(max-width:1100px){
    .banner_desc {
        font-size: 25px !important ;
    }
    
    .banner_title {
        font-size: 45px !important ;
    }

    .hb_button > a {
        padding: 15px 15px;
        font-size: 16px;
    }
}


/* Tablet Responsive */

@media(max-width:1024px){

.banner_desc {
    font-size: 22px !important ;
}

.banner_title {
    font-size: 36px !important ;
}

.hb_button > a {
    padding: 15px 0px;
    font-size: 15px;
}

}

/* Mobile Responsive */

@media(max-width: 769px){

    .hb-col-1 {
        width: 100%;
        order: 1;
    }

    .hb-col-2 {
        width: 100%;
        order: 3;
        text-align: center;
    }

    .hb-col-3 {
        width: 100%;
        display: flex;
        order: 2;
        justify-content: center;
        margin-bottom: 30px;
    }

    .hb_button > a {
        padding: 15px 30px;
        font-size: 16px;
    }

    .hb-col-2 > img {
        max-height: 350px; 
    }


}