/*
Footer
 */

#footer {
    background-color: $blanc;
    .footer_top {
        .footer_logo {
            width: 266px;
        }
        padding: 17px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .contact_info_w_icon {
            .icon_wrapper {
                i {
                    &::before {
                        font-size: 36px;
                    }
                }
            }
            .contact_info {
                h5 {
                    font-size: 16px;
                }
                span {
                    font-size: 24px;
                }
            }
        }

        @media(max-width: $break) {
            text-align: center;
            display: block;
            width: 100%;
            .footer_logo {
                display: block;
                width: 80%;
                margin: 0 auto;
            }
            .contact_info_w_icon {
                display: none;
            }
        }
    }
    .footer_links {
        padding: 13px 0 0px;
        span.h5 {
            color: $grisf;
            font-family: $deffont;
            font-size: 20px;
            font-weight: 300;
            margin-top: 13px;
            margin-bottom: 13px;
            display: block;
        }
        .footer_ul_links {
            margin-bottom: 14px;
            li {
                a {
                    color: $noir;
                    font-family: $deffont;
                    font-size: 16px;
                    font-weight: 200;
                    line-height: 23px;

                    &:hover {
                        color: $bleu_at_f;
                    }
                }
            }
        }

        .footer_social {
            margin-top: 20px;
            display: flex;
            a {
                margin-right: 10px;
                i.fi {
                    color: $noir;
                    &::before {
                        font-size: 19px;
                    }
                }
                &:hover {
                    i.fi {
                        color: $gold;
                    }
                }
            }
        }
        @media(max-width: $break) {
            display: none;
        }
    }
    .footer_bottom {
        padding: 35px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 0.7;
        color: $grisf;
        font-family: $deffont;
        font-size: 12px;
        font-weight: 300;

        @media(max-width: $break) {
            display: block;
        }
        .copyrights {
            margin-right: 15px;
            color: $grisf;
            font-family: $deffont;
            font-size: 12px;
            +a {
                margin-right: 10px;
                color: $grisf;
            }
            
        }
        a {
            color: $grisf;
            &:hover {
                color: $gold;
            }
        }

        @media(max-width: $break) {
            div.mentions {
                span, a {
                    display: block;
                    width: 100%;
                }
            }
            span.created_by {
                display: block;
                width: 100%;
                a {
                    display: inline-block;
                }
            }
        }
    }
    .footer_adresse {
        display: flex;
        align-items: center;
        .adresse_icon {
            margin-right: 10px;
            i {
                &::before {
                    font-size: 32px;
                    color: $noir;
                }
            }
        }
        .adresse_infos {
            color: $noir;
            font-family: $deffont;
            font-size: 20px;
            font-weight: 300;
            line-height: 23px;
        }
    }
    .separator {
        display: block;
        content: "";
        height: 1px;
        background-color: $grisc;
        opacity: 1;
    }
}