.hero_tools_outer_container{
    padding: 20px;
    border-top: 1px solid var(--btn-bgcolor);
}
@media screen and (min-width:768px){
    .hero_tools_outer_container{
        padding: 50px 100px;
    }
}
.hero_tools_heading_wrapper{
    
}
.hero_tools_heading{
    font-size: 28px;
    color: var(--heading-font-color);
    font-weight: 600;
    text-align: center;
}
@media screen and (min-width:768px){
    .hero_tools_heading{
        font-size: 36px;
    }
}
.hero_tools_description{
    font-size: 12px;
    text-align: justify;
    padding-top: 10px;
}
@media screen and (min-width:768px){
    .hero_tools_description{
        text-align: center;
        padding-top: 15px;
        font-size: 16px;
        max-width: 920px;
        margin: 0 auto;
    }
}
.hero_tools_card_wrapper{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding-top: 20px;
}

@media screen and (min-width:768px){
    .hero_tools_card_wrapper{
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
        padding-top: 50px;
    }
}
@media screen and (min-width:1024px){
    .hero_tools_card_wrapper{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (min-width:1200px){
    .hero_tools_card_wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
}
.hero_tools_card_item{
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--btn-bgcolor);
    padding: 12px;
    gap:10px;
    border-radius: 12px;
    box-shadow: 0 4px 7px #09404a33;
    transition: 0.3s ease;
    text-decoration: none;
    color: var(--font-color);
}
.hero_tools_card_item:hover {
    scale: 1.02;
}
@media screen and (min-width:768px){
    .hero_tools_card_item{
        flex-direction: column;    
        align-items: flex-start;
        gap:0;
    }
}
.hero_tools_card_text_wrapper{
    
}

@media screen and (min-width:768px){
    .hero_tools_card_text_wrapper{
        
    }
}
.hero_tools_card_icon{
    width: 38px;
    height: auto;
}

@media screen and (min-width:768px){
    .hero_tools_card_icon{
        width: 48px;
    }
}
.hero_tools_card_title{
    font-size: 16px;
    color: var(--heading-font-color);
    font-weight: 500;
}

@media screen and (min-width:768px){
    .hero_tools_card_title{
        font-size: 20px;
    }
}
.hero_tools_card_text{
    font-size: 12px;
}

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