.footer-container{
    width: 100%;
    height: 358px;
    background: linear-gradient(268deg, #F8C349 0.07%, #CA9316 99.09%);
    position: relative;
    & .copyright{
        position: absolute;
        color: white;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
        font-weight: bold;
        width: 100%;
        text-align: center;
        @media screen and (max-width: 950px) {
            font-size: 13px;
        }
    }
    @media screen and (max-width: 950px) {
        height: 900px;
    }
}
.footer-content{
    display: flex;
    justify-content: space-evenly;
    position: relative;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    max-width: 1450px;
    align-items: center;
    & nav{
        display: flex;
        @media screen and (max-width: 950px) {
            flex-direction: column;
        }
    }
    & nav > .footer-nav-item{
        color: white;
        font-size: 18px;
        margin-left: 22px;
        @media screen and (max-width: 950px) {
            text-align: center;
            margin-left: 0;
            margin-bottom: 35px;
            font-size: 20px;
        }
    }
    & nav > .footer-nav-item.active{
        border-bottom: 2px solid white;
    } 
    & nav > .footer-nav-item:hover{
        border-bottom: 2px solid white;
    }
    & img{
        height: 45px;
    }
    & .footer-misc{
        & h2, p{
            color: white;
            margin: 0;
            font-size: 22px;
            @media screen and (max-width: 950px) {
                text-align: center;
            }
        }
        & h2{
            font-weight: bold;
        }
        .socials{
            cursor: pointer;
            display: flex;
            margin-top: 5px;
            & img{
                margin-right: 15px;
                @media screen and (max-width: 950px) {
                    margin: 0;
                }
            }
            @media screen and (max-width: 950px) {
                align-items: center;
                justify-content: space-around;
            }
        }
    }
    @media screen and (max-width: 950px) {
        flex-direction: column;
        height: 100%;
    }
}
