.footer__section {
    background-color: #292929;
}

.footer__wrapper {
    max-width: 1200px;
    margin-inline: auto;
    border-top: 1px solid #ffffff26;
}

.footer__logo {
    color: #788487;
    font-size: 14px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: row;
}

.footer__icon {
    margin-left: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer__icon > a > i {
        font-size: 30px;
        color: #ffffff80;
    }

    .footer__icon > a > i:hover {
        color: #fff;
    }

@media (width > 1200px) {

    .footer__wrapper {
        height: 90px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}

@media (width <= 1200px) and (width > 767px) {
    
    .footer__section {
        padding: 0 20px;
    }
    
    .footer__wrapper {
        height: 90px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

}

@media (width <= 767px) {

    .footer__section{
        padding: 0 20px;
    }

    .footer__wrapper {
        height: 140px;
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

}