.home__clients {
    padding-bottom: 174px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 76px;
    background-color: var(--color-secondary-200);
}

.home__clients > div {
    cursor: pointer;
    transition: background-color 0.25s;
}

.home__clients path {
    transition: fill 0.25s, outline 0.25s;
}

.home__clients > div:hover {
    background-color: var(--color-primary-600);
}

.home__clients > div:active {
    background-color: var(--color-tertiary-400);
}

.home__clients > div:focus svg {
    outline: 2px solid var(--color-primary-600);
}

.home__clients > div:hover path {
    fill: var(--color-secondary-100);
}

.home__clients svg {
    width: 158px;
}

@media screen and (min-width: 912px) {
    .home__clients {
        gap: 0;
        flex-direction: row;
        justify-content: space-around;
        padding-bottom: 200px;
        width: 100%;
    }

    .home__clients svg {
        width: 303px;
        height: auto;
    }
}