.tools_main_container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.tools_section_div{
    background-color: #F5F5F5;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.tools_section_div img{
    background-color: white;
    width: 100%;
    height: 166px;
    object-fit: contain;
}

.tools_section_div h2{
    font-size: 30px;
    margin-bottom: 30px;
}

.tools_section_div .content-tools{
    color: #707070;
    font-size: 18px;
    margin-bottom: 30px;
}

.tools_section_div .read-more{
    font-size: 1rem;
    color: #FF7900;
    font-weight: 700;
    border: 3px solid #FF7900;
    border-radius: 50px;
    padding: 6px 16px;
    display: block;
    max-width: 250px;
    text-align: center;
    align-self: center;
    width: 100%;
    margin-top: auto;
    text-decoration: none;
}
#post_category {
    border: 3px solid #a8a8a8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #FF7900;
    padding: 15px;
    border-radius: 5px;
}
#post_category option {
    color: #707070!important;
}
#post_category option:hover {
    color: #fff;
    background: #FF7900;
}
@media only screen and (max-width: 600px) {
    .tools_main_container{
        grid-template-columns: repeat(1, 1fr);
        gap: 1.8rem;
    }
    .tools_section_div{
        margin: 0 30px;
    }
}
