




.tools-item {
    border-radius: 6px;
    border: 1px solid rgb(2 62 138 / 19%);
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
}


.tools-item-goto {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 992px) {

    .tools-item {
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        min-height: 76px;
    }

    .tools-item .tools-item-title {
        font-size: 12px;
        font-weight: 400;
        margin: 0;
        padding: 0;
    }

}


.tools-item:hover {
    background-color: #023E8A;
    color: #fff;
}

.tools-item:hover .tools-item-arrow svg {
    fill: white;
}

.tools-item .tools-item-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f7fb;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 12px;
}

@media (max-width: 992px) {
    .tools-item-icon svg {
        width: 24px;
        height: 24px;
    }
}


@media (max-width: 992px) {
    .tools-item .tools-item-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 6px;
    }

}


.tools-item .tools-item-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {

    .tools-item .tools-item-title {
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        padding: 0;
    }

}


.tools-item .tools-item-content {
    padding: 0;
}

@media (max-width: 992px) {
    .tools-item .tools-item-content {
        padding: 0;
        flex: 1;
    }
}


.tools-item-arrow {
    margin-top: 10px;
}

@media (max-width: 992px) {
    .tools-item .tools-item-arrow {
        margin-top: 0;
        margin-left: 12px;
    }
}