@media screen and (max-width:769px){
    .hero_banner_tools_heading {
        max-width: 250px;
    }
}

/*tools start*/

.tools_section{
    padding: 28px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (min-width:768px){
    .tools_section{
        padding: 64px;
    }
}

.tools_wrapper{
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width:768px){
    .tools_wrapper{
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
}


.text_box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media screen and (min-width:768px){
    .text_box {
        gap: 24px;
    }    
}

.textarea {
    width: 100%;
    border: 2px dashed var(--btn-bgcolor);
    border-radius: 12px;
    box-shadow: 0 4px 7px #09404a33;
    height: 300px;
    padding: 10px;
    font-size: 14px;
}
.textarea:focus-visible {
    outline: none;
}
@media screen and (min-width:768px){
    .textarea {
        font-size: 16px;
        padding: 10px 16px;
        max-width: calc(100% - 24px - 300px);
    }    
}

.results_box {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--btn-bgcolor);
    padding: 12px;
    gap: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 7px #09404a33;
}

@media screen and (min-width:768px){
    .results_box {
        max-width: 300px;
    }    
}
.results_box div{
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}
@media screen and (min-width:768px){
    .results_box div{
        font-size: 16px;
    }    
}
.results_box span{
    font-size: 16px;
    font-weight: 600;
}
@media screen and (min-width:768px){
    .results_box span{
        font-size: 18px;
    }    
}

.buttons_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media screen and (min-width:768px){
    .buttons_wrapper {
        display: flex;
        flex-direction: row;
        gap: 16px;    
    }    
}

.buttons_wrapper .tool_button:first-child {
    grid-column: span 2;
}

.tool_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.tool_button img {
    width:18px;
    height: auto;
}
@media screen and (min-width:768px){
    .tool_button {
        gap: 10px;
    }    

    .tool_button img {
        width:24px;
    }
}