﻿/*FOOTER*/

footer {
    padding-top: 0;
    font-family: Montserrat;
    background-color: transparent;
}

    footer .f-top {
        display: block;
        width: 100%;
        height: 400px;
    }

    footer .f-left,
    footer .f-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50%;
        height: 100%;
        text-align: center;
    }

    footer .f-left {
        float: left;
        color: #fff;
        background-color: #7b222e;
    }

    footer .f-right {
        float: right;
        background-color: #f5f5f5;
    }

    footer .f-subtitle {
        text-transform: uppercase;
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 2px;
    }

    footer .f-top .f-left div {
        font-family: Montserrat;
    }

    footer .f-title {
        margin-bottom: 40px;
        font-size: 4.8rem;
        font-weight: 800;
        line-height: 1.2em;
    }

    footer .f-contact-infos {
        font-size: 1.6rem;
    }

        footer .f-contact-infos .f-contact-item {
            margin-bottom: 35px;
        }

        footer .f-contact-infos h3,
        footer .f-contact-infos p {
            margin: 0;
            font-family: Montserrat;
            color: #fff;
        }

        footer .f-contact-infos h3 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 30px;
        }

.f-contact-infos p {
    font-size: 1.6rem;
}

footer .f-details-item {
    margin-bottom: 70px;
}

footer .f-details-title {
    font-size: 3rem;
    font-weight: 800;
    color: #7b222e;
}

footer .f-details-link {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

footer .f-details-list .f-details-link a {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    min-height: 40px;
    border: solid 2px transparent;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: #fff;
    background-color: #7b222e;
    box-shadow: 0 7px 20px rgba(51,51,51,0.1);
    transition: 0.3s cubic-bezier(0.85,0.01,0,1);
}

    footer .f-details-list .f-details-link a:hover {
        border: 2px solid #7b222e;
        color: #7b222e;
        background-color: transparent;
        transition: 0.3s all;
    }

footer nav.f-bottom .f-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 20px 155px;
    text-align: center;
    text-transform: uppercase;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    list-style: none;
    background-color: #191919;
}

    footer nav.f-bottom .f-menu .f-menu-item .f-menu-link {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        text-decoration: none;
        font-weight: 700;
        line-height: 30px;
        color: #fff;
    }

        footer nav.f-bottom .f-menu .f-menu-item .f-menu-link:after {
            content: '';
            display: block;
            width: 5px;
            height: 2px;
            margin-left: 15px;
            background-color: #fff;
        }

    footer nav.f-bottom .f-menu .f-menu-item:last-of-type a:after {
        display: none;
    }
