footer {
    height: 472px;
    position: relative;

    .footer-wrap {
        height: calc(472px - 47px);
        display: flex;
        flex-wrap: wrap;
        align-items: center;

        @media(max-width: 900px) {
            height: auto;
        }
    }

    .footer_links {
        // min-height: 260px;

        ul {

            li {
                margin-bottom: 20px;

                a {
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    font-size: 12px;
                    color: #474448;
                }

                @media(max-width:900px) {
                    &:last-child {
                        margin-bottom: 0;
                    }
                }
            }
        }

        @media (max-width: 900px) {
            padding-bottom: 36px;
            margin-bottom: 36px;
        }
    }
    .footer-center {
        // min-height: 260px;
        padding: 0 50px 0 70px ;

        .wysiwyg {
            margin-bottom: 18px;

            p {
                font-size: 14px;
                color: #555756;
                line-height: 1.71;
            }
        }
        .rrss-title {
            margin-top: 19px;
            font-size: 18px;
            line-height: 1.56;
            font-family: $secondary-font;
        }
        .rrss-footer {

            li {
                margin-right: 17px;

                a {
                    display: block;

                    i {
                        font-size: 22px;
                        color: $color-2;
                        transition: all .5s;
                    }

                    &:hover {

                        i {
                            color: $color-3 ;
                        }
                    }
                }
            }
        }

        @media(max-width:900px) {
            padding: 0;
            padding-bottom: 36px;
            margin-bottom: 36px;
        }
    }
    .footer-partners {
        flex-wrap: wrap;
        // min-height: 260px;

        ul {
            width: 100%;

            li {
                width: 49%;
                display: inline-block;
                vertical-align: middle;
                margin-bottom: 25px;
                

                a { 
                    display: block;

                    img {
                        width: 114px;
                    }
                }
                &:nth-child(2) {

                    a {
                        text-align: right;
                    }
                }
            }
        }
        @media(max-width:900px) {
            padding-bottom: 36px;
        }
    }
    .powered {
        width: 100%;
        height: 47px;
        background: #beb7b0;
        color: #fff;
        font-size: 14px;
        position: absolute;
        bottom: 0;
        left: 0;
        
        span {
            font-family: $principal-font;
        }
    }
    @media(max-width:900px) {
        height: auto;
        padding: $padd-mob;
        box-sizing: border-box;
    }
}
