.ivis-hero{
    height: auto;
    background-repeat: no-repeat;
    padding:60px 20px ;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ivis-hero .ivis_bg_hero{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}
.ivis-hero .ivis_row{
    display: flex;
    gap: 30px ;
    align-items: center;
    justify-content: center;
}
.ivis-hero .ivis_row .ivis_text{
    width: 60%;
}
.ivis-hero .ivis_row .ivis_text h1{
    font-size: 40px;
    font-weight: 600;
    color: var(--IVIS-black-100);
}
.ivis-hero .ivis_row .ivis_text h1 span{
    color: var(--IVIS-primary);
}
.ivis-hero .ivis_row .ivis_text p{
    color: var(--IVIS-gray-500);
    font-size: 15px;
    margin: 5px 0 20px;
}
.ivis-hero .ivis_row .ivis_image img{
    width: 100%;
}



@media (max-width:1000px) {
    .ivis-hero .ivis_row{
        flex-direction: column;
    }
    .ivis-hero .ivis_row .ivis_text {
        text-align: center;
        width: 100%;
    } 
}
@media (max-width:500px) {
    .ivis-hero{
        padding:40px 10px;
    }
    .ivis-hero .ivis_row .ivis_text h1{
        font-size: 30px;
        font-weight: 600;
    } 
    .ivis-hero .ivis_row .ivis_text p{
        font-size: 15px;
    }
        .ivis-hero .ivis_row .ivis_text h1 {
        line-height:40px;
            
        }

}