footer {
    background-image:url('../../img/copybckg.jpg');
    background-repeat: repeat repeat;
}

footer div.copyright,
footer div.contact {
    border-top: 1px solid #4B4A48;
}

footer > div.info {
    background-image:url('../../img/contactbckg.jpg');
    background-repeat: repeat repeat;
}

footer div.full-grid {
    padding: 30px 0;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer div.copyright div.container {
    padding: 10px 0;
}


footer div.container:not(:first-child) {
    margin-top: 30px;
}

footer div.full-grid div.footer-block {
    -webkit-box-flex: 1 1 0;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1 1 0;         /* OLD - Firefox 19- */
    -webkit-flex: 1 1 0;          /* Chrome */
    -ms-flex: 1 1 0;              /* IE 10 */
    flex: 1 1 0;

    width: 33.3%;
    box-sizing: border-box;
}



footer div.contact > div.container div.footer-block:first-child,
footer div.copyright> div.container div.footer-block:first-child{
    flex-grow: 2;
}

footer p {
    font-size: 14px;
    color: #86817D;
}

footer a,
footer .link {
    font-family: 'PFDinDisplayPro-Thin';
    font-size: 14px;
    font-weight: normal;
    color: #C69A00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .title {
    font-family: 'PFDinDisplayPro-Light';
    font-size: 16px;
    font-weight: normal;
    color:#B8B7B3;
    margin-bottom: 20px;
    display: block;
}

footer ul.list-link {
    list-style: none;
    margin: 0;
}

footer > div.copyright {
    font-size: 12px;color:#86817D;
}

@media screen and (max-width: 990px) {
    footer > .copyright div.full-grid {
        flex-direction: column;
    }

    footer > .copyright div.full-grid div.footer-block {
        width: 100%;
        padding: 10px;
    }
}

@media screen and (max-width: 760px) {
    footer div.full-grid {
        flex-direction: row;
    }

    footer div.full-grid   div.footer-block {
        width: 50%;
        padding: 10px;
        flex: 0 1 auto;
    }

    footer div.full-grid   div.footer-block:nth-child(3) {
        -webkit-box-flex: 0 2 auto;      /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 0 2 auto;         /* OLD - Firefox 19- */
        -webkit-flex: 0 2 auto;         /* Chrome */
        -ms-flex: 0 2 auto;            /* IE 10 */
        flex: 0 2 auto;

        width: 100%;
    }
}



