/*Hero Banner Start*/
.hero_banner{
    background: var(--light-bgcolor);
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
    padding: 28px 20px;
}

@media screen and (min-width:768px){
    .hero_banner {
        flex-direction: row;
        align-items: center;
        gap: 64px;    
        padding: 64px;
    }    
}

.content_wrapper{
    display: flex;
    flex-direction: column;
    width:100%;
    gap: 14px;
}

@media screen and (min-width:768px){
    .content_wrapper {
        gap: 22px;
        max-width:calc(60% - 64px * 1 /2);
    }    
}

.hero_banner_heading {
    font-size: 26px;
}
@media screen and (min-width:768px){
    .hero_banner_heading {
        font-size: 42px;
        max-width: 580px;
    }
}

.hero_banner_tagline {
    font-size: 18px;
}
@media screen and (min-width:768px){
    .hero_banner_tagline {
        font-size: 24px;
    }
}

.hero_banner_description {
    font-size: 14px;
    text-align: justify;
}
@media screen and (min-width:768px){
    .hero_banner_description {
        font-size: 16px;
    }
}
.image_wrapper{
    width:100%;
}

@media screen and (min-width:768px){
    .image_wrapper {
        max-width:calc(40% - 64px * 1 /2);
    }    
}
.hero_image{
    width:100%;
    height:auto;
    scale: 1.2;
}

@media screen and (min-width:768px){
    .hero_image {
        
    }    
}

/*Hero Banner End*/
/*finance Overview Start*/

.finance_overview {
    padding: 20px;
}

@media screen and (min-width: 768px) {
    .finance_overview {
        padding: 50px 100px;
    }
}

.finance_overview_heading {
    font-size: 28px;
    color: var(--heading-font-color);
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
    .finance_overview_heading {
        font-size: 36px;
    }
}

.finance_overview_description {
    font-size: 12px;
    text-align: justify;
    padding-top: 10px;
}

@media screen and (min-width: 768px) {
    .finance_overview_description {
        text-align: flex-start;
        font-size: 16px;
        margin: 0 auto;
    }
}
/*finance Overview End*/
/*All Tools Start*/
.hero_tools_outer_container{
    border:none;
}
.hero_tools_description{
    text-align: justify;
}
/*All Tools End*/