/* Inner Hero Widget Styles */
.inner-hero-container {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.inner-hero-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
}

/* Content Section */
.inner-hero-content {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.inner-hero-content-inner {
    width: 100%;
    max-width: 600px;
}
.inner-hero-description{
    margin-bottom: 40px;
}


.inner-hero-button {
    display: inline-block;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.inner-hero-button:hover {
    background-color: #b50029;
}

/* Image Section */
.inner-hero-image {
    width: 50%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    right: 0;
}

.inner-hero-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    ;
}
@media screen and (max-width:1300px){
    .inner-hero-content-inner{
        padding-left: 16px;

    }
}
@media screen and (max-width:1000px) {
    .inner-hero-wrapper{
        flex-direction: column;
    }
    .inner-hero-image{
        display: none;
    }
    .inner-hero-content-inner{
        padding: 16px;
    }
    .inner-hero-content{
        justify-content: flex-start;

    }
}
@media screen and (max-width:700px) {
    .inner-hero-content .inner-hero-title{
        font-size: 32px !important;
    }
    .inner-hero-content .inner-hero-description{
        font-size: 12px !important;
    }
    .inner-hero-content .inner-hero-button{
        width: 100%;
        text-align: center;
    }
    .inner-hero-content-inner{
        max-width: none;
    }

}