footer{
    background : linear-gradient(90deg, #941C80, #E62564, #EE8068);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    .footer-logo{
        width: 200px;
    }
    nav{
        max-width: 1200px;
        ul{
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            li{
                padding-left: 20px;
                display: flex;
                align-items: center;
                color: #fff;
                &:not(:last-of-type){
                    &::after{
                        content: '';
                        display: inline-block;
                        width: 2px;
                        height: 20px;
                        background: #fff;
                        margin-left: 20px;
                        vertical-align: middle;
                    }
                }
            }
        }
    }
    .social{
        width: 200px;
    }
}

@media (width<1100px){
    footer{
        .footer-logo{
            display: none;
        }
    }
}
@media (width<900px){
    footer{
        flex-direction: column-reverse;
        .footer-logo{
            display: block;
            border-top: 2px solid #fff;
            padding-top: 20px;
            margin-top: 20px;
        }
        nav{
            ul{
                flex-direction: column;
                li{
                    &:not(:last-of-type){
                        &::after{
                            display: none;
                        }
                    }
                }
            }
        }
    }
}