#other_tools .title{
    font-size: 32px !important;
    font-weight: var(--font-weight-extrabold);
}
#other_tools .other_tools_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: var(--gap-default);
    /* width: 80%; */
    margin:auto;
}

#other_tools .other_tools_list .other_tool {
    flex: 1;
    background: white;
    min-width: 32%;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--border-radius-default);
    border: 1px solid #eee;
    gap: var(--gap-default);
    max-width: 31%;
}
/* #other_tools .other_tools_list .other_tool:not(:last-child) {
    flex:1;
} */
@media (max-width: 1024px) {
#other_tools .other_tools_list .other_tool {
    max-width:48%;
}
}
@media (max-width: 768px) {
#other_tools .other_tools_list .other_tool {
    min-width:fit-content;
    max-width: 100%;
}

#other_tools .other_tools_list {
    width: 90%;
    gap: var(--gap-small);
}
}
