@charset "utf-8";

#footer_nav {
    background-color: #222222;

    width: 100%;

    color: #FFF;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    padding: 30px 0;   
    width: 100%;
}

#footer_nav .footer_block {
    width: 80%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

#footer_nav .footer_block .left_block {
    width: 100%;
}

#footer_nav .footer_block .right_block {
    width: 100%;
}

#footer_nav .footer_block .right_block a{
    text-decoration: none;
    color: #FFF;
    transition: color 0.3s ease-in;
}

#footer_nav .footer_block .right_block a:hover {
    color: #fd9595;
}

@media (max-width : 767px){
    #footer_nav .footer_block {
        width: 80%;
        display: flex;
        flex-direction: column;
    }
    .footer_copyright{
        text-align: center;
    }
}