
#home-motos-title h2 {
    color: #000;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 900;
    line-height: 56px; /* 100% */
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 32px;
}

#home-motos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px;
}

#home-motos .item-moto {
    padding: 11px 8px 24px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 0px 10px -4px rgba(0, 0, 0, 0.25);
}

#home-motos .item-moto .item-moto-img {
    margin-bottom: 25px;
    min-height: 257px;
    background-color: var(--bg-grey);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    border-radius: 3px;
}

#home-motos .item-moto .item-moto-logo {
    width: 100%;
    height: 75px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

#home-motos .item-moto .item-moto-logo img {
    height: 65px;
    width: auto;
}

#home-motos .item-moto .item-moto-name {
    padding-left: 9px;
    padding-right: 9px;
}

#home-motos .item-moto .item-moto-name h3 {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    min-height: 50px;
    cursor: pointer;
}