footer {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #4b0708;
    margin-top: 48px;
    padding-bottom: 16px;
    section {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: unset;
        gap: 16px;
        a,p {
            width: 100%;
            display: block;
            color: #fffc;
        }
        h2 {
            color: #fff;
        }
        .partners {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 16px;
        }
        iframe {
            grid-column: span 3;
        }
        .contact {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            a {
                width: fit-content;
            }
        }
    }
}


@media only screen and (max-width:1000px) {
    footer {
        section {
            grid-template-columns: 1fr 1fr;
            .partners {
                grid-template-columns: 1fr 1fr ;
            }
        }
    }
}