.custom-footer__custom-grid {
    display: grid;
    width: 100% !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.custom-footer__custom-grid-element {
    width: unset !important;
    margin-right: 24px;
}

.custom-footer__logos img {
    height: 70px;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

@media only screen and (max-width: 767px) {
    .custom-footer__custom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .custom-footer__custom-grid-element.contatti {
        grid-column: 1;
        grid-row: 2;
    }

    .custom-footer__custom-grid-element.pronto {
        grid-column: 2;
        grid-row: 2;
    }

    .custom-footer__custom-grid-element.scopri {
        grid-column: 1;
        grid-row: 3;
    }

    .custom-footer__custom-grid-element.affiliazioni {
        grid-column: 2;
        grid-row: 3;
    }
}

.hero-title-custom {
    line-height: 1.2em;
}