:root {
    --footer-bg: #2F3457;
    --footer-text-color: #fff;
}

footer {
    padding: 100px 50px 30px 50px;
    display: flex;
    justify-content: center;
    background-color: var(--footer-bg);
    color: var(--footer-text-color);
}

.footer-wrap {
    width: min(1200px, 90vw);
    display: flex;
    justify-content: space-between;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.footer-logo {
    height: 150px;
}

.footer-social-media-header {
    font-size: 32px;
    margin-top: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-social-media img {
    height: 26px;
    margin-right: 20px;
}

.footer-ul {
    margin-top: 30px;
}

.footer-li {
    margin-bottom: 10px;
}

.footer-li a {
    font-size: 18px;
    font-weight: 600;
}

.footer-credentials {
    font-weight: 500;
}

@media screen and (max-width: 880px) {
    
    .footer-col.middle-f {
        display: none;
    }

}

@media screen and (max-width: 550px) {

    .footer-li a {
        font-size: 14px;
    }

    .footer-row {
        font-size: 14px;
    }
}


@media screen and (max-width: 465px) {

    .footer-col.right {
        display: none;
    }

    .footer-wrap {
        justify-content: center;
        align-items: center;
    }

    .footer-row.top {
        display: flex;
        justify-content: center;
    }

    footer {
        padding: 30px 50px 30px 50px;
    }

    .footer-col {
        min-height: 200px;
    }
}