body.home {
    width: 100%;
    /* background: #cfcfcf;
    background: linear-gradient(0deg, rgba(207, 207, 207, 1) 0%, rgba(255, 255, 255, 1) 100%); */
}

/* h1, p { text-align: center; } */

body.home main {
    width: 100%;
    /* display: flex;
    align-items: center;
    height: calc(100vh - 120px); */
}

.home .hero { padding: 80px 0 100px; }

.card__item {
    padding: 15px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
}

.card__item img {
    aspect-ratio: 1/1;
    height: 60px;
    object-fit: contain;
}

.tools__list {
    display: flex;
    justify-content: center;
    align-self: start;
    gap: 10px;
    list-style: none;
    margin: 25px 0 0;
    padding: 0;
}

.tools__list li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.tools__list li a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
    color: #000;
}

.tools__list li img {
    aspect-ratio: 4/3;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .card__item img { height: 40px; }
}