﻿/*FOOTER*/
footer {
    padding-left: 10%;
    font-family: Roboto, sans-serif;
    background-color: #232733;
    background-color: var(--footer-color);
    padding-top: 20px;
    padding-bottom: 20px;
}

    footer .f-top {
        display: block;
        width: 100%;
        color: #fff;
        color: var(--light-color);
    }

    footer .f-title {
        margin-bottom: 10px;
        font-size: 4.8rem;
        font-weight: 400;
        line-height: 1.2em;
    }

    footer .f-contact-infos {
        font-size: 1.6rem;
    }

        footer .f-contact-infos .f-contact-item {
            margin-bottom: 5px;
        }

        footer .f-contact-infos h3,
        footer .f-contact-infos p {
            margin: 0;
            font-family: Roboto, sans-serif;
            color: #f5f5f5;
            color: var(--mid-light-color);
        }

        footer .f-contact-infos h3 {
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 30px;
        }

    footer .f-title:before {
        width: 30px;
        position: absolute;
        top: 65px;
        content: '';
        height: 1px;
        background: #5bb771;
        background: var(--theme-color);
    }

    footer .f-title:after {
        width: 45px;
        position: absolute;
        top: 70px;
        left: 190px;
        content: '';
        height: 1.5px;
        background: #5bb771;
        background: var(--theme-color);
    }

.f-contact-infos p {
    font-size: 1.6rem;
}

footer .f-details-item {
    margin-bottom: 70px;
}

footer .f-details-title {
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    color: var(--light-color);
}

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: 400;
    letter-spacing: 0.3rem;
    color: #fff;
    background-color: #232733;
    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 #232733;
        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: Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    list-style: none;
}

    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: 400;
        line-height: 30px;
        color: #ff6347;
    }

        footer nav.f-bottom .f-menu .f-menu-item .f-menu-link:after {
            content: '';
            display: block;
            width: 5px;
            height: 2px;
            margin-left: 15px;
        }

    footer nav.f-bottom .f-menu .f-menu-item:last-of-type a:after {
        display: none;
    }
