.footer {
    display: flex;
    background-color: #242424;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
    overflow: hidden;
}
.footer__logo {
    background-image: url('../img/logo-short.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
}
.footer iframe {
    width: 370px;
    height: 90px;
    margin-left: 10px;
}

@media screen and (max-width: 500px) {
    .footer {
        padding: 60px 0px;
        flex-direction: column;
    }

    .footer iframe {
        margin-left: 0px;
        margin-top: 10px;
    }
}